forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "hapi-swagger",
"description": "A swagger documentation UI generator plugin for hapi",
"version": "9.4.2",
"author": "Glenn Jones",
"repository": {
"type": "git",
"url": "git://github.com/glennjones/hapi-swagger.git"
},
"main": "index.js",
"files": [
"lib",
"public",
"index.js",
"lib/extended"
],
"keywords": [
"api",
"docs",
"swagger",
"hapi",
"joi"
],
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"boom": "^7.1.1",
"handlebars": "^4.0.11",
"hoek": "^6.1.2",
"http-status": "^1.0.1",
"joi": "^13.1.2",
"json-schema-ref-parser": "^6.1.0",
"swagger-parser": "4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"blipp": "^3.0.0",
"chalk": "^2.3.1",
"code": "^5.2.0",
"coveralls": "^3.0.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"good": "^8.0.1",
"good-console": "^7.0.1",
"good-squeeze": "^5.0.2",
"h2o2": "^7.0.2",
"hapi": "^18.0.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": "^1.3.1",
"inert": "^5.1.0",
"js2xmlparser": "^3.0.0",
"jsonwebtoken": "^8.1.1",
"lab": "^16.1.0",
"prettier": "^1.16.4",
"swagger-client": "^3.4.11",
"vision": "^5.3.1",
"wreck": "^14.0.2"
},
"scripts": {
"start": "node ./bin/test-server.js",
"lint": "eslint .",
"test": "lab -L",
"test-cov-html": "lab -r html -o coverage.html",
"test-cov-coveralls": "./node_modules/.bin/lab -r lcov | ./node_modules/.bin/coveralls"
},
"peerDependencies": {
"hapi": ">=17.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
}
}