-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "kube-ldap",
"version": "2.0.1",
"description": "kubernetes token webhook to check bearer tokens against ldap",
"main": "src/index.js",
"author": "Fabian Jucker <jucker@gyselroth.com>",
"license": "MIT",
"dependencies": {
"atob": "^2.0.3",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"bunyan-winston-adapter": "^0.2.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-basic-auth": "^1.2.0",
"express-prom-bundle": "^5.1.5",
"jsonwebtoken": "^8.2.0",
"ldapts": "^1.7.0",
"morgan": "^1.9.0",
"prom-client": "^11.5.0",
"winston": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-watch": "^2.0.7",
"coveralls": "^3.0.1",
"eslint": "^4.19.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.68.0",
"jest": "^22.4.3",
"supertest": "^3.0.0"
},
"scripts": {
"start": "babel-watch src/index.js",
"build": "yarn run eslint --fix src/ && yarn run flow && yarn run babel src/ --ignore=__mocks__/** -d build/",
"prepublish": "yarn run build",
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info"
}
}