-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "express-gateway-plugin-remote-login",
"version": "1.0.1",
"description": "Remote Login Plugin for Express Gateway",
"main": "manifest.js",
"scripts": {
"test": "npm run mocha:istanbul",
"test:all": "cross-env EG_DISABLE_CONFIG_WATCH=true mocha --recursive \"./test/*.test.js\" --timeout 60000",
"mocha:istanbul": "nyc --reporter=lcov npm run test:all && nyc report --report=lcov > coverage.lcov"
},
"author": "pbhadauria2000",
"license": "MIT",
"nyc": {
"exclude": [
"node_modules",
"coverage",
"test"
]
},
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.3.0",
"supertest": "^3.0.0",
"supertest-session": "^3.1.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
}
}