-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
78 lines (78 loc) · 1.72 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
76
77
78
{
"name": "@ant-design/codemod-v4",
"version": "1.1.0",
"description": "Codemod for ant design v4 upgrade",
"bin": {
"antd4-codemod": "./bin/antd-codemod.js"
},
"files": [
"bin",
"transforms"
],
"keywords": [
"ant design",
"codemod",
"antd"
],
"homepage": "https://github.com/ant-design/codemod-v4",
"repository": {
"type": "git",
"url": "git@github.com:ant-design/codemod-v4.git"
},
"bugs": {
"url": "http://github.com/ant-design/codemod-v4/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prepublishOnly": "np --yolo --no-publish",
"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",
"find-up": "^4.1.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": "^2.1.0",
"coveralls": "^3.0.6",
"cross-env": "^6.0.0",
"enzyme": "^3.0.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^7.1.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"np": "^5.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"cnpm": {
"mode": "npm"
},
"tnpm": {
"mode": "npm"
}
}