forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 955 Bytes
/
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
{
"name": "react-router-config",
"version": "5.1.1",
"description": "Static route config matching for React Router",
"repository": "ReactTraining/react-router",
"license": "MIT",
"author": "React Training <[email protected]>",
"files": [
"cjs",
"es",
"esm",
"index.js",
"matchRoutes.js",
"modules/*.js",
"modules/utils/*.js",
"renderRoutes.js",
"warnAboutDeprecatedCJSRequire.js",
"umd"
],
"main": "index.js",
"module": "esm/react-router-config.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"lint": "eslint modules"
},
"peerDependencies": {
"react": ">=15",
"react-router": ">=5"
},
"dependencies": {
"@babel/runtime": "^7.12.13"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"keywords": [
"react",
"router",
"route",
"routing",
"static routes",
"route config",
"react router"
]
}