-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 936 Bytes
/
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
{
"name": "fruster-user-service",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./app.js",
"test": "nyc --reporter=html --check-coverage --lines 90 node ./spec/support/jasmine-runner.js"
},
"dependencies": {
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.5",
"csprng": "^0.1.2",
"express": "^4.17.1",
"fruster-bus": "^0.7.13",
"fruster-errors": "0.1.4",
"fruster-health": "0.2.1",
"fruster-log": "0.1.2",
"mongodb": "4.17.2",
"request": "^2.88.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"fruster-test-utils": "^0.7.1",
"jasmine": "5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^17.1.0"
},
"nyc": {
"exclude": [
"web",
"spec/*",
"config.js",
"lib/deprecatedErrors.js",
"lib/errors.js",
"lib/constants.js",
"lib/docs.js",
"lib/deprecatedErrors.js",
"lib/repos/AbstractRoleScopesRepo.js",
"lib/repos/RoleScopesConfigRepo.js"
]
}
}