forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.84 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.84 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
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
{
"name": "hapi-swagger",
"description": "A swagger documentation UI generator plugin for hapi",
"version": "15.0.0",
"author": "Glenn Jones",
"repository": {
"type": "git",
"url": "git://github.com/hapi-swagger/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 97 -I '__core-js_shared__,regeneratorRuntime,core,CSS,Symbol(undici.globalDispatcher.1)'",
"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": ">=14.0.0"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/hoek": "^10.0.1",
"handlebars": "^4.7.7",
"http-status": "^1.5.3",
"json-schema-ref-parser": "^6.1.0",
"swagger-parser": "^10.0.3",
"swagger-ui-dist": "^4.15.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@hapi/basic": "^7.0.0",
"@hapi/code": "^9.0.1",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/h2o2": "^10.0.0",
"@hapi/hapi": "^21.0.0",
"@hapi/inert": "^7.0.0",
"@hapi/lab": "^25.0.1",
"@hapi/vision": "^7.0.0",
"@hapi/wreck": "^18.0.0",
"@types/hapi__hapi": "^20.0.13",
"blipp": "^4.0.2",
"coveralls": "^3.1.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"hapi-api-version": "^2.3.1",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-auth-jwt2": "^10.2.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"joi": "^17.7.0",
"js2xmlparser": "^4.0.0",
"jsonwebtoken": "^8.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"swagger-client": "^3.18.5",
"tsd": "^0.24.1"
},
"peerDependencies": {
"@hapi/hapi": ">=20.x.x",
"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": "yarn@3.2.1"
}