forked from swagger-api/swagger-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "swagger",
"version": "0.6.3",
"description": "The Swagger command-line. Provides Swagger utilities and project lifecycle support.",
"keywords": [
"swagger",
"api",
"apis",
"connect",
"express"
],
"author": "Scott Ganyo <[email protected]>",
"license": "Apache 2.0",
"preferGlobal": true,
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/swagger-api/swagger-node.git"
},
"dependencies": {
"async": "^1.2.1",
"commander": "^2.7.1",
"connect": "^3.3.5",
"debug": "^2.1.3",
"fs-extra": "^0.18.0",
"inquirer": "^0.8.2",
"js-yaml": "^3.3.0",
"lodash": "^3.10.0",
"mocha": "^2.2.1",
"nodemon": "^1.3.7",
"serve-static": "^1.9.2",
"swagger-converter": "^0.1.7",
"swagger-editor": "^2.9.2",
"swagger-test-templates": "^1.1.0",
"swagger-tools": "^0.9.0"
},
"devDependencies": {
"chai": "^3.0.0",
"mock-stdin": "^0.3.0",
"proxyquire": "^1.4.0",
"should": "^5.2.0",
"sinon": "^1.15.4",
"superagent": "^1.1.0",
"supertest": "^0.15.0",
"tmp": "^0.0.25",
"z-schema": "^3.12.0"
},
"scripts": {
"test": "mocha -u exports -R spec test/config.js test/util test/commands test/commands/project test/project-skeletons",
"coverage": "istanbul cover _mocha -- -u exports -R spec test/config.js test/util test/commands test/commands/project test/project-skeletons",
"start": "node app.js"
},
"bin": {
"swagger": "bin/swagger.js",
"swagger-project": "bin/swagger-project.js"
}
}