-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.29 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": "swagger-routes",
"version": "1.7.2",
"description": "Generate Express or Restify route handlers from a Swagger specification",
"main": "src/index",
"keywords": [
"swagger",
"swagger 2.0",
"openapi",
"oai",
"express",
"restify",
"rest",
"middleware",
"api"
],
"author": {
"name": "Mike Stead",
"url": "https://github.com/mikestead"
},
"license": "MIT",
"homepage": "https://github.com/mikestead/swagger-routes",
"repository": {
"type": "git",
"url": "https://github.com/mikestead/swagger-routes.git"
},
"bugs": {
"url": "https://github.com/mikestead/swagger-routes/issues"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
},
"scripts": {
"lint": "eslint src test",
"test": "mocha --recursive"
},
"dependencies": {
"axios": "^0.18.1",
"expect": "^1.13.0",
"js-yaml": "^3.5.4",
"jsonschema": "1.1.0",
"mkdirp": "^0.5.1",
"mustache": "^2.2.1"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"concat-stream": "^1.5.1",
"del": "^2.2.0",
"eslint": "^1.10.3",
"eslint-config-rackt": "^1.1.1",
"express": "^4.13.4",
"form-data": "^0.2.0",
"mocha": "^2.3.4",
"multer": "^1.1.0",
"on-finished": "^2.3.0",
"restify": "^4.0.4"
}
}