forked from krakenjs/hapi-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "hapi-openapi",
"description": "Design-driven apis with OpenAPI (formerly Swagger) 2.0 and hapi.",
"version": "1.2.4",
"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": ">=8"
},
"dependencies": {
"dot-prop": "^4.2.0",
"enjoi": "^4.0.0",
"hoek": "^5.0.3",
"joi": "^13.6.0",
"js-yaml": "^3.11.0",
"merge-object-files": "^2.0.0",
"swagger-parser": "^4.1.0"
},
"devDependencies": {
"boom": "^7.2.0",
"eslint": "^4.19.1",
"eslint-config-hapi": "^11.1.0",
"eslint-plugin-hapi": "^4.1.0",
"hapi": "^17.4.0",
"nyc": "^13.3.0",
"tape": "^4.9.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"
]
}