forked from APIDevTools/swagger-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.61 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "swagger-cli",
"version": "2.1.0",
"description": "Swagger 2.0 and OpenAPI 3.0 command-line tool",
"keywords": [
"swagger",
"openapi",
"open-api",
"cli",
"rest",
"api",
"yaml",
"parse",
"parser",
"validate",
"validator",
"validation",
"host"
],
"author": {
"name": "James Messinger",
"url": "https://github.com/BigstickCarpet"
},
"contributors": [
{
"name": "James Messinger",
"url": "http://bigstickcarpet.com"
},
{
"name": "Randall Krauskopf",
"url": "https://github.com/rkrauskopf"
}
],
"homepage": "http://bigstickcarpet.com/swagger-parser",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/swagger-cli.git"
},
"main": "lib/index.js",
"bin": {
"swagger-cli": "bin/swagger-cli.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint bin lib test --fix",
"test": "mocha && npm run lint",
"upgrade": "npm-check -u",
"bump": "bump --prompt --tag --push --all",
"release": "npm run upgrade && npm test && npm run bump && npm publish"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-modular": "^4.1.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"npm-check": "^5.7.1",
"rimraf": "^2.4.3",
"spawn-sync": "^2.0.0",
"version-bump-prompt": "^4.1.0"
},
"dependencies": {
"chalk": "^2.4.1",
"js-yaml": "^3.12.0",
"mkdirp": "^0.5.1",
"swagger-parser": "^5.0.0",
"yargs": "^11.0.0"
},
"engines": {
"node": ">=4.0.0"
}
}