forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.14 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.14 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": "17.3.2",
"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:openapi": "node examples/simple-openapi.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": "pnpm test:lib",
"test:lib": "lab -L -t 97 --leaks",
"test:lib:debug": "lab --inspect-brk -S -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 -I '__core-js_shared__,regeneratorRuntime,core,CSS,Symbol(undici.globalDispatcher.1)'",
"precommit": "pnpm test",
"postversion": "pnpm publish",
"postpublish": "git push origin --all; git push origin --tags",
"prepare": "is-ci || husky install",
"clean": "rm -rf node_modules coverage"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.0",
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.4",
"handlebars": "^4.7.8",
"http-status": "^1.7.4",
"swagger-parser": "^10.0.3",
"swagger-ui-dist": "^5.17.14"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@hapi/basic": "^7.0.2",
"@hapi/code": "^9.0.3",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/h2o2": "^10.0.4",
"@hapi/hapi": "^21.3.10",
"@hapi/inert": "^7.1.0",
"@hapi/lab": "^25.3.1",
"@hapi/vision": "^7.0.3",
"@hapi/wreck": "^18.1.0",
"blipp": "^4.0.2",
"coveralls": "^3.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-auth-jwt2": "^10.6.0",
"husky": "^9.1.4",
"is-ci": "^3.0.1",
"joi": "^18.0.2",
"js2xmlparser": "^5.0.0",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"swagger-client": "^3.29.0",
"tsd": "^0.31.1"
},
"peerDependencies": {
"@hapi/hapi": ">=20.x.x",
"joi": ">=17.x <19.x"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,scss,yaml,yml}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
},
"packageManager": "pnpm@9.1.4+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}