-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "react-performance",
"version": "0.0.5",
"description": "Helpers to debug and record component render performance",
"repository": "https://github.com/amsul/react-performance",
"author": "Amsul <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && yarn build:native && yarn build:rollup && yarn build:examples",
"build:examples": "cp -a dist/. examples/src/dist/",
"build:native": "cp -a lib/. dist/ && mv dist/index.js dist/react-performance.native.js",
"build:rollup": "rollup -c",
"develop": "watch 'yarn build' lib/.",
"prepublish": "yarn build"
},
"files": [
"dist/**",
"lib/**"
],
"main": "dist/react-performance.umd.js",
"module": "dist/react-performance.js",
"jsnext:main": "dist/react-performance.js",
"keywords": [],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.13.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.61.0",
"flow-typed": "^2.2.3",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"watch": "^1.0.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.50.0"
},
"optionalDependencies": {
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-batched-subscribe": "^0.1.6"
}
}