-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·42 lines (42 loc) · 969 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
40
41
42
{
"name": "apidoc-openapi-3",
"version": "1.0.0",
"description": "Convert api doc json to openapi 3 json",
"author": "amano hikaru",
"main": "bin.js",
"bin": "bin.js",
"repository": {
"type": "git",
"url": "https://github.com/amanoooo/apidoc-swagger-3"
},
"bugs": {
"url": "https://github.com/amanoooo/apidoc-swagger-3/issues"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"swagger",
"swagger-3.0",
"openapi"
],
"scripts": {
"test": "jest"
},
"license": "ISC",
"dependencies": {
"apidoc-core": "^0.15.0",
"commander": "^6.0.0",
"generate-schema": "^2.6.0",
"lodash": "^4.17.20",
"path-to-regexp": "^6.1.0",
"winston": "^3.3.3"
},
"peerDependencies": {
"typescript": "^4.9.4"
},
"devDependencies": {
"jest": "^27.5.1"
}
}