react-router-native 5.2.1 → 5.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +3 -3
  3. package/package.json +11 -4
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) React Training 2015-2019
4
+ Copyright (c) Remix Software 2020-2022
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # react-router-native
2
2
 
3
- [React Native](https://facebook.github.io/react-native/) bindings for [React Router](https://reacttraining.com/react-router).
3
+ [React Native](https://facebook.github.io/react-native/) bindings for [React Router](https://reactrouter.com).
4
4
 
5
5
  ## Installation
6
6
 
@@ -22,8 +22,8 @@ var Link = require("react-router-native").Link;
22
22
 
23
23
  ## Issues
24
24
 
25
- If you find a bug, please file an issue on [our issue tracker on GitHub](https://github.com/ReactTraining/react-router/issues).
25
+ If you find a bug, please file an issue on [our issue tracker on GitHub](https://github.com/remix-run/react-router/issues).
26
26
 
27
27
  ## Credits
28
28
 
29
- React Router is built and maintained by [React Training](https://reacttraining.com).
29
+ React Router is built and maintained by [Remix Software](https://remix.run).
package/package.json CHANGED
@@ -1,16 +1,23 @@
1
1
  {
2
2
  "name": "react-router-native",
3
- "version": "5.2.1",
3
+ "version": "5.3.3",
4
4
  "description": "React Native bindings for React Router",
5
- "repository": "ReactTraining/react-router",
5
+ "homepage": "https://reactrouter.com/",
6
+ "repository": {
7
+ "url": "https://github.com/remix-run/react-router.git",
8
+ "type": "git",
9
+ "directory": "packages/react-router-native"
10
+ },
6
11
  "license": "MIT",
7
- "author": "React Training <hello@reacttraining.com>",
12
+ "author": "Remix Software <hello@remix.run>",
8
13
  "main": "main.js",
9
14
  "sideEffects": false,
10
15
  "scripts": {
11
16
  "start": "node node_modules/react-native/local-cli/cli.js start"
12
17
  },
13
18
  "files": [
19
+ "LICENSE",
20
+ "README.md",
14
21
  "BackButton.js",
15
22
  "DeepLinking.js",
16
23
  "Link.js",
@@ -25,6 +32,6 @@
25
32
  },
26
33
  "dependencies": {
27
34
  "prop-types": "^15.6.1",
28
- "react-router": "5.2.1"
35
+ "react-router": "5.3.3"
29
36
  }
30
37
  }