react-router-native 5.2.0 → 5.3.2

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 +2 -1
  2. package/README.md +3 -3
  3. package/package.json +12 -6
package/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) React Training 2016-2018
3
+ Copyright (c) React Training 2015-2019
4
+ Copyright (c) Remix Software 2020-2022
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
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.0",
3
+ "version": "5.3.2",
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,7 +32,6 @@
25
32
  },
26
33
  "dependencies": {
27
34
  "prop-types": "^15.6.1",
28
- "react-router": "5.2.0"
29
- },
30
- "gitHead": "21a62e55c0d6196002bd4ab5b3350514976928cf"
35
+ "react-router": "2"
36
+ }
31
37
  }