forked from kminami/apib2swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 949 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
{
"name": "apib2swagger",
"version": "1.17.1",
"description": "Convert API Blueprint to Swagger.",
"bin": "./bin/apib2swagger.js",
"scripts": {
"prepareTest": "cross-env PREPARE=true mocha",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/kminami/apib2swagger.git"
},
"license": "MIT",
"author": {
"name": "Keisuke Minami"
},
"dependencies": {
"apib-include-directive": "^0.1.0",
"drafter.js": "^2.6.2",
"generate-schema": "^2.5.0",
"js-yaml": "^4.1.0",
"json-schema-to-openapi-schema": "^0.4.0",
"lodash.isequal": "^4.5.0",
"nopt": "^3.0.6",
"uritemplate": "^0.3.4"
},
"devDependencies": {
"coveralls": "^3.1.1",
"cross-env": "^5.2.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"tv4": "^1.2.7"
}
}