Dependency version bumps

This commit is contained in:
Lovell Fuller 2016-08-01 20:23:45 +01:00
parent da0dc28bc4
commit e68a14c94c
2 changed files with 5 additions and 5 deletions

View File

@ -61,18 +61,18 @@
"bluebird": "^3.4.1", "bluebird": "^3.4.1",
"color": "^0.11.3", "color": "^0.11.3",
"nan": "^2.4.0", "nan": "^2.4.0",
"semver": "^5.2.0", "semver": "^5.3.0",
"request": "^2.74.0", "request": "^2.74.0",
"tar": "^2.2.1" "tar": "^2.2.1"
}, },
"devDependencies": { "devDependencies": {
"async": "^2.0.1", "async": "^2.0.1",
"bufferutil": "^1.2.1", "bufferutil": "^1.2.1",
"coveralls": "^2.11.9", "coveralls": "^2.11.12",
"exif-reader": "^1.0.0", "exif-reader": "^1.0.1",
"icc": "^0.0.2", "icc": "^0.0.2",
"istanbul": "^0.4.4", "istanbul": "^0.4.4",
"mocha": "^2.5.3", "mocha": "^3.0.0",
"mocha-jshint": "^2.3.1", "mocha-jshint": "^2.3.1",
"node-cpplint": "^0.4.0", "node-cpplint": "^0.4.0",
"rimraf": "^2.5.4", "rimraf": "^2.5.4",

View File

@ -38,7 +38,7 @@ describe('Trim borders', function() {
describe('Invalid thresholds', function() { describe('Invalid thresholds', function() {
[-1, 100, 'fail', {}].forEach(function(threshold) { [-1, 100, 'fail', {}].forEach(function(threshold) {
it(threshold, function() { it(JSON.stringify(threshold), function() {
assert.throws(function() { assert.throws(function() {
sharp().trim(threshold); sharp().trim(threshold);
}); });