-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "hapi-openapi",
"description": "Design-driven apis with OpenAPI (formerly Swagger) 2.0 and hapi.",
"version": "3.0.0",
"author": "Trevor Livingston <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/hapi-openapi.git"
},
"bugs": "http://github.com/krakenjs/hapi-openapi/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@hapi/hoek": "^9.0.4",
"dot-prop": "^5.2.0",
"enjoi": "^9.0.0",
"joi": "^17.1.0",
"js-yaml": "^3.11.0",
"merge-object-files": "^2.0.0",
"swagger-parser": "^9.0.1"
},
"devDependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/eslint-config-hapi": "^13.0.2",
"@hapi/eslint-plugin-hapi": "^4.3.5",
"@hapi/hapi": "^20.0.3",
"eslint": "^6.8.0",
"eslint-config-hapi": "^12.0.0",
"eslint-plugin-hapi": "^4.1.0",
"nyc": "^15.0.0",
"tape": "^5.0.0"
},
"scripts": {
"test": "tape test/*.js",
"cover": "nyc npm test",
"lint": "eslint lib"
},
"license": "Apache-2.0",
"main": "./lib/index",
"keywords": [
"openapi",
"swagger",
"swaggerize",
"hapi",
"rest",
"restful",
"service",
"api",
"soa"
]
}