forked from z0mt3c/hapi-swaggered
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 945 Bytes
/
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": "hapi-swaggered",
"description": "Yet another hapi plugin providing swagger compliant API specifications based on routes and joi schemas to be used with swagger-ui.",
"version": "2.2.0",
"author": "Timo Behrmann",
"repository": {
"type": "git",
"url": "http://github.com/z0mt3c/hapi-swaggered.git"
},
"bugs": {
"url": "https://github.com/z0mt3c/hapi-swaggered/issues"
},
"license": "MIT",
"main": "index",
"keywords": [
"docs",
"swagger",
"swaggered",
"hapi"
],
"engines": {
"node": "0.10.x"
},
"dependencies": {
"hoek": "^2.13.0",
"joi": "^6.4.1",
"lodash": "^3.8.0"
},
"devDependencies": {
"code": "^1.4.0",
"coveralls": "^2.11.2",
"hapi": "8.x.x",
"lab": "^5.8.0",
"standard": "^3.7.3",
"wreck": "^5.5.1"
},
"scripts": {
"test": "standard && lab -c -t 99"
},
"peerDependencies": {
"hapi": ">= 7.x.x < 9.0.0"
}
}