forked from elasticio/odata2openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "odata2openapi",
"version": "0.0.13",
"description": "Convert OData metadata document to OpenAPI (fka Swagger) format",
"files": [
"dist"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && mkdir dist && tsc --declaration --outDir dist --rootDir src",
"build:example": "rm -rf dist && mkdir dist && tsc --declaration --outDir dist --project example.tsconfig.json",
"start": "npm run build:example && node dist/example/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akorchev/odata2openapi.git"
},
"keywords": [
"odata",
"swagger",
"openapi"
],
"author": "Atanas Korchev",
"license": "MIT",
"bugs": {
"url": "https://github.com/akorchev/odata2openapi/issues"
},
"homepage": "https://github.com/akorchev/odata2openapi#readme",
"devDependencies": {
"typescript": "^1.8.10",
"typings": "^1.3.2"
},
"dependencies": {
"xml2js": "^0.4.17"
}
}