forked from JKHeadley/rest-hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.86 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
{
"name": "rest-hapi",
"version": "0.31.1",
"description": "A RESTful API generator for hapi",
"main": "rest-hapi.js",
"bin": {
"rest-hapi-cli": "./rest-hapi-cli.js"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "gulp test",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JKHeadley/rest-hapi.git"
},
"keywords": [
"hapi",
"API",
"RESTful",
"mongoose",
"generator"
],
"author": {
"name": "Justin Headley",
"email": "headley.justin@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JKHeadley/rest-hapi/issues/new",
"email": "headley.justin@gmail.com"
},
"homepage": "https://github.com/JKHeadley/rest-hapi#readme",
"dependencies": {
"bcryptjs": "latest",
"boom": "^5.1.0",
"chalk": "*",
"extend": "^3.0.0",
"gulp": "^3.9.1",
"gulp-exit": "0.0.2",
"hapi": "^16.4.3",
"hapi-swagger": "7.8.1",
"inert": "^4.2.0",
"joi": "^10.6.0",
"joi-objectid": "^2.0.0",
"jwt-simple": "^0.5.1",
"lodash": "~4.17.4",
"loggin": "^3.0.1",
"mkdirp": "0.5.1",
"mongoose": "^4.6.3",
"mrhorse": "^2.3.1",
"q": "^1.4.1",
"qs": "^6.2.1",
"require-all": "^2.1.0",
"require-dir": "~0.3.2",
"vision": "^4.1.1",
"tap-colorize": "latest",
"tape": "latest",
"gulp-tape": "latest",
"blue-tape": "^1.0.0"
},
"devDependencies": {
"rewire": "^2.5.2",
"proxyquire": "^1.7.10",
"sinon": "^3.3.0",
"sinon-test": "^2.1.0",
"decache": "^4.1.0",
"mockgoose": "^7.3.3",
"query-string": "^5.0.0",
"rmdir": "^1.2.0"
}
}