forked from oasis-tcs/odata-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 801 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
{
"name": "odata-openapi",
"version": "0.6.4",
"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.2.2"
},
"devDependencies": {
"c8": "^7.3.5",
"mocha": "^8.2.1"
},
"scripts": {
"build": "node lib/transform.js",
"test": "c8 mocha",
"watch": "mocha --watch"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md"
}