-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 923 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
43
44
45
46
47
{
"name": "mcrud",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "nyc mocha --exit"
},
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"jade": "~1.11.0",
"mongoose": "^4.3.7",
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0",
"winston": "^2.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"nyc": "^12.0.2",
"sinon": "^5.0.10"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 80,
"statements": 80,
"functions": 100,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true,
"report-dir": "./coverage-reports"
}
}