forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-router-config",
"version": "4.4.0-beta.6",
"description": "Static route config matching for React Router",
"repository": "ReactTraining/react-router",
"license": "MIT",
"authors": [
"Ryan Florence"
],
"files": [
"cjs",
"es",
"esm",
"index.js",
"matchRoutes.js",
"renderRoutes.js",
"warnAboutDeprecatedCJSRequire.js",
"umd"
],
"main": "index.js",
"module": "esm/react-router-config.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"lint": "eslint modules",
"prepublishOnly": "npm run build",
"test": "jest"
},
"peerDependencies": {
"react": ">=15",
"react-router": "4.4.0-beta.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-dev-expression": "^0.2.1",
"eslint": "^5.7.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"history": "^4.7.2",
"jest": "^23.6.0",
"jest-circus": "^23.6.0",
"prop-types": "^15.6.2",
"raf": "^3.4.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router": "^4.4.0-beta.6",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.7.0",
"rollup-plugin-uglify": "^6.0.0"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"keywords": [
"react",
"router",
"route",
"routing",
"static routes",
"route config",
"react router"
],
"dependencies": {
"@babel/runtime": "^7.1.2"
}
}