-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "react-router-redux-sync",
"version": "1.0.3",
"description": "Sync params and location from react-router to a redux store",
"main": "dist/index.js",
"scripts": {
"prepublish": "rm -rf dist && ./node_modules/.bin/babel src --out-dir dist"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/scienceai/react-router-redux-sync.git"
},
"keywords": [
"react-router",
"redux",
"history",
"sync"
],
"author": {
"name": "Sebastien Ballesteros"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/react-router-redux-sync/issues"
},
"homepage": "https://github.com/scienceai/react-router-redux-sync#readme",
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.6.1"
},
"peerDependencies": {
"react": "*",
"react-redux": "*",
"react-router": "<4.0.0",
"redux": "*"
}
}