-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@first-lego-league/ms-auth",
"description": "A package for a generic Service Provider using JWT",
"version": "1.4.3",
"main": "index.js",
"repository": "https://github.com/FirstLegoLeague/ms-auth.git",
"author": "Idan Stark <[email protected]>",
"license": "GPL-3.0",
"files": [
"index.js",
"lib/**/*.js"
],
"engines": {
"node": ">=8.x"
},
"scripts": {
"test": "cross-env SECRET=mock_secret MODULE_IDENTITY_PROVIDER_URL=mock_idp PORT=0000 mocha --recursive",
"test:coverage": "nyc -n=lib/**/*.js --reporter=text yarn test",
"test:ci": "nyc -n=lib/**/*.js --reporter=lcov yarn test && codecov",
"lint": "eslint --ext .js ./",
"lint:fix": "eslint --ext .js --fix ./"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.4",
"jsonwebtoken": "^8.5.1",
"router": "^1.3.3"
},
"devDependencies": {
"@first-lego-league/eslint-config": "^1.0.0",
"@first-lego-league/ms-correlation": "^1.0.1",
"@first-lego-league/ms-logger": "2.0.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chai-string": "^1.5.0",
"codecov": "^3.5.0",
"connect": "^3.7.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"sinon": "^7.3.2",
"supertest": "^4.0.2"
},
"peerDependencies": {
"@first-lego-league/ms-correlation": "^1.0.0",
"@first-lego-league/ms-logger": "^1.4.1 || ^2.0.0"
}
}