Skip to content

Commit

Permalink
switch the semver range of dependencies from ~ to ^ (#46)
Browse files Browse the repository at this point in the history
for better deduplication
  • Loading branch information
shinnn authored and mafintosh committed Dec 19, 2016
1 parent 023312b commit 8835a01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
},
"license": "MIT",
"dependencies": {
"inherits": "~2.0.1",
"typedarray": "~0.0.5",
"readable-stream": "~2.0.0"
"inherits": "^2.0.3",
"typedarray": "^0.0.6",
"readable-stream": "^2.2.2"
},
"devDependencies": {
"tape": "~2.3.2"
"tape": "^4.6.3"
},
"testling": {
"files": "test/*.js",
Expand Down

0 comments on commit 8835a01

Please sign in to comment.