-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "react-browser-router",
"version": "2.1.1",
"description": "A Router wrapper for react-router, it allows you to create multiple Routers sharing the same history.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jBox/react-browser-router.git"
},
"keywords": [
"react-router",
"history"
],
"author": "jBox",
"license": "ISC",
"bugs": {
"url": "https://github.com/jBox/react-browser-router/issues"
},
"homepage": "https://github.com/jBox/react-browser-router#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"history": "^4.7.2",
"react": "^16.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
},
"babel": {
"presets": [
"env",
"stage-2",
"react"
]
},
"files": [
"lib"
]
}