-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 902 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
36
37
38
39
{
"name": "openapi-extract",
"version": "1.3.0",
"description": "extract paths or operations from OpenAPI/Swagger definitions",
"main": "index.js",
"bin": "openapi-extract.js",
"scripts": {
"lint": "npx eslint *.js lib/*.js test/*.js",
"test": "npx mocha"
},
"author": "Mike Ralphson",
"license": "BSD-3-Clause",
"dependencies": {
"mkdirp": "^2.1.6",
"reftools": "^1.1.1",
"rimraf": "^4.4.1",
"yaml": "^2.2.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"mocha": "10.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mermade/openapi-extract.git"
},
"keywords": [
"openapi",
"openapi3",
"swagger",
"asyncapi",
"extract",
"microservice"
],
"bugs": {
"url": "https://github.com/mermade/openapi-extract/issues"
},
"homepage": "https://github.com/mermade/openapi-extract#readme"
}