forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "hapi-swagger",
"description": "A swagger documentation UI generator plugin for hapi",
"version": "9.1.2",
"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": ">=8.0.0"
},
"dependencies": {
"boom": "^7.1.1",
"handlebars": "^4.0.11",
"hoek": "^5.0.3",
"http-status": "^1.0.1",
"joi": "^13.1.2",
"json-schema-ref-parser": "^4.1.0",
"swagger-parser": "4.0.2"
},
"devDependencies": {
"blipp": "^3.0.0",
"chalk": "^2.3.1",
"code": "^5.2.0",
"coveralls": "^3.0.0",
"good": "^8.0.1",
"good-console": "^7.0.1",
"good-squeeze": "^5.0.2",
"h2o2": "^7.0.2",
"hapi": "^17.2.0",
"hapi-api-version": "^1.4.0",
"hapi-auth-basic": "^5.0.0",
"hapi-auth-bearer-token": "^6.0.1",
"hapi-auth-jwt2": "^8.0.0",
"husky": "^0.14.3",
"inert": "^5.1.0",
"js2xmlparser": "^3.0.0",
"jsonwebtoken": "^8.1.1",
"lab": "^16.1.0",
"swagger-client": "^3.4.11",
"vision": "^5.3.1",
"wreck": "^14.0.2"
},
"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",
"precommit": "npm test",
"prepush": "npm test"
},
"peerDependencies": {
"hapi": "^17.0.0"
}
}