Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreinglebert committed Jul 8, 2015
1 parent 99ea1bf commit 9b429a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function(options) {
if(options.threshold) {
if(typeof options.threshold != 'number') {
if(typeof options.threshold == 'string') {
options.threshold = bytes(options.threshold);
options.threshold = bytes(options.threshold) || 150;
} else {
options.threshold = 150;
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
"Jeremy Stuckey <jeremystuckey@gmail.com>"
],
"dependencies": {
"bytes": "^1.0.0",
"bytes": "^2.1.0",
"defaults": "^1.0.2",
"gulp-util": "^3.0.4",
"node-zopfli": "^1.2.1",
"stream-to-array": "^2.0.2",
"through2": "^0.6.3"
"through2": "^2.0.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
Expand All @@ -45,7 +45,7 @@
"jshint": "^2.6.3",
"mocha": "^2.2.1",
"nid": "^0.3.2",
"should": "^5.2.0"
"should": "^7.0.0"
},
"main": "index.js",
"licenses": [
Expand Down

0 comments on commit 9b429a6

Please sign in to comment.