-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
38 lines (38 loc) · 891 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
{
"name": "openapi-filter",
"version": "3.2.2",
"description": "Filter internal paths, operations, parameters, schemas etc from OpenAPI/Swagger definitions",
"main": "index.js",
"bin": "openapi-filter.js",
"scripts": {
"lint": "npx eslint *.js test/*.js",
"test": "npx mocha"
},
"author": "Mike Ralphson",
"license": "BSD-3-Clause",
"dependencies": {
"reftools": "^1.1.1",
"yaml": "2.2",
"yargs": "^17.7.1"
},
"devDependencies": {
"eslint": "^8.37.0",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mermade/openapi-filter.git"
},
"keywords": [
"openapi",
"openapi3",
"swagger",
"asyncapi",
"filter",
"internal"
],
"bugs": {
"url": "https://github.com/mermade/openapi-filter/issues"
},
"homepage": "https://github.com/mermade/openapi-filter#readme"
}