-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
{
"name": "sunflower-antd",
"version": "1.0.0-beta.3",
"description": "Process Components for antd",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/sunflower"
},
"keywords": [
"antd",
"react-hook"
],
"authors": [
"JIACHENG9 (https://github.com/JIACHENG9)"
],
"license": "MIT",
"bugs": "http://github.com/ant-design/sunflower",
"homepage": "https://ant-design.github.io/sunflower/",
"publishConfig": {
"access": "public"
},
"files": [
"es",
"lib"
],
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"build": "rm -rf es lib && node scripts/build.js",
"lint": "eslint --ext .ts,.tsx \"./src\"",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"cov": "umi-test --coverage"
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@testing-library/react-hooks": "^3.2.1",
"@umijs/fabric": "^2.0.4",
"@umijs/test": "^3.0.5",
"antd": "^4.0.3",
"dumi": "^1.0.8",
"gh-pages": "^2.2.0",
"lint-staged": "^10.0.7",
"mockjs": "^1.1.0",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-test-renderer": "^16.13.0",
"typescript": "^3.8.3",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}