-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
48
49
50
51
52
53
{
"name": "micro-auth-request",
"version": "0.1.4",
"description": "Simple & fast authentication for Kubernetes ingress using Google OAuth2",
"main": "lib/app.js",
"scripts": {
"start": "node lib/app.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint '**/*.js'",
"prepublish": "babel src --out-dir lib"
},
"bin": "./lib/app.js",
"repository": {
"type": "git",
"url": "https://github/abdollahpour/micro-auth-request"
},
"keywords": [
"ingress",
"kubernetes",
"google",
"oauth2"
],
"author": "Hamed Abdollahpour",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"googleapis": "^48.0.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"babel-eslint": "^10.1.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"nock": "^12.0.3",
"node-mocks-http": "^1.8.1"
}
}