forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "hapi-swagger",
"description": "A swagger documentation UI generator plugin for hapi",
"version": "7.7.0",
"author": "Glenn Jones",
"repository": {
"type": "git",
"url": "git://github.com/glennjones/hapi-swagger.git"
},
"main": "index.js",
"keywords": [
"api",
"docs",
"swagger",
"hapi",
"joi"
],
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"boom": "^4.0.0",
"handlebars": "^4.0.5",
"hoek": "^4.0.1",
"http-status": "^1.0.1",
"joi": "10.2.2",
"json-schema-ref-parser": "^3.1.2",
"swagger-parser": "^3.4.1"
},
"devDependencies": {
"blipp": "^2.3.0",
"chalk": "^1.1.3",
"code": "^4.0.0",
"coveralls": "^2.11.11",
"good": "^7.0.1",
"good-console": "^6.1.2",
"good-squeeze": "^5.0.1",
"h2o2": "^5.1.0",
"hapi": "^16.1.0",
"hapi-api-version": "^1.1.0",
"hapi-auth-bearer-token": "^4.0.2",
"hapi-auth-jwt2": "^7.0.1",
"hapi-auth-basic": "^4.2.0",
"inert": "^4.0.1",
"js2xmlparser": "^2.0.2",
"lab": "^12.1.0",
"swagger-client": "^2.1.14",
"vision": "^4.0.1",
"wreck": "^10.0.0",
"jsonwebtoken": "^7.1.9"
},
"scripts": {
"start": "node ./bin/test-server.js",
"test": "lab -L -t 100",
"test-cov-html": "lab -r html -o coverage.html",
"test-cov-coveralls": "./node_modules/.bin/lab -r lcov | ./node_modules/.bin/coveralls"
},
"peerDependencies": {
"hapi": "^14.0.0 || ^15.0.0 || ^16.0.0"
}
}