-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
59 lines (59 loc) · 1.34 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
56
57
58
59
{
"name": "swaggerize-express",
"version": "4.0.6",
"author": "Trevor Livingston <[email protected]>",
"contributors": [
"Trevor Livingston <[email protected]>",
"Subeesh Chothendavida <[email protected]>"
],
"description": "Design-driven apis with swagger 2.0 and express.",
"keywords": [
"swagger",
"swagger 2.0",
"swagger-node",
"swagger-express",
"swagger-ui",
"express",
"node",
"node.js",
"rest",
"restful",
"service",
"api"
],
"main": "./lib/index",
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/swaggerize-express.git"
},
"bugs": "http://github.com/krakenjs/swaggerize-express/issues",
"engines": {
"node": "<=4.x"
},
"dependencies": {
"async": "^1.5.0",
"caller": "^1.0.1",
"core-util-is": "^1.0.1",
"debuglog": "^1.0.1",
"js-yaml": "^3.2.6",
"path-to-regexp": "^1.2.1",
"swaggerize-routes": "^1.0.0"
},
"peerDependencies": {
"express": "^4.0.0"
},
"devDependencies": {
"tape": "^4.2.2",
"istanbul": "~0.4.0",
"jshint": "^2.4.1",
"express": "^4.6.1",
"supertest": "^1.1.0",
"body-parser": "^1.7.0"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc lib/*.js"
},
"license": "Apache-2.0"
}