forked from krakenjs/swaggerize-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "@iamjoeker/swaggerize-routes",
"version": "2.0.1",
"author": "Trevor Livingston <[email protected]>",
"contributors": [
"Trevor Livingston <[email protected]>",
"Subeesh Chothendavida <[email protected]>",
"Francois-Guillaume Ribreau <[email protected]>",
"Joseph Kerby <[email protected]>"
],
"description": "Swagger based route building.",
"license": "Apache-2.0",
"main": "./lib/index",
"repository": {
"type": "git",
"url": "git://github.com/iamjoeker/swaggerize-routes.git"
},
"bugs": "http://github.com/iamjoeker/swaggerize-routes/issues",
"engines": {
"node": ">=6.x"
},
"dependencies": {
"@iamjoeker/swagvali": "^1.0.2",
"call-me-maybe": "^1.0.1",
"caller": "^1.0.1",
"core-util-is": "^1.0.2",
"debuglog": "^1.0.1",
"merge-object-files": "^2.0.0",
"swagger-parser": "^6.0.5"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"istanbul": "^0.4.5",
"nyc": "^13.3.0",
"tape": "^4.10.1"
},
"scripts": {
"test": "tape test/*.js",
"lint": "eslint .",
"cover": "istanbul cover tape -- test/*.js"
},
"files": [
"lib/**"
]
}