-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "hapi-starter",
"version": "0.2.4",
"description": "boilerplate API - MVC for hapijs V17 with mongodb, mongoose.",
"main": "./index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/AMoreaux/hapi-cli"
},
"scripts": {
"test": "mocha lib/tests/**/*.spec.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint lib/**"
},
"bin": {
"hapi-cli": "./index.js",
"hc": "./index.js"
},
"author": "AMoreaux",
"engines": {
"node": ">=8.1.3"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.3.2",
"commander": "^2.15.0",
"hoek": "^5.0.3",
"js-beautify": "^1.7.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"chai-json-schema": "^1.5.0",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.3.0"
}
}