-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.95 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": "rc-test",
"version": "7.1.1",
"description": "test tools for react component",
"keywords": [
"react",
"test"
],
"homepage": "http://github.com/react-component/rc-test",
"bugs": {
"url": "http://github.com/react-component/rc-test/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:react-component/rc-test.git"
},
"license": "MIT",
"author": {
"name": "[email protected]"
},
"main": "./lib/index",
"module": "./es/index",
"typings": "es/index.d.ts",
"bin": {
"rc-test": "./bin/rc-test.js",
"rc-test-migrate": "./bin/rc-test-migrate.js"
},
"files": [
"lib",
"es"
],
"scripts": {
"compile": "father build",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"test": "npm run compile && npm run test:only",
"test:only": "node ./bin/rc-test.js"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@umijs/fabric": "^4.0.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-umi": "^1.8.4",
"core-js": "^3.25.5",
"fs-extra": "^10.1.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.0",
"regenerator-runtime": "^0.13.10",
"umi-utils": "^1.7.3",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.0",
"@types/node": "^22.7.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.18.0",
"father": "^4.0.0-rc.8",
"np": "^10.0.7",
"prettier": "^2.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"engines": {
"node": ">=12.x"
}
}