-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.08 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
{
"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": "3.0.3",
"author": "Timo Behrmann",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/z0mt3c/hapi-swaggered.git"
},
"bugs": {
"url": "https://github.com/z0mt3c/hapi-swaggered/issues"
},
"license": "MIT",
"main": "index",
"keywords": [
"docs",
"swagger",
"swaggered",
"hapi"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"hoek": "^6.1.3",
"joi": "^14.3.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"code": "^5.2.4",
"coveralls": "^3.0.11",
"hapi": "^18.1.0",
"lab": "^18.0.2",
"standard": "^14.3.3",
"wreck": "^14.2.0"
},
"scripts": {
"lint": "standard",
"test": "lab -c -t 99 -l",
"posttest": "npm run lint"
},
"peerDependencies": {
"hapi": ">= 17.0.0"
},
"homepage": "https://github.com/z0mt3c/hapi-swaggered#readme",
"directories": {
"test": "test"
}
}