-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 757 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 757 Bytes
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
{
"name": "openapi2schema",
"version": "0.5.0",
"description": "Convert OpenAPI 3.0 document into a tree of request/response JSON Schemas",
"main": "lib/openapi2schema.js",
"scripts": {
"test": "./node_modules/.bin/tape test/**/*.test.js | ./node_modules/.bin/tap-spec"
},
"bin": {
"openapi2schema": "./index.js"
},
"repository": "github:mikunn/openapi2schema",
"author": "Mika Kunnas",
"license": "MIT",
"dependencies": {
"commander": "^2.11.0",
"json-schema-merge-allof": "^0.6.0",
"json-schema-ref-parser": "^4.0.3",
"json-schema-deref-sync": "^0.4.0",
"js-yaml": "^3.10.0",
"openapi-schema-to-json-schema": "^2.1.0"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}