-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
54
55
56
57
58
59
{
"name": "user_api",
"version": "2.1.0",
"engines": {
"node": "6.9.4"
},
"description": "Users API build with express and Sequalize",
"private": true,
"scripts": {
"ci": "istanbul cover _mocha -- -R xunit > ~/unit/results.xml",
"lint": "standard",
"test": "npm run lint && npm run test:coverage",
"start": "scripts/start.sh",
"test:coverage": "NODE_ENV=development NODE_PATH=${PWD} istanbul cover _mocha -- --opts test/mocha.opts",
"test:coveralls": "NODE_ENV=development istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:watch": "NODE_ENV=development NODE_PATH=${PWD} mocha --watch",
"posttest": "istanbul check-coverage"
},
"dependencies": {
"boom": "5.2.0",
"hapi": "16.5.2",
"hapi-swagger": "7.7.0",
"inert": "4.2.1",
"joi": "10.6.0",
"lodash": "4.17.4",
"pg": "7.12.1",
"q": "1.5.0",
"recursive-readdir-sync": "1.0.6",
"sequelize": "4.4.2",
"vision": "4.1.1"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"dirty-chai": "^2.0.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.11.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.12.0",
"standard": "^14.3.1"
},
"standard": {
"globals": [
"expect",
"it",
"beforeEach",
"afterEach",
"expect",
"sandbox",
"afterEach",
"sinon",
"describe",
"context"
]
}
}