forked from saumitrab/extract-swagger-for-endpoints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "extract-swagger-for-endpoints",
"version": "1.0.3",
"description": "Extract swagger/openapi spec with only required endpoint(s).",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"author": "Saumitra Bhanage <[email protected]>",
"bin": "./bin/extract-swagger",
"license": "MIT",
"dependencies": {
"commander": "^2.20.0",
"js-yaml": "^3.13.1",
"prettier": "^1.16.4",
"swagger-parser": "^4.1.0"
},
"devDependencies": {
"assertive": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-groupon": "^5.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.7.0",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/saumitrab/extract-swagger-for-endpoints"
},
"keywords": [
"swagger",
"openapi",
"endpoints"
]
}