-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"updatePrecommitMessage": "chmod +x bin/updatePrecommitMessage.sh; bin/updatePrecommitMessage.sh",
"test": "nyc mocha src/* ",
"coverage": "nyc report --reporter=lcov",
"start": "node ./bin/www"
},
"dependencies": {
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.14.0",
"helmet": "^3.4.0",
"jade": "~1.11.0",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.0"
},
"main": "app.js",
"test-unit": "NODE_ENV=test mocha '/**/*.spec.js'",
"author": "blixit",
"license": "ISC",
"description": "",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"colors": "^1.1.2",
"cors": "^2.8.1",
"mocha": "^3.2.0",
"mocha-text-cov": "^0.1.1",
"nyc": "^10.1.2",
"pre-commit": "^1.2.2",
"sinon": "^1.17.7",
"travis-cov": "^0.2.5"
},
"config": {},
"nyc": {
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 70,
"reporter": [
"lcov"
],
"check-coverage": true
},
"pre-commit": [
"updatePrecommitMessage",
"test"
]
}