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
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
44
45
46
47
48
49
{
"name": "odata-openapi",
"version": "0.24.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": "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.5.7",
"minimist": "^1.2.8",
"odata-csdl": "^0.8.3"
},
"devDependencies": {
"@apidevtools/openapi-schemas": "^2.1.0",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"c8": "^8.0.1",
"eslint": "^8.53.0",
"mocha": "^10.2.0"
},
"scripts": {
"build": "node lib/transform.js",
"test": "c8 mocha",
"watch": "mocha --watch"
},
"author": "",
"keywords": [
"OData",
"OpenAPI",
"OpenAPI3",
"Swagger"
],
"license": "SEE LICENSE IN LICENSE.md"
}