This repository has been archived by the owner on Feb 7, 2019. It is now read-only.
forked from krakenjs/swaggerize-express
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
60
61
{
"name": "swaggerize-restify",
"version": "2.0.10",
"author": {
"name": "Adrian Zalewski",
"email": "[email protected]"
},
"description": "Design-first REST services with Swagger and Restify (forked from the excellent package written by Trevor Livingston: https://github.com/krakenjs/swaggerize-express).",
"keywords": [
"swagger",
"swagger 2.0",
"swagger-node",
"swagger-restify",
"swagger-ui",
"restify",
"node",
"node.js",
"rest",
"restful",
"service",
"api"
],
"main": "./lib/index",
"repository": {
"type": "git",
"url": "git://github.com/bardzusny/swaggerize-restify.git"
},
"bugs": "http://github.com/bardzusny/swaggerize-restify/issues",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"async": "^0.9.0",
"caller": "^0.0.1",
"core-util-is": "^1.0.1",
"debuglog": "^1.0.1",
"js-yaml": "^3.2.6",
"swaggerize-routes": "^1.0.0"
},
"peerDependencies": {
"restify": "^3.0.3"
},
"devDependencies": {
"tape": "^2.4.2",
"istanbul": "^0.2.3",
"jshint": "^2.4.1",
"restify": "^3.0.3",
"supertest": "^0.13.0"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc lib/*.js lib/*.js"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
]
}