-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "swagger-codegen-next",
"version": "0.1.9",
"description": "根据swagger.json生成api文件",
"keywords": [
"swagger",
"typescript"
],
"main": "./lib/index.js",
"bin": "./bin/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel src --out-dir lib --extensions \".ts\""
},
"author": "kanweiwei",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kanweiwei/swagger-codegen-next"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-syntax-async-generators": "^7.7.4",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/bluebird": "^3.5.35",
"@types/lodash-es": "^4.17.3",
"@types/node": "^15.12.2",
"@types/prettier": "^2.2.2"
},
"dependencies": {
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"ora": "^5.4.1",
"prettier": "^2.3.2",
"query-string": "^7.0.1",
"rimraf": "^3.0.2"
}
}