forked from Redocly/swagger-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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-repo",
"version": "2.0.0-rc.11",
"description": "CLI tool to help you manage your OpenAPI(fka Swagger) repo.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Rebilly/swagger-repo.git"
},
"keywords": [
"API",
"REST",
"Restful",
"OpenAPI",
"OpenAPI Specification",
"Swagger"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Rebilly/swagger-repo/issues"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write {bin,lib}/**/*.js"
},
"homepage": "https://github.com/Rebilly/swagger-repo",
"bin": {
"swagger-repo": "./bin/swagger-repo.js"
},
"engines": {
"node": ">=10.14.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^2.4.1",
"commander": "^2.9.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"fs-extra": "^7.0.1",
"gh-pages": "^2.0.1",
"glob": "^7.0.0",
"js-yaml": "^3.5.3",
"json-pointer": "^0.6.0",
"jsonpath": "^1.0.0",
"livereload": "^0.7.0",
"lodash": "^4.5.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.3.0",
"oas-validator": "^1.1.13",
"require-dir": "^1.0.0",
"swagger-editor-dist": "^3.6.16",
"swagger-ui-dist": "^3.20.1",
"sway": "^2.0.5"
},
"devDependencies": {
"eslint": "^5.9.0",
"prettier": "^1.15.3"
}
}