-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 858 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
34
35
36
37
{
"name": "swagger-ts-api-gen",
"version": "0.1.7",
"description": "",
"main": "lib/main.js",
"license": "ISC",
"repository": "github:ferrybig/swagger-ts-api-gen",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"run": "node lib/main.js",
"build-run": "rm -f src/examples-example.ts && tsc && node lib/main.js -i examples/example.json -o src/examples-example.ts --debug client"
},
"author": {
"name": "Fernando",
"email": "[email protected]",
"url": "https://ferrybig.me/"
},
"devDependencies": {
"@types/node": "^12.7.11",
"fs": "0.0.1-security",
"@types/cli": "^0.11.19",
"node-typescript": "^0.1.3",
"typescript": "^3.6.3"
},
"dependencies": {
"cli": "^1.0.1"
},
"bin": {
"swagger-ts-api-gen": "./lib/main.js"
},
"files": [
"lib"
]
}