-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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": "swagger-node",
"version": "0.3.0",
"description": "The Swagger command-line. Provides Swagger utilities and project support.",
"keywords": [
"swagger",
"api",
"apis",
"connect",
"express"
],
"author": "Scott Ganyo <[email protected]>",
"license": "MIT",
"preferGlobal": true,
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/swagger-node/swagger-node.git"
},
"dependencies": {
"commander": "^2.7.1",
"connect": "^3.3.5",
"debug": "^2.1.3",
"fs-extra": "^0.18.0",
"inquirer": "^0.8.2",
"lodash": "^3.6.0",
"mocha": "^2.2.1",
"nodemon": "^1.3.7",
"serve-static": "^1.9.2",
"swagger-editor": "^2.9.2",
"swagger-tools": "^0.8.5",
"yamljs": "^0.2.1"
},
"devDependencies": {
"superagent": "^1.1.0",
"should": "^5.2.0",
"proxyquire": "^1.4.0",
"tmp": "^0.0.25"
},
"scripts": {
"test": "mocha -u exports -R spec test/config.js test/util test/commands test/commands/project",
"coverage": "istanbul cover _mocha -- -u exports -R spec test/config.js test/util test/commands test/commands/project"
},
"bin": {
"swagger": "bin/swagger",
"swagger-project": "bin/swagger-project"
}
}