forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.88 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "hapi-swagger",
"description": "A swagger documentation UI generator plugin for hapi",
"version": "14.2.5",
"author": "Glenn Jones",
"repository": {
"type": "git",
"url": "git://github.com/glennjones/hapi-swagger.git"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib",
"public",
"templates",
"index.js",
"index.d.ts"
],
"keywords": [
"api",
"docs",
"swagger",
"hapi",
"joi"
],
"scripts": {
"start": "node examples/simple.js",
"start:basic": "node examples/basic.js",
"start:debug": "node examples/debug.js",
"start:jwt": "node examples/jwt.js",
"start:dot:grouping": "node examples/dot-grouping.js",
"start:extend": "node examples/extend.js",
"start:group:ordered": "node examples/group-ordered.js",
"start:routes:simple": "node examples/group-ordered.js",
"test": "yarn test:lib",
"test:lib": "lab -L -t 98 -I '__core-js_shared__,regeneratorRuntime,core,CSS'",
"test:ts": "tsd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:cov:html": "lab -r html -o coverage.html",
"precommit": "yarn test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"prepare": "is-ci || husky install"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/hoek": "^9.0.2",
"handlebars": "^4.7.7",
"http-status": "^1.0.1",
"json-schema-ref-parser": "^6.1.0",
"swagger-parser": "4.0.2",
"swagger-ui-dist": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@hapi/basic": "^6.0.0",
"@hapi/code": "^8.0.1",
"@hapi/eslint-plugin": "^5.1.0",
"@hapi/good": "^9.0.1",
"@hapi/good-console": "^9.0.1",
"@hapi/h2o2": "^9.0.2",
"@hapi/hapi": "^20.0.0",
"@hapi/inert": "^6.0.1",
"@hapi/lab": "^24.1.1",
"@hapi/vision": "^6.0.0",
"@hapi/wreck": "^17.0.0",
"@types/hapi__hapi": "^20.0.7",
"blipp": "^4.0.0",
"coveralls": "^3.0.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.2.0",
"good-squeeze": "^5.0.2",
"hapi-api-version": "^2.1.0",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-auth-jwt2": "^10.2.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"joi": "^17.2.0",
"js2xmlparser": "^4.0.0",
"jsonwebtoken": "^8.1.1",
"lint-staged": "^12.3.3",
"prettier": "^2.2.1",
"swagger-client": "^3.9.4",
"tsd": "^0.19.1"
},
"peerDependencies": {
"@hapi/hapi": "^20.0.0",
"joi": "17.x"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"yarn test",
"prettier --write"
],
"*.{json,md,scss,yaml,yml}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
},
"packageManager": "[email protected]"
}