forked from fardad-dev/swagger-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.01 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "swagger-typescript",
"version": "5.3.2",
"description": "An auto ts/js code generate from swagger/openApi",
"main": "lib/index.js",
"bin": {
"swag-ts": "./bin/index.js"
},
"scripts": {
"prepare": "tsc",
"test": "yarn prepare && node ./bin/index.js",
"lint": "eslint src/**/*.ts",
"eslint-fix": "eslint src/**/*.ts --fix",
"prettier-fix": "prettier --write \"**/*.{ts,tsx}\"",
"changeLog": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hosseinmd/swagger-typescript.git"
},
"keywords": [
"swagger",
"typescript",
"nswag",
"openApi 3",
"sswagger 2",
"code generator",
"hosssein mohammadi"
],
"author": "Hossein mohammadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/hosseinmd/swagger-typescript/issues"
},
"homepage": "https://github.com/hosseinmd/swagger-typescript#readme",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.1.0",
"qs": "^6.9.4",
"swagger2openapi": "^7.0.5",
"tsc-prog": "^2.2.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.22",
"@types/prettier": "^2.1.6",
"@types/qs": "^6.9.5",
"@types/react-query": "^1.2.9",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^2.20.0",
"commitlint": "^8.3.5",
"eslint": "^7.8.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.3",
"jest": "^27.0.4",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.13",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"peerDependencies": {
"prettier": ">=2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint"
}
},
"jest": {
"preset": "ts-jest"
},
"files": [
"lib",
"files",
"bin"
]
}