-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "enabled-update-if",
"description": "Skip unnecessary rerendering with render props.",
"version": "0.1.0",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"files": [
"./lib"
],
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test": "jest"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./src/setup-test.js"
]
},
"author": "makotot <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/makotot/enabled-update-if.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@storybook/cli": "^3.4.11",
"@storybook/react": "^3.4.11",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"jest": "^23.6.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"peerDependencies": {
"react": ">=16"
},
"keywords": [
"react",
"shouldcomponentupdate",
"render props",
"component",
"performance"
]
}