-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "Fixit_Students!",
"version": "0.1.0",
"description": "This is a service, meant to be fixed by students",
"author": "Roy Meissner (https://rmeissn.github.io/)",
"license": "MPL-2.0",
"main": "server.js",
"scripts": {
"clean": "rm -R ./node_modules/ ./coverage/",
"lint": "eslint -c .eslintrc ./**/*.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha ./tests/unit_*.js",
"test:integration": "mocha ./tests/integration_*.js",
"coverage": "istanbul cover _mocha --include-all-sources ./tests/*.js",
"coverall": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"countLOC": "sloc -f cli-table -k total,source,comment,empty -e node_modules\\|coverage ./",
"countLOC:details": "sloc -f cli-table -d -e node_modules\\|coverage ./"
},
"dependencies": {
"boom": "^4.2.0",
"good": "^7.1.0",
"good-console": "^6.2.0",
"good-squeeze": "^5.0.1",
"hapi": "^16.0.1",
"hapi-swagger": "^7.5.0",
"inert": "^4.0.3",
"joi": "^10.0.6",
"vision": "^4.1.1"
},
"engines": {
"node": ">=6.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.1",
"eslint-plugin-promise": "^3.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sloc": "^0.1.10"
}
}