-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.87 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": "template_application",
"version": "0.1.0",
"description": "This is a Microservice template appication, meant to be forked.",
"repository": {
"type": "git",
"url": "https://github.com/slidewiki/Microservice-Template"
},
"bugs": "https://github.com/slidewiki/Microservice-Template/issues",
"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": "NODE_ENV=test mocha ./tests/*.js",
"test:unit": "NODE_ENV=test mocha ./tests/unit_*.js",
"test:integration": "NODE_ENV=test mocha ./tests/integration_*.js",
"coverage": "nyc npm test",
"coverall": "npm run coverage && nyc report --reporter=text-lcov | coveralls && rm -rf ./.nyc_output",
"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 ./",
"start:watch": "nodemon",
"start:mongodb": "docker run -d --name mongotest -p 27018:27017 mongo",
"stop:mongodb": "docker stop mongotest && docker rm mongotest"
},
"dependencies": {
"ajv": "^5.1.0",
"boom": "^5.1.0",
"database-cleaner": "^1.2.0",
"good": "^7.2.0",
"good-console": "^6.2.0",
"good-squeeze": "^5.0.0",
"hapi": "^16.4.0",
"hapi-swagger": "^7.6.0",
"inert": "^4.2.0",
"joi": "^10.6.0",
"mongodb": "^2.2.28",
"vision": "^4.1.0"
},
"engines": {
"node": ">=6.11.0"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.0.0",
"eslint-plugin-promise": "^3.4.0",
"mocha": "^3.4.0",
"nodemon": "^1.11.0",
"nyc": "^11.6.0",
"pre-commit": "^1.2.0",
"sloc": "^0.2.0"
},
"pre-commit": [
"lint"
]
}