forked from JKHeadley/rest-hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "rest-hapi",
"version": "1.3.3",
"description": "A RESTful API generator for hapi",
"main": "rest-hapi.js",
"bin": {
"rest-hapi-cli": "./rest-hapi-cli.js"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=4.0.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "nyc tape ./tests/unit/*.tests.js ./tests/e2e/*.tests.js",
"posttest": "npm run report-coverage",
"test-unit": "nyc tape ./tests/unit/*.tests.js",
"test-e2e": "nyc tape ./tests/e2e/*.tests.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"patch-release-git": "git add . && git commit -a -m 'patch release' && git push && npm version patch && npm publish",
"patch-release": "npm version patch && npm publish",
"precommit": "lint-staged",
"lint": "eslint --fix **/*.js ./"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JKHeadley/rest-hapi.git"
},
"keywords": [
"hapi",
"API",
"RESTful",
"mongoose",
"generator"
],
"author": {
"name": "Justin Headley",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JKHeadley/rest-hapi/issues/new",
"email": "[email protected]"
},
"homepage": "https://github.com/JKHeadley/rest-hapi#readme",
"dependencies": {
"blue-tape": "^1.0.0",
"boom": "^7.2.0",
"chalk": "*",
"extend": "^3.0.0",
"fs-extra": "^6.0.1",
"hapi": "^17.4.0",
"hapi-swagger": "9.1.1",
"hoek": "^4.2.1",
"inert": "^5.1.0",
"joi": "^13.3.0",
"joi-objectid": "^2.0.0",
"lodash": "~4.17.4",
"loggin": "^3.0.1",
"mkdirp": "0.5.1",
"mongoose": "^4.6.3",
"mrhorse": "^3.0.1",
"query-string": "^5.0.0",
"require-all": "^2.1.0",
"tape": "latest",
"vision": "^5.3.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"clear-require": "^2.0.0",
"decache": "4.4.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-prettier-standard": "^2.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"mockgoose": "^7.3.3",
"nyc": "^11.8.0",
"prettier": "1.12.1",
"proxyquire": "^1.7.10",
"q": "^1.4.1",
"rewire": "^2.5.2",
"rmdir": "^1.2.0",
"sinon": "^3.3.0",
"sinon-test": "^2.1.0"
}
}