-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "@toft-code/swagger-axios-ts-generator",
"version": "0.1.3",
"description": "use swagger api json to auto generate ts code",
"main": "./dist/index",
"typings": "./dist/",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"start": "node ./dist/index",
"buildExample": "node ./dist/buildExample",
"watch": "tsc --watch",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toft-code/swagger-axios-ts-generator.git"
},
"keywords": [
"swagger",
"axios",
"typescript",
"generator",
"api"
],
"author": "limichange<[email protected]>",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/toft-code/swagger-axios-ts-generator/issues"
},
"homepage": "https://github.com/toft-code/swagger-axios-ts-generator#readme",
"dependencies": {
"axios": "^0.20.0",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"got": "^11.8.2",
"jest": "^26.6.3",
"ora": "^5.1.0",
"prettier": "^2.1.2",
"semver": "^7.3.2",
"ts-jest": "^26.5.4"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.11.5",
"@types/prettier": "^2.1.1",
"@types/semver": "^7.3.4",
"typescript": "^4.0.3"
}
}