-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "beautiful-react-redux",
"version": "2.1.0",
"description": "A magical tool to improve React-Redux performance",
"main": "lib/index.js",
"files": [
"check.js",
"memoize.js",
"patch.js"
],
"keywords": [
"react",
"redux",
"memoize",
"mapStateToProps",
"selector",
"redraw"
],
"scripts": {
"test": "jest",
"build": "babel src -d lib",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "Anton Korzunov (thekashey@gmail.com)",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-redux": "^5.0.0 || ^4.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.15",
"@storybook/addon-links": "^3.3.15",
"@storybook/react": "^3.3.15",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-redux-focus": "^1.2.3",
"redux": "^3.7.2",
"storybook": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/beautiful-react-redux.git"
},
"bugs": {
"url": "https://github.com/theKashey/beautiful-react-redux/issues"
},
"homepage": "https://github.com/theKashey/beautiful-react-redux#readme",
"dependencies": {
"function-double": "^1.0.4",
"memoize-state": "^2.0.1",
"shallowequal": "^1.0.2"
}
}