-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "swagger-to-ts",
"version": "1.4.6",
"description": "Generate typescript services and models from Swagger",
"main": "./lib/index.js",
"bin": {
"swagger-to-ts": "./lib/index.js"
},
"files": [
"lib",
"template"
],
"scripts": {
"clear": "rm -rf ./dist",
"dev": "yarn clear && ts-node src/index.ts",
"build": "yarn clear && tsc -p .",
"test": "yarn clear && yarn build && node lib/index.js",
"release": "yarn clear && yarn build && npm publish --registry=https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arbing/swagger-to-ts.git"
},
"keywords": [
"swagger",
"typescript",
"code generator"
],
"author": "arbing",
"license": "Apache",
"bugs": {
"url": "https://github.com/arbing/swagger-to-ts/issues"
},
"homepage": "https://github.com/arbing/swagger-to-ts#readme",
"dependencies": {
"@apidevtools/swagger-parser": "^9.0.1",
"api-spec-converter": "^2.12.0",
"axios": "^1.4.0",
"chalk": "^4.0.0",
"commander": "^5.0.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mustache": "^4.0.1",
"path": "^0.12.7",
"urijs": "^1.19.11"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/lodash-es": "^4.17.4",
"@types/mustache": "^4.0.1",
"@types/node": "^13.13.0",
"@types/urijs": "^1.19.19",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"openapi-types": "^1.3.5",
"prettier": "^2.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}