forked from z0mt3c/hapi-swaggered
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.08 KB
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": "2.10.0",
"author": "Timo Behrmann",
"repository": {
"type": "git",
"url": "git+ssh://git@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": ">=4.0.0"
},
"dependencies": {
"hoek": "^4.2.0",
"joi": "^10.6.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"code": "^4.1.0",
"coveralls": "^2.13.1",
"hapi": "^16.5.0",
"lab": "^14.1.1",
"standard": "^10.0.2",
"wreck": "^12.2.2"
},
"scripts": {
"lint": "standard",
"test": "lab -c -t 99",
"posttest": "npm run lint"
},
"peerDependencies": {
"hapi": ">= 10.x.x"
},
"homepage": "https://github.com/z0mt3c/hapi-swaggered#readme",
"directories": {
"test": "test"
}
}