Update react peerDependencies to 15.0.0

React 15.0 has been released in April, 2016.
Without this change, `npm@3` gives an `UNMET PEER DEPENDENCY` error and refuses to update the `npm-shrinkwrap.json`.
Additionally, update react devDependencies from `0.14.0-rc1` to `0.14.0`.
This commit is contained in:
John Babak 2016-06-09 04:06:07 +03:00
parent a3fed314db
commit 5d43f5dd9e

View File

@ -36,7 +36,7 @@
},
"homepage": "https://github.com/istarkov/google-map-react#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc.1"
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"eventemitter3": "^1.1.0",
@ -56,9 +56,9 @@
"expect": "^1.11.1",
"jsdom": "^6.5.1",
"mocha": "^2.3.3",
"react": "^0.14.0-rc1",
"react-addons-test-utils": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"rimraf": "^2.4.3",
"webpack": "^1.12.2"
}