-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "react-router-redux-bind",
"version": "0.2.2",
"description": "Redux bindings for React Router Next v4",
"main": "index.js",
"module": "src/index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "npm run build && jest",
"coverage": "npm test -- --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxSvargal/react-router-redux-bind.git"
},
"keywords": [
"react",
"router",
"redux",
"redux-saga",
"history",
"route",
"routing",
"link",
"connect",
"isomorphic",
"universal"
],
"author": "MaxSvargal",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxSvargal/react-router-redux-bind/issues"
},
"homepage": "https://github.com/MaxSvargal/react-router-redux-bind#readme",
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"history": "^4.5.1"
},
"devDependencies": {
"coveralls": "^2.11.16",
"jest": "^18.1.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "4.0.0-beta.5",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.2",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0"
}
}