-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "apiauthentication",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=prod node app.js",
"dev": "cross-env NODE_ENV=dev nodemon app.js",
"test": "cross-env NODE_ENV=test mocha --timeout 5000 __tests__/server/**/*.test.js",
"report": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --timeout 5000 __tests__/server/**/*.test.js",
"text-report": "cross-env NODE_ENV=test nyc --reporter=text-summary mocha --timeout 5000 __tests__/server/**/*.test.js",
"nyc": "cross-env NODE_ENV=test nyc mocha --timeout 5000 __tests__/server/**/*.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^6.0.3",
"express": "^4.17.1",
"faker": "^4.1.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"rewire": "^4.0.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
},
"nyc": {
"exclude": [
"__tests__",
"node_modules"
],
"cache": false,
"report-dir": "./__tests__/report"
}
}