Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Commit

Permalink
Move react native to dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Dec 6, 2015
1 parent 54b7cba commit 5ac2fd7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
"start": "node_modules/react-native/packager/packager.sh",
"test": "mocha ./test/* --compilers js:mocha-traceur"
},
"dependencies": {
"react-native": "<=0.11.4"
},
"repository": {
"type": "git",
"url": "https://github.com/adamjmcgrath/react-native-simple-auth"
Expand All @@ -32,6 +29,7 @@
"mocha": "^2.2.5",
"mocha-traceur": "^2.1.0",
"proxyquire": "^1.5.0",
"react-native": "<=0.11.4",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
}
Expand Down

1 comment on commit 5ac2fd7

@arturkulig
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://nodejs.org/en/blog/npm/peer-dependencies/ please require react native as a peer dependency so we know which react native versions you support.

Please sign in to comment.