-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "shouldcomponentupdate-children",
"version": "1.1.0",
"description": "'Shallow Equal' HOC implementation to optimize shouldComponentUpdate with children / React elements.",
"scripts": {
"build": "node_modules/.bin/rollup -c rollup.config.js -o index.cjs.js -f cjs -g react:React && node_modules/.bin/rollup -c rollup.config.js -o index.es.js -f es -g react:React",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill"
},
"main": "index.cjs.js",
"module": "index.es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NoamELB/shouldComponentUpdate-Children"
},
"keywords": [
"shouldComponentUpdate",
"react",
"children"
],
"author": "NoamELB & Tzook",
"bugs": {
"url": "https://github.com/NoamELB/shouldComponentUpdate-Children/issues"
},
"homepage": "https://github.com/NoamELB/shouldComponentUpdate-Children#readme",
"license": "MIT",
"devDependencies": {
"babel-core": "~6.25.0",
"babel-jest": "~20.0.3",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"jest": "~21.2.1",
"raf": "~3.4.0",
"react": "~16.1.1",
"react-dom": "~16.1.1",
"react-test-renderer": "~16.1.1",
"rollup": "~0.52.0",
"rollup-plugin-babel": "~3.0.1",
"rollup-plugin-node-resolve": "~3.0.0"
}
}