-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
44
45
46
47
{
"name": "swagger-ts-client-gen",
"version": "1.1.9",
"keywords": [
"openapi",
"swagger",
"typescript",
"client",
"sdk",
"generator",
"generation"
],
"description": "An OpenAPI (Swagger) TypeScript client generator",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/antoniopresto/swagger-ts-client-gen.git",
"author": "Antonio Presto <antoniopresto@gmail.com>, Luke Autry <lukeautry@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn tsc",
"generate": "yarn rimraf ./artifacts/api.ts && yarn tsc && node ./dist/cli.js -f ./artifacts/swagger.json -n TestClient -o ./artifacts/api.ts",
"prepublish": "yarn build"
},
"dependencies": {
"handlebars": "^4.1.2",
"superagent": "^4.0.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/node": "^10.12.9",
"@types/superagent": "^3.8.4",
"@types/yargs": "^12.0.1",
"moment": "^2.22.2",
"rimraf": "^2.6.2",
"typescript": "^3.1.6"
},
"peerDependencies": {
"@types/moment": "^2.13.0",
"@types/superagent": "^3.8.4",
"moment": "^2.22.2",
"superagent": "^4.0.0"
},
"bin": {
"swagger-ts-client-gen": "./dist/cli.js"
}
}