-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 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
39
40
41
42
43
{
"name": "openapi-ts-gen",
"version": "0.0.23",
"description": "A type definition generator from Open API 3.0 spec.",
"bin": {
"openapi-ts-gen": "./bin/openapi-ts-gen.js"
},
"keywords": [
"swagger",
"codegen",
"typescript",
"openapi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andoshin11/openapi-ts-gen.git"
},
"author": "andoshin11 <[email protected]>",
"bugs": {
"url": "https://github.com/andoshin11/openapi-ts-gen/issues"
},
"homepage": "https://github.com/andoshin11/openapi-ts-gen#readme",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc"
},
"devDependencies": {
"@types/ejs": "^2.6.3",
"@types/js-yaml": "^3.12.0",
"@types/node": "^11.11.3",
"@types/prettier": "^1.16.4",
"openapi3-ts": "^1.2.0",
"typescript": "~3.6.2"
},
"dependencies": {
"commander": "^2.19.0",
"ejs": "^2.6.1",
"js-yaml": "3.13.1",
"prettier": "^1.17.1"
}
}