-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 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
40
41
42
{
"name": "openapi3-typescript-codegen",
"version": "0.0.13",
"description": "typescript codegen for OpenAPI 3",
"main": "dist/codegen.js",
"bin": {
"op3-codegen": "dist/main.js"
},
"types": "dist/*.d.ts",
"scripts": {
"build": "tsc",
"tsc": "tsc",
"test": "node dist/main.js -- example/petstore.yaml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxel/openapi3-typescript-codegen.git"
},
"author": "Andrey F. Kupreychik <[email protected]> (https://github.com/foxel)",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/foxel/openapi3-typescript-codegen/issues"
},
"homepage": "https://github.com/foxel/openapi3-typescript-codegen#readme",
"dependencies": {
"case": "^1.5.4",
"cli": "^1.0.1",
"handlebars": "^4.0.11",
"mkdirp": "^0.5.1",
"read-yaml": "^1.1.0"
},
"devDependencies": {
"@types/cli": "^0.11.19",
"@types/handlebars": "^4.0.36",
"@types/node": "^9.6.2",
"typescript": "^2.8.1"
},
"files": [
"dist/",
"templates/"
]
}