-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "@cfaester/enzyme-adapter-react-18",
"version": "0.8.0",
"description": "An unofficial React 18 adapter for Enzyme, that you probably shouldn't use.",
"repository": {
"type": "git",
"url": "https://github.com/cfaester/enzyme-adapter-react-18.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "Jordan Harband <ljharb@gmail.com>",
"contributors": [
"Wojciech Maj <kontakt@wojtekmaj.pl>",
"Christian Fæster <hello@cfaester.dk>"
],
"scripts": {
"build": "tsc"
},
"keywords": [
"enzyme",
"react 18",
"unofficial",
"shallow rendering",
"testing"
],
"license": "MIT",
"dependencies": {
"enzyme-shallow-equal": "^1.0.0",
"react-is": "^18.2.0",
"has": "^1.0.4",
"react-shallow-renderer": "^16.15.0",
"function.prototype.name": "^1.1.6"
},
"devDependencies": {
"@types/enzyme": "^3.10.13",
"@types/node": "^17.0.23",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-is": "^18.3.0",
"enzyme": "^3.11.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"typescript": "^5.4.5"
},
"overrides": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0"
},
"peerDependencies": {
"enzyme": "^3.11.0",
"react": ">=18",
"react-dom": ">=18"
}
}