-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
49 lines (49 loc) · 1.28 KB
/
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
43
44
45
46
47
48
49
{
"name": "odata-openapi",
"version": "0.28.2",
"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": "git+https://github.com/oasis-tcs/odata-openapi.git"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"lib/*"
],
"bin": {
"odata-openapi3": "lib/cli.js"
},
"main": "./lib/csdl2openapi.js",
"exports": "./lib/csdl2openapi.js",
"dependencies": {
"@discoveryjs/json-ext": "^0.6.3",
"odata-csdl": "^0.11.1"
},
"devDependencies": {
"@apidevtools/openapi-schemas": "^2.1.0",
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"c8": "^10.1.2",
"eslint": "^9.13.0",
"mocha": "^10.8.1"
},
"scripts": {
"build": "node lib/transform.js",
"pretest": "rm -f examples/PingTest_V1.no-batch.openapi3.json && node lib/cli.js -p --skipBatchPath -t examples/PingTest_V1.no-batch.openapi3.json examples/PingTest_V1.xml",
"test": "c8 mocha",
"watch": "mocha --watch"
},
"author": "",
"keywords": [
"OData",
"OpenAPI",
"OpenAPI3",
"Swagger"
],
"license": "SEE LICENSE IN LICENSE.md"
}