-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "ant-design-testing",
"version": "0.1.0-beta.4",
"description": "Easier testing for ant-design-based UI library",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"dev": "father dev",
"build": "father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build",
"test": "jest",
"release": "bumpp --commit --push --tag && npm publish",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/mortalYoung/ant-design-testing"
},
"keywords": [
"Ant Design",
"UI library"
],
"authors": [
"mortalYoung <[email protected]>"
],
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@testing-library/react": "*",
"antd": "4",
"rc-resize-observer": "*"
},
"peerDependenciesMeta": {
"rc-resize-observer": {
"optional": true
}
},
"devDependencies": {
"@swc/core": "^1.3.58",
"@swc/jest": "^0.2.26",
"@testing-library/react": "^13.0.0",
"@types/jest": "^29.5.1",
"antd": "4",
"bumpp": "^9.1.0",
"father": "^4.2.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ko-lint-config": "^2.2.20",
"lint-staged": "^13.2.2",
"moment": "^2.29.4",
"prettier": "^2.8.8",
"rc-resize-observer": "*",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.0"
},
"lint-staged": {
"*.{ts,js,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}