This repository was archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
90 lines (90 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-router",
"version": "4.0.0",
"description": "Declarative routing for React",
"repository": "ReactTraining/react-router",
"license": "MIT",
"authors": [
"Michael Jackson",
"Ryan Florence"
],
"files": [
"MemoryRouter.js",
"Prompt.js",
"Redirect.js",
"Route.js",
"Router.js",
"StaticRouter.js",
"Switch.js",
"index.js",
"matchPath.js",
"withRouter.js",
"es",
"umd"
],
"main": "index.js",
"module": "es/index.js",
"scripts": {
"build": "node ./tools/build.js",
"watch": "babel ./modules -d . --ignore __tests__ --watch",
"prepublish": "node ./tools/build.js",
"clean": "git clean -fdX .",
"lint": "eslint modules",
"test": "karma start --single-run"
},
"peerDependencies": {
"react": "^15"
},
"dependencies": {
"history": "^4.6.0",
"invariant": "^2.2.2",
"loose-envify": "^1.3.1",
"path-to-regexp": "^6.1.0",
"warning": "^4.0.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.19.0",
"expect": "^25.1.0",
"gzip-size": "^5.1.1",
"in-publish": "^2.0.0",
"karma": "^4.4.1",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.1",
"pretty-bytes": "^5.3.0",
"react": "^16.13.1",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.13.1",
"readline-sync": "^1.4.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.1.14"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"keywords": [
"react",
"router",
"route",
"routing",
"history",
"link"
]
}