-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
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
{
"name": "swagger-node",
"version": "0.8.4",
"description": "The Swagger command-line. Provides Swagger utilities and project lifecycle support.",
"keywords": [
"swagger",
"api",
"apis",
"connect",
"express"
],
"contributors": [
"Scott Ganyo <sganyo@apigee.com>",
"Maziyar Panahi <maziyar.panahi@iscpif.fr>"
],
"license": "Apache 2.0",
"preferGlobal": true,
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/multivacplatform/swagger-node.git"
},
"dependencies": {
"async": "^3.1.0",
"commander": "3.0.1",
"connect": "^3.6.6",
"debug": "^4.1.1",
"fs-extra": "8.1.0",
"inquirer": "7.0.0",
"js-yaml": "^3.13.0",
"lodash": "~4.17.11",
"nodemon": "^1.19.2",
"serve-static": "^1.13.2",
"swagger-converter": "1.5.1",
"swagger-editor": "~3.6.35",
"swagger-test-templates": "1.6.0",
"swagger-tools": "0.10.4"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.0.2",
"mock-stdin": "^0.3.1",
"proxyquire": "^2.1.0",
"should": "^13.2.3",
"sinon": "^7.3.1",
"superagent": "^5.0.2",
"supertest": "^4.0.2",
"tmp": "^0.1.0",
"z-schema": "3.25.1"
},
"scripts": {
"test": "./node_modules/.bin/_mocha --exit -u bdd -R spec test/config.js test/util test/commands test/commands/project test/project-skeletons",
"coverage": "istanbul cover ./node_modules/.bin/_mocha --exit -u bdd -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"
}
}