-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 846 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 846 Bytes
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": "node-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha **/*.test.js",
"test-it": "mocha **/*.test2.js",
"test-watch": "nodemon --exec \"npm test\"",
"coverage-unit": "nyc --report-dir coverage/unit npm test",
"coverage-it": "nyc --report-dir coverage/it npm test-it",
"test-all": "npm test && npm test-it",
"coverage-all": "nyc --report-dir coverage/all npm test-all"
},
"author": "",
"license": "ISC",
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.2.0",
"nyc": "^11.0.2",
"rewire": "^2.5.2",
"supertest": "^3.0.0"
},
"dependencies": {
"express": "^4.15.2"
},
"nyc": {
"exclude": [
"spies",
"coverage"
],
"reporter": [
"lcov",
"text-lcov"
],
"all": true
}
}