-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "k8s-github-authenticator",
"version": "0.1.0",
"description": "Authenticates users to Kubernetes clusters via GitHub Access Tokens.",
"author": {
"name": "Carl Danley",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:carldanley/k8s-github-authenticator.git"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "tslint -c ./tslint.json -p .",
"compile": "tsc --noEmit -p ."
},
"dependencies": {
"body-parser": "^1.17.2",
"chalk": "^2.1.0",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"github": "^10.0.0",
"helmet": "^3.8.1",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"ts-node": "^3.3.0",
"typescript": "^2.4.2"
},
"devDependencies": {
"@types/body-parser": "^1.16.5",
"@types/compression": "^0.0.34",
"@types/cors": "^2.8.1",
"@types/dotenv": "^4.0.1",
"@types/express": "^4.0.37",
"@types/github": "^7.1.0",
"@types/helmet": "^0.0.36",
"@types/lodash": "^4.14.74",
"@types/morgan": "^1.7.32",
"tslint": "^5.7.0"
}
}