This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 584
/
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.7.5",
"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": "^2.1.4",
"commander": "^2.7.1",
"connect": "^3.3.5",
"debug": "^2.1.3",
"fs-extra": "^1.0.0",
"inquirer": "^1.2.3",
"js-yaml": "^3.3.0",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"nodemon": "^1.3.7",
"serve-static": "^1.9.2",
"swagger-converter": "^1.4.1",
"swagger-editor": "^2.9.2",
"swagger-test-templates": "^1.2.0",
"swagger-tools": "^0.10.1"
},
"devDependencies": {
"chai": "^3.0.0",
"mock-stdin": "^0.3.0",
"proxyquire": "^1.4.0",
"should": "^11.1.1",
"sinon": "^1.15.4",
"superagent": "^3.1.0",
"supertest": "^2.0.1",
"tmp": "^0.0.31",
"z-schema": "^3.14.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"
}
}