forked from oasis-tcs/odata-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
43
{
"name": "odata-openapi",
"version": "0.13.0",
"description": "Convert OData CSDL XML or CSDL JSON to OpenAPI",
"homepage": "https://github.com/oasis-tcs/odata-openapi/blob/master/lib/README.md",
"bugs": "https://github.com/oasis-tcs/odata-openapi/issues",
"repository": {
"type": "git",
"url": "https://github.com/oasis-tcs/odata-openapi.git"
},
"files": [
"lib/*"
],
"bin": {
"odata-openapi3": "lib/cli.js"
},
"main": "lib/csdl2openapi.js",
"dependencies": {
"minimist": "^1.2.5",
"odata-csdl": "^0.4.0"
},
"devDependencies": {
"@apidevtools/openapi-schemas": "^2.1.0",
"ajv-cli": "^3",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"mocha": "^9.2.1"
},
"scripts": {
"build": "node lib/transform.js",
"test": "c8 mocha",
"validate": "ajv validate -s node_modules/@apidevtools/openapi-schemas/schemas/v3.0/schema.json -d examples/*.openapi3.json",
"watch": "mocha --watch"
},
"author": "",
"keywords": [
"OData",
"OpenAPI",
"OpenAPI3",
"Swagger"
],
"license": "SEE LICENSE IN LICENSE.md"
}