forked from wojtekmaj/enzyme-adapter-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.78 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
{
"name": "@dsaenko/enzyme-adapter-utils",
"version": "0.2.1",
"description": "JavaScript Testing utilities for React",
"homepage": "https://enzymejs.github.io/enzyme/",
"main": "build",
"scripts": {
"build": "babel --source-maps=both src -d build",
"clean": "rimraf build",
"lint": "eslint --ext js,jsx .",
"prepack": "yarn clean && yarn build",
"prettier": "prettier --check . --cache",
"test": "yarn lint && yarn prettier",
"watch": "yarn build -w"
},
"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": {
"function.prototype.name": "^1.1.0",
"has": "^1.0.0",
"object.fromentries": "^2.0.0",
"prop-types": "^15.7.0"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.15.0",
"eslint": "^8.26.0",
"eslint-config-wojtekmaj": "^0.7.1",
"husky": "^8.0.0",
"prettier": "^2.7.0",
"pretty-quick": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.0"
},
"peerDependencies": {
"react": "16.x || 18.x"
},
"resolutions": {
"[email protected]": "^7.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/wojtekmaj/enzyme-adapter-utils.git"
},
"funding": "https://github.com/wojtekmaj/enzyme-adapter-utils?sponsor=1",
"packageManager": "[email protected]",
"sideEffects": false
}