forked from Avalara/swagger-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 958 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
38
39
40
41
42
{
"name": "@proerd/swagger-ts-template",
"version": "1.16.3",
"description": "Generate .d.ts from swagger json.",
"main": "built/main.js",
"engines": {
"node": ">=4.0.0"
},
"bin": {
"tstemplate": "built/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wkrueger/swagger-ts-template.git"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "tsc && tap test/*.js",
"prepublishOnly": "yarn test"
},
"devDependencies": {
"@types/lodash": "^4.14.36",
"@types/mkdirp": "^0.3.29",
"@types/node": "^11.13.4",
"@types/rimraf": "0.0.28",
"@types/yargs": "0.0.31",
"tap": "^12.6.1",
"typescript": "^3.7.2"
},
"dependencies": {
"@types/prettier": "^1.18.3",
"cp": "^0.2.0",
"ejs": "^2.5.6",
"lodash": "^4.16.3",
"mkdirp": "^0.5.1",
"prettier": "^1.19.1",
"rimraf": "^2.6.1",
"wordwrap": "^1.0.0",
"yargs": "^6.0.0"
}
}