-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.62 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
69
70
71
72
73
74
75
{
"name": "tdui-antd-codemode",
"version": "0.0.3",
"description": "Codemod for tdui to antd",
"bin": {
"tdui-antd-codemod": "./bin/tdui-antd-codemod.js"
},
"files": [
"bin",
"transforms"
],
"keywords": [
"td ui",
"ant design",
"codemod",
"antd"
],
"homepage": "https://github.com/zhiyan/tdui-antd-codemod",
"repository": {
"type": "git",
"url": "[email protected]:zhiyan/tdui-antd-codemod.git"
},
"bugs": {
"url": "https://github.com/zhiyan/tdui-antd-codemod/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint transforms/ --ext .ts,.tsx,.jsx,.js,.md",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"pretty-quick": "pretty-quick",
"test": "jest"
},
"dependencies": {
"@ant-design/icons": "^4.0.0-rc.0",
"chalk": "^3.0.0",
"execa": "^3.4.0",
"globby": "^11.0.0",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.7.0",
"lodash": "^4.17.15",
"papaparse": "^5.1.0",
"read-pkg-up": "^7.0.1",
"semver": "^7.1.3",
"update-check": "^1.5.3",
"yargs-parser": "^16.1.0"
},
"devDependencies": {
"@umijs/fabric": "^1.1.10",
"coveralls": "^3.0.6",
"cross-env": "^6.0.0",
"enzyme": "^3.0.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"np": "^5.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"cnpm": {
"mode": "npm"
},
"tnpm": {
"mode": "npm"
}
}