This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
79 lines (79 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@apidevtools/swagger-cli",
"version": "4.0.4",
"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://jamesmessinger.com"
},
"contributors": [
{
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
{
"name": "Randall Krauskopf",
"url": "https://github.com/rkrauskopf"
}
],
"homepage": "https://apitools.dev/swagger-cli/",
"repository": {
"type": "git",
"url": "https://github.com/APIDevTools/swagger-cli.git"
},
"license": "MIT",
"main": "lib/index.js",
"bin": {
"swagger-cli": "bin/swagger-cli.js"
},
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=10"
},
"engineStrict": true,
"scripts": {
"clean": "shx rm -rf .nyc_output coverage",
"lint": "eslint bin lib test",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm test && npm run bump"
},
"devDependencies": {
"@jsdevtools/eslint-config": "^1.0.5",
"@jsdevtools/version-bump-prompt": "^6.0.6",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"mocha": "^8.0.1",
"mockery": "^2.1.0",
"npm-check": "^5.9.0",
"nyc": "^15.1.0",
"shx": "^0.3.2",
"spawn-sync": "^2.0.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.1",
"chalk": "^4.1.0",
"js-yaml": "^3.14.0",
"yargs": "^15.4.1"
}
}