-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "odata2openapi",
"version": "1.3.2",
"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/elasticio/odata2openapi.git"
},
"keywords": [
"odata",
"swagger",
"openapi"
],
"author": "Atanas Korchev",
"license": "MIT",
"bugs": {
"url": "https://github.com/elasticio/odata2openapi/issues"
},
"homepage": "https://github.com/elasticio/odata2openapi#readme",
"devDependencies": {
"@types/node": "7.0.18",
"ts-node": "8.1.0",
"typescript": "2.3.2"
},
"dependencies": {
"xml-js": "1.6.11"
}
}