This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
80 lines (80 loc) · 1.93 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
79
80
{
"name": "@wojtekmaj/enzyme-adapter-react-17",
"version": "0.8.0",
"description": "JavaScript Testing utilities for React",
"homepage": "https://enzymejs.github.io/enzyme/",
"main": "build",
"workspaces": [
"test"
],
"scripts": {
"build": "babel --source-maps=both src -d build",
"clean": "rimraf build",
"lint": "eslint src test --ext .js,.jsx",
"postinstall": "husky install",
"prepack": "yarn clean && yarn build",
"prettier": "prettier --check . --cache",
"test": "yarn lint && yarn prettier"
},
"keywords": [
"javascript",
"shallow rendering",
"shallowRender",
"test",
"reactjs",
"react",
"flux",
"testing",
"test utils",
"assertion helpers",
"tdd",
"mocha"
],
"author": "Jordan Harband <[email protected]>",
"contributors": [
"Wojciech Maj <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@wojtekmaj/enzyme-adapter-utils": "^0.2.0",
"enzyme-shallow-equal": "^1.0.0",
"has": "^1.0.0",
"prop-types": "^15.7.0",
"react-is": "^17.0.0",
"react-test-renderer": "^17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.15.0",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.15.0",
"enzyme": "^3.0.0",
"eslint": "^8.26.0",
"eslint-config-wojtekmaj": "^0.8.3",
"husky": "^8.0.0",
"prettier": "^2.7.0",
"pretty-quick": "^3.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^3.0.0"
},
"peerDependencies": {
"enzyme": "^3.0.0",
"react": "^17.0.0-0",
"react-dom": "^17.0.0-0"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"src",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/wojtekmaj/enzyme-adapter-react-17.git"
},
"funding": "https://github.com/wojtekmaj/enzyme-adapter-react-17?sponsor=1",
"packageManager": "[email protected]"
}