diff --git a/helpers/tests.js b/helpers/tests.js index 461ac2e0..2d3bad45 100644 --- a/helpers/tests.js +++ b/helpers/tests.js @@ -3,7 +3,24 @@ var should = require('should'), // jshint ignore:line glob = require('glob'), path = require('path'), - fs = require('fs'); + fs = require('fs'), + Promise = require('promise'), + gm = require('gm'), + + stringComparison = function(expectedFilePath, resultFilePath) { + // reading files as strings and trimming them - good for non-binary files + var expectedFile = fs.readFileSync(expectedFilePath, 'utf8').trim(), + resultFile = fs.readFileSync(resultFilePath, 'utf8').trim(); + + resultFile.should.equal(expectedFile, expectedFilePath); + }, + + bufferComparison = function() { + var expectedFile = fs.readFileSync(expectedFilePath), + resultFile = fs.readFileSync(resultFilePath); + + resultFile.compare(expectedFile).should.equal(0, expectedFilePath); + }; module.exports = { compareResultFilesToExpected: function(testCaseFolderName, options) { @@ -15,20 +32,44 @@ module.exports = { // Compares files from expected folder and the results of gulp task, executed with fixtures as test data expectedResults.forEach(function(expectedFilePath) { var expectedFileName = path.relative(pathPrefix + '/expected/', expectedFilePath), - resultFilePath = path.resolve(pathPrefix + '/results/' + expectedFileName), - expectedFile, - resultFile; + resultFilePath = path.resolve(pathPrefix + '/results/' + expectedFileName); if (options && options.asBuffer) { - expectedFile = fs.readFileSync(expectedFilePath); - resultFile = fs.readFileSync(resultFilePath); - resultFile.compare(expectedFile).should.equal(0, expectedFilePath); + bufferComparison(expectedFilePath, resultFilePath); } else { - // reading files as strings and trimming them - good for non-binary files - expectedFile = fs.readFileSync(expectedFilePath, 'utf8').trim(); - resultFile = fs.readFileSync(resultFilePath, 'utf8').trim(); - resultFile.should.equal(expectedFile, expectedFilePath); + stringComparison(expectedFilePath, resultFilePath); } }); + }, + + compareImagesToExpected: function(testCaseFolderName, cb) { + var pathPrefix = path.join(__dirname, '/../test/', testCaseFolderName), + expectedResults = glob.sync(pathPrefix + '/expected/**/*', { + nodir: true + }); + + console.log('Starting image comparison...'); + + Promise.all(expectedResults.map(function(expectedFilePath) { + var expectedFileName = path.relative(pathPrefix + '/expected/', expectedFilePath), + resultFilePath = path.resolve(pathPrefix + '/results/' + expectedFileName); + + return new Promise(function(resolve, reject) { + gm.compare(expectedFilePath, resultFilePath, 0.01, function(error, equal) { + if (equal) { + resolve(); + } else { + reject(expectedFileName + ': differs from expected.'); + } + }); + }); + })).then(function(message) { + console.log('All images are equal.'); + cb(); + }, + + function(error) { + cb(new Error(error)); + }); } }; diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index aaf5d4b8..b2e57b5f 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -14,6 +14,18 @@ } } }, + "browserslist": { + "version": "1.1.1", + "from": "browserslist@*", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.1.1.tgz", + "dependencies": { + "caniuse-db": { + "version": "1.0.30000391", + "from": "caniuse-db@>=1.0.30000387 <2.0.0", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000391.tgz" + } + } + }, "callsite": { "version": "1.0.0", "from": "callsite@1.0.0", @@ -435,7 +447,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { @@ -793,7 +805,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "once": { @@ -1013,108 +1025,69 @@ } }, "gulp-autoprefixer": { - "version": "2.2.0", - "from": "gulp-autoprefixer@2.2.0", - "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-2.2.0.tgz", + "version": "3.0.0", + "from": "gulp-autoprefixer@3.0.0", + "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-3.0.0.tgz", "dependencies": { - "autoprefixer-core": { - "version": "5.2.1", - "from": "autoprefixer-core@>=5.0.0 <6.0.0", - "resolved": "https://registry.npmjs.org/autoprefixer-core/-/autoprefixer-core-5.2.1.tgz", + "autoprefixer": { + "version": "6.3.1", + "from": "autoprefixer@>=6.0.0 <7.0.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.3.1.tgz", "dependencies": { - "browserslist": { - "version": "0.4.0", - "from": "browserslist@>=0.4.0 <0.5.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-0.4.0.tgz" + "postcss-value-parser": { + "version": "3.2.3", + "from": "postcss-value-parser@>=3.2.3 <4.0.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.2.3.tgz" + }, + "normalize-range": { + "version": "0.1.2", + "from": "normalize-range@>=0.1.2 <0.2.0", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" }, "num2fraction": { "version": "1.2.2", - "from": "num2fraction@>=1.1.0 <2.0.0", + "from": "num2fraction@>=1.2.2 <2.0.0", "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" }, "caniuse-db": { - "version": "1.0.30000387", - "from": "caniuse-db@>=1.0.30000214 <2.0.0", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000387.tgz" + "version": "1.0.30000391", + "from": "caniuse-db@>=1.0.30000387 <2.0.0", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000391.tgz" } } }, - "object-assign": { - "version": "2.1.1", - "from": "object-assign@>=2.0.0 <3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz" - }, "postcss": { - "version": "4.1.16", - "from": "postcss@>=4.1.5 <5.0.0", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz", + "version": "5.0.14", + "from": "postcss@>=5.0.4 <6.0.0", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.0.14.tgz", "dependencies": { - "es6-promise": { - "version": "2.3.0", - "from": "es6-promise@>=2.3.0 <2.4.0", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz" - }, - "source-map": { - "version": "0.4.4", - "from": "source-map@>=0.4.2 <0.5.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "supports-color": { + "version": "3.1.2", + "from": "supports-color@>=3.1.2 <4.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz", "dependencies": { - "amdefine": { + "has-flag": { "version": "1.0.0", - "from": "amdefine@>=0.0.4", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" + "from": "has-flag@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz" } } }, + "source-map": { + "version": "0.5.3", + "from": "source-map@>=0.5.1 <0.6.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" + }, "js-base64": { "version": "2.1.9", - "from": "js-base64@>=2.1.8 <2.2.0", + "from": "js-base64@>=2.1.9 <3.0.0", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz" } } }, - "through2": { - "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "dependencies": { - "readable-stream": { - "version": "1.0.33", - "from": "readable-stream@>=1.0.17 <1.1.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", - "dependencies": { - "core-util-is": { - "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" - }, - "isarray": { - "version": "0.0.1", - "from": "isarray@0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - }, - "string_decoder": { - "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" - }, - "inherits": { - "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" - } - } - }, - "xtend": { - "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0-0", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" - } - } - }, "vinyl-sourcemaps-apply": { "version": "0.1.4", - "from": "vinyl-sourcemaps-apply@>=0.1.4 <0.2.0", + "from": "vinyl-sourcemaps-apply@>=0.1.3 <0.2.0", "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.1.4.tgz", "dependencies": { "source-map": { @@ -1145,7 +1118,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -1372,7 +1345,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -1413,12 +1386,12 @@ "dependencies": { "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.1 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -1476,7 +1449,7 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.1 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -1687,7 +1660,7 @@ }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0-0", + "from": "xtend@>=4.0.0 <5.0.0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" }, "nsdeclare": { @@ -1704,7 +1677,7 @@ "dependencies": { "through": { "version": "2.3.8", - "from": "through@>=2.3.1 <2.4.0", + "from": "through@>=2.3.0 <3.0.0", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" } } @@ -1721,7 +1694,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -1787,7 +1760,7 @@ "dependencies": { "ansi-regex": { "version": "0.2.1", - "from": "ansi-regex@>=0.2.1 <0.3.0", + "from": "ansi-regex@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" } } @@ -1799,7 +1772,7 @@ "dependencies": { "ansi-regex": { "version": "0.2.1", - "from": "ansi-regex@>=0.2.1 <0.3.0", + "from": "ansi-regex@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" } } @@ -1928,7 +1901,7 @@ }, "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.2 <2.0.0", + "from": "spdx-license-ids@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -2314,7 +2287,7 @@ "dependencies": { "clone-stats": { "version": "0.0.1", - "from": "clone-stats@>=0.0.1 <0.1.0", + "from": "clone-stats@>=0.0.1 <0.0.2", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz" } } @@ -2461,7 +2434,7 @@ }, "object-assign": { "version": "4.0.1", - "from": "object-assign@>=4.0.0 <5.0.0", + "from": "object-assign@>=4.0.1 <5.0.0", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" }, "pify": { @@ -2492,7 +2465,7 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.1 <0.7.0", + "from": "through2@>=0.6.5 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -2587,7 +2560,7 @@ }, "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.1.8 <1.2.0", + "from": "readable-stream@>=1.0.33 <2.0.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { @@ -2607,7 +2580,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -2650,7 +2623,7 @@ }, "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.1.8 <1.2.0", + "from": "readable-stream@>=1.0.33 <2.0.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { @@ -2670,7 +2643,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -2718,7 +2691,7 @@ }, "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.1.8 <1.2.0", + "from": "readable-stream@>=1.0.33 <2.0.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { @@ -2798,7 +2771,7 @@ }, "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.1.9 <1.2.0", + "from": "readable-stream@>=1.0.33 <2.0.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { @@ -2818,7 +2791,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -2989,7 +2962,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -3054,7 +3027,7 @@ "dependencies": { "chalk": { "version": "1.1.1", - "from": "chalk@*", + "from": "chalk@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", "dependencies": { "ansi-styles": { @@ -3119,13 +3092,13 @@ "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz" }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", - "from": "clone@>=1.0.2 <2.0.0", + "from": "clone@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz" }, "clone-stats": { @@ -3149,7 +3122,7 @@ "dependencies": { "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "typedarray": { @@ -3254,7 +3227,7 @@ "dependencies": { "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.0 <2.0.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -3533,7 +3506,7 @@ "dependencies": { "once": { "version": "1.3.3", - "from": "once@>=1.3.0 <2.0.0", + "from": "once@>=1.3.0 <1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "dependencies": { "wrappy": { @@ -3571,7 +3544,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "once": { @@ -3889,9 +3862,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -4007,9 +3980,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -4106,9 +4079,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -4236,9 +4209,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -4436,28 +4409,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -4570,7 +4524,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -4714,9 +4668,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -4870,7 +4824,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -4912,7 +4866,7 @@ }, "parse-json": { "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", + "from": "parse-json@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "dependencies": { "error-ex": { @@ -5000,9 +4954,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -5167,28 +5121,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -5301,7 +5236,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -5611,7 +5546,7 @@ "dependencies": { "array-uniq": { "version": "1.0.2", - "from": "array-uniq@>=1.0.0 <2.0.0", + "from": "array-uniq@>=1.0.1 <2.0.0", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" }, "semver-regex": { @@ -5761,7 +5696,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -5803,7 +5738,7 @@ }, "parse-json": { "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", + "from": "parse-json@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "dependencies": { "error-ex": { @@ -5933,9 +5868,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -6056,9 +5991,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -6160,9 +6095,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -6265,7 +6200,7 @@ "dependencies": { "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", + "from": "xtend@>=4.0.0 <4.1.0-0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -6330,9 +6265,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -6497,28 +6432,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -6631,7 +6547,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -6876,7 +6792,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -6997,9 +6913,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -7154,9 +7070,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -7292,9 +7208,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -7449,9 +7365,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -7649,28 +7565,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -7783,7 +7680,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -7915,9 +7812,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -8071,7 +7968,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -8113,7 +8010,7 @@ }, "parse-json": { "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", + "from": "parse-json@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "dependencies": { "error-ex": { @@ -8201,9 +8098,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -8368,28 +8265,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -8502,7 +8380,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -8800,7 +8678,7 @@ "dependencies": { "array-uniq": { "version": "1.0.2", - "from": "array-uniq@>=1.0.0 <2.0.0", + "from": "array-uniq@>=1.0.1 <2.0.0", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" }, "semver-regex": { @@ -8950,7 +8828,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -8992,7 +8870,7 @@ }, "parse-json": { "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", + "from": "parse-json@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "dependencies": { "error-ex": { @@ -9122,9 +9000,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -9179,14 +9057,14 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", + "from": "xtend@>=4.0.0 <4.1.0-0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -9284,9 +9162,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -9341,14 +9219,14 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", + "from": "xtend@>=4.0.0 <4.1.0-0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -9427,9 +9305,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -9484,14 +9362,14 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", + "from": "xtend@>=4.0.0 <4.1.0-0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -9624,9 +9502,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -9791,28 +9669,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -9925,7 +9784,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -10182,7 +10041,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { @@ -10331,9 +10190,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -10449,9 +10308,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -10548,9 +10407,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -10678,9 +10537,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -10878,28 +10737,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -11012,7 +10852,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -11156,9 +10996,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -11312,7 +11152,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -11354,7 +11194,7 @@ }, "parse-json": { "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", + "from": "parse-json@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "dependencies": { "error-ex": { @@ -11442,9 +11282,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -11609,28 +11449,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -11743,7 +11564,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -12053,7 +11874,7 @@ "dependencies": { "array-uniq": { "version": "1.0.2", - "from": "array-uniq@>=1.0.0 <2.0.0", + "from": "array-uniq@>=1.0.1 <2.0.0", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" }, "semver-regex": { @@ -12203,7 +12024,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -12245,7 +12066,7 @@ }, "parse-json": { "version": "2.2.0", - "from": "parse-json@>=2.2.0 <3.0.0", + "from": "parse-json@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "dependencies": { "error-ex": { @@ -12375,9 +12196,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -12498,9 +12319,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -12602,9 +12423,9 @@ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.3.1.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz" + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz" }, "end-of-stream": { "version": "1.1.0", @@ -12707,7 +12528,7 @@ "dependencies": { "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", + "from": "xtend@>=4.0.0 <4.1.0-0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -12772,9 +12593,9 @@ } }, "vinyl": { - "version": "1.1.0", + "version": "1.1.1", "from": "vinyl@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.1.1.tgz", "dependencies": { "clone": { "version": "1.0.2", @@ -12939,28 +12760,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -13073,7 +12875,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -13313,7 +13115,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -13425,7 +13227,7 @@ }, "mkdirp": { "version": "0.5.1", - "from": "mkdirp@>=0.5.0 <0.6.0", + "from": "mkdirp@>=0.5.1 <0.6.0", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "dependencies": { "minimist": { @@ -13470,7 +13272,7 @@ }, "meow": { "version": "3.7.0", - "from": "meow@>=3.3.0 <4.0.0", + "from": "meow@>=3.1.0 <4.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", "dependencies": { "camelcase-keys": { @@ -13558,7 +13360,7 @@ "dependencies": { "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.0 <2.0.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -13827,9 +13629,9 @@ "resolved": "https://registry.npmjs.org/babel-jscs/-/babel-jscs-2.0.5.tgz", "dependencies": { "babel-core": { - "version": "5.8.34", + "version": "5.8.35", "from": "babel-core@>=5.8.3 <5.9.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.34.tgz", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.35.tgz", "dependencies": { "babel-plugin-constant-folding": { "version": "1.0.1", @@ -13914,9 +13716,9 @@ "resolved": "https://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz" }, "babylon": { - "version": "5.8.34", - "from": "babylon@>=5.8.34 <6.0.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-5.8.34.tgz" + "version": "5.8.35", + "from": "babylon@>=5.8.35 <6.0.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-5.8.35.tgz" }, "bluebird": { "version": "2.10.2", @@ -14687,9 +14489,9 @@ "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz" }, "es6-set": { - "version": "0.1.3", + "version": "0.1.4", "from": "es6-set@>=0.1.3 <0.2.0", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.3.tgz" + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.4.tgz" }, "es6-symbol": { "version": "3.0.2", @@ -14725,7 +14527,7 @@ }, "es6-symbol": { "version": "3.0.2", - "from": "es6-symbol@>=3.0.1 <3.1.0", + "from": "es6-symbol@>=3.0.0 <4.0.0", "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz" } } @@ -15317,7 +15119,7 @@ "dependencies": { "ansi-escape-sequences": { "version": "2.2.2", - "from": "ansi-escape-sequences@>=2.2.1 <3.0.0", + "from": "ansi-escape-sequences@>=2.1.1 <3.0.0", "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", "dependencies": { "collect-all": { @@ -15409,7 +15211,7 @@ }, "typical": { "version": "2.4.1", - "from": "typical@>=2.2.0 <3.0.0", + "from": "typical@>=2.3.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15435,9 +15237,9 @@ "resolved": "https://registry.npmjs.org/babel-regenerator-runtime/-/babel-regenerator-runtime-6.3.13.tgz" }, "babel-runtime": { - "version": "5.8.34", + "version": "5.8.35", "from": "babel-runtime@>=5.0.0 <6.0.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-5.8.34.tgz" + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-5.8.35.tgz" } } }, @@ -15479,7 +15281,7 @@ "dependencies": { "ansi-escape-sequences": { "version": "2.2.2", - "from": "ansi-escape-sequences@>=2.2.1 <3.0.0", + "from": "ansi-escape-sequences@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", "dependencies": { "array-back": { @@ -15489,7 +15291,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15506,7 +15308,7 @@ }, "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15571,7 +15373,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15612,7 +15414,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15708,7 +15510,7 @@ }, "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15732,7 +15534,7 @@ }, "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15766,7 +15568,7 @@ }, "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15831,7 +15633,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15848,7 +15650,7 @@ }, "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15867,7 +15669,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.1.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15896,7 +15698,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -15925,7 +15727,7 @@ "dependencies": { "typical": { "version": "2.4.1", - "from": "typical@>=2.3.0 <3.0.0", + "from": "typical@>=2.2.0 <3.0.0", "resolved": "https://registry.npmjs.org/typical/-/typical-2.4.1.tgz" } } @@ -16150,7 +15952,7 @@ "dependencies": { "array-back": { "version": "1.0.2", - "from": "array-back@>=1.0.0 <2.0.0", + "from": "array-back@>=1.0.1 <2.0.0", "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.2.tgz" }, "typical": { @@ -16174,7 +15976,7 @@ "dependencies": { "ansi-escape-sequences": { "version": "2.2.2", - "from": "ansi-escape-sequences@>=2.2.1 <3.0.0", + "from": "ansi-escape-sequences@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-2.2.2.tgz", "dependencies": { "collect-all": { @@ -16267,7 +16069,7 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.3 <0.7.0", + "from": "through2@>=0.6.2 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -16527,7 +16329,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -16558,7 +16360,7 @@ }, "escape-string-regexp": { "version": "1.0.4", - "from": "escape-string-regexp@>=1.0.2 <2.0.0", + "from": "escape-string-regexp@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz" }, "has-ansi": { @@ -16997,12 +16799,12 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.0 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.33-1 <1.1.0-0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -17046,7 +16848,7 @@ "dependencies": { "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.0.26-2 <2.0.0", + "from": "readable-stream@>=1.0.33 <2.0.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { @@ -17123,7 +16925,7 @@ "dependencies": { "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { @@ -17436,7 +17238,7 @@ "dependencies": { "ansi-regex": { "version": "0.2.1", - "from": "ansi-regex@>=0.2.1 <0.3.0", + "from": "ansi-regex@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" } } @@ -17448,7 +17250,7 @@ "dependencies": { "ansi-regex": { "version": "0.2.1", - "from": "ansi-regex@>=0.2.1 <0.3.0", + "from": "ansi-regex@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" } } @@ -17560,7 +17362,7 @@ "dependencies": { "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.0 <2.0.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -17908,7 +17710,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -17924,7 +17726,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.2 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -18025,7 +17827,7 @@ "dependencies": { "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.0 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -18119,7 +17921,7 @@ }, "lodash": { "version": "2.4.2", - "from": "lodash@>=2.4.1 <2.5.0", + "from": "lodash@>=2.4.1 <3.0.0", "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz" }, "through2": { @@ -18170,7 +17972,7 @@ "dependencies": { "chalk": { "version": "0.5.1", - "from": "chalk@>=0.5.0 <0.6.0", + "from": "chalk@>=0.5.1 <0.6.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz", "dependencies": { "ansi-styles": { @@ -18190,7 +17992,7 @@ "dependencies": { "ansi-regex": { "version": "0.2.1", - "from": "ansi-regex@>=0.2.1 <0.3.0", + "from": "ansi-regex@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" } } @@ -18202,7 +18004,7 @@ "dependencies": { "ansi-regex": { "version": "0.2.1", - "from": "ansi-regex@>=0.2.1 <0.3.0", + "from": "ansi-regex@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz" } } @@ -18297,7 +18099,7 @@ }, "once": { "version": "1.3.3", - "from": "once@>=1.3.0 <1.4.0", + "from": "once@>=1.3.0 <2.0.0", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "dependencies": { "wrappy": { @@ -18359,7 +18161,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "ini": { @@ -18443,9 +18245,9 @@ "resolved": "https://registry.npmjs.org/request/-/request-2.42.0.tgz", "dependencies": { "bl": { - "version": "0.9.4", + "version": "0.9.5", "from": "bl@>=0.9.0 <0.10.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", @@ -18683,7 +18485,7 @@ "dependencies": { "gulp-util": { "version": "2.2.20", - "from": "gulp-util@>=2.2.10 <2.3.0", + "from": "gulp-util@>=2.2.14 <2.3.0", "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-2.2.20.tgz", "dependencies": { "chalk": { @@ -19180,7 +18982,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -19311,7 +19113,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { @@ -19486,9 +19288,9 @@ "resolved": "https://registry.npmjs.org/request/-/request-2.42.0.tgz", "dependencies": { "bl": { - "version": "0.9.4", + "version": "0.9.5", "from": "bl@>=0.9.0 <0.10.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", @@ -19728,12 +19530,12 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.1 <0.7.0", + "from": "through2@>=0.6.3 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.17 <1.1.0", + "from": "readable-stream@>=1.0.33-1 <1.1.0-0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -20290,7 +20092,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -20354,12 +20156,12 @@ }, "through2": { "version": "0.4.2", - "from": "through2@>=0.4.0 <0.5.0", + "from": "through2@>=0.4.1 <0.5.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -20502,7 +20304,7 @@ "dependencies": { "chalk": { "version": "1.1.1", - "from": "chalk@*", + "from": "chalk@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", "dependencies": { "ansi-styles": { @@ -20553,7 +20355,7 @@ "dependencies": { "concat-stream": { "version": "1.5.1", - "from": "concat-stream@>=1.4.6 <2.0.0", + "from": "concat-stream@>=1.4.1 <2.0.0", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.1.tgz", "dependencies": { "inherits": { @@ -20626,7 +20428,7 @@ }, "meow": { "version": "3.7.0", - "from": "meow@>=3.3.0 <4.0.0", + "from": "meow@>=3.1.0 <4.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", "dependencies": { "camelcase-keys": { @@ -20714,7 +20516,7 @@ "dependencies": { "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.0 <2.0.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -20921,7 +20723,7 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.1 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -20999,7 +20801,7 @@ "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.17 <1.1.0", + "from": "readable-stream@>=1.0.33-1 <1.1.0-0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -21057,12 +20859,12 @@ "dependencies": { "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.1 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -21157,7 +20959,7 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.1 <0.7.0", + "from": "through2@>=0.6.1 <1.0.0-0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -21310,7 +21112,7 @@ }, "escape-string-regexp": { "version": "1.0.4", - "from": "escape-string-regexp@>=1.0.2 <2.0.0", + "from": "escape-string-regexp@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz" }, "has-ansi": { @@ -21378,7 +21180,7 @@ "dependencies": { "escape-string-regexp": { "version": "1.0.4", - "from": "escape-string-regexp@>=1.0.0 <2.0.0", + "from": "escape-string-regexp@>=1.0.4 <2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz" } } @@ -21439,7 +21241,7 @@ "dependencies": { "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.0 <2.0.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -21781,12 +21583,12 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.2 <0.7.0", + "from": "through2@>=0.6.3 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.17 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -21967,28 +21769,9 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { - "version": "0.3.1", + "version": "0.3.2", "from": "extglob@>=0.3.1 <0.4.0", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", - "dependencies": { - "ansi-green": { - "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", - "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", - "dependencies": { - "ansi-wrap": { - "version": "0.1.0", - "from": "ansi-wrap@0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" - } - } - }, - "success-symbol": { - "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" - } - } + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz" }, "filename-regex": { "version": "2.0.0", @@ -22091,7 +21874,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "is-binary-path": { @@ -22500,16 +22283,16 @@ "from": "lodash.padright@^3.0.0", "resolved": "https://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.1.tgz" }, - "mime-db": { - "version": "1.19.0", - "from": "mime-db@~1.19.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.19.0.tgz" - }, "lodash.repeat": { "version": "3.0.1", "from": "lodash.repeat@^3.0.0", "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" }, + "mime-db": { + "version": "1.19.0", + "from": "mime-db@~1.19.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.19.0.tgz" + }, "mime-types": { "version": "2.1.7", "from": "mime-types@~2.1.7", @@ -22912,7 +22695,7 @@ }, "vinyl": { "version": "0.4.6", - "from": "vinyl@>=0.4.6 <0.5.0", + "from": "vinyl@>=0.4.3 <0.5.0", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", "dependencies": { "clone": { @@ -23119,7 +22902,7 @@ "dependencies": { "spdx-license-ids": { "version": "1.2.0", - "from": "spdx-license-ids@>=1.0.0 <2.0.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz" } } @@ -23706,13 +23489,13 @@ "resolved": "https://registry.npmjs.org/request/-/request-2.67.0.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz", "dependencies": { "readable-stream": { "version": "2.0.5", - "from": "readable-stream@>=2.0.0 <2.1.0", + "from": "readable-stream@>=2.0.5 <2.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.5.tgz", "dependencies": { "core-util-is": { @@ -23722,7 +23505,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <2.1.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "isarray": { @@ -23849,16 +23632,9 @@ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz" }, "dashdash": { - "version": "1.12.1", + "version": "1.12.2", "from": "dashdash@>=1.10.1 <2.0.0", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.12.1.tgz", - "dependencies": { - "assert-plus": { - "version": "0.1.5", - "from": "assert-plus@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz" - } - } + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.12.2.tgz" }, "jsbn": { "version": "0.1.0", @@ -23949,9 +23725,9 @@ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" }, "har-validator": { - "version": "2.0.5", + "version": "2.0.6", "from": "har-validator@>=2.0.2 <2.1.0", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.5.tgz", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", "dependencies": { "chalk": { "version": "1.1.1", @@ -24013,7 +23789,7 @@ }, "is-my-json-valid": { "version": "2.12.4", - "from": "is-my-json-valid@>=2.12.3 <3.0.0", + "from": "is-my-json-valid@>=2.12.4 <3.0.0", "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.4.tgz", "dependencies": { "generate-function": { @@ -24523,14 +24299,14 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <4.1.0", + "from": "xtend@>=4.0.0 <4.1.0-0", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -24655,7 +24431,7 @@ }, "source-map": { "version": "0.1.43", - "from": "source-map@>=0.1.33 <0.2.0", + "from": "source-map@>=0.1.7 <0.2.0", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", "dependencies": { "amdefine": { @@ -25309,7 +25085,7 @@ "dependencies": { "chalk": { "version": "1.1.1", - "from": "chalk@*", + "from": "chalk@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", "dependencies": { "ansi-styles": { @@ -25568,7 +25344,7 @@ "dependencies": { "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.3 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -26519,7 +26295,7 @@ }, "mkdirp": { "version": "0.5.1", - "from": "mkdirp@0.5.1", + "from": "mkdirp@>=0.5.1 <0.6.0", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "dependencies": { "minimist": { @@ -26626,7 +26402,7 @@ "dependencies": { "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -26949,7 +26725,7 @@ }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <2.1.0", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { @@ -27046,13 +26822,13 @@ "resolved": "https://registry.npmjs.org/request/-/request-2.67.0.tgz", "dependencies": { "bl": { - "version": "1.0.0", + "version": "1.0.1", "from": "bl@>=1.0.0 <1.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.1.tgz", "dependencies": { "readable-stream": { "version": "2.0.5", - "from": "readable-stream@>=2.0.0 <2.1.0", + "from": "readable-stream@>=2.0.5 <2.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.5.tgz", "dependencies": { "core-util-is": { @@ -27201,16 +26977,9 @@ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz" }, "dashdash": { - "version": "1.12.1", + "version": "1.12.2", "from": "dashdash@>=1.10.1 <2.0.0", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.12.1.tgz", - "dependencies": { - "assert-plus": { - "version": "0.1.5", - "from": "assert-plus@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz" - } - } + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.12.2.tgz" }, "jsbn": { "version": "0.1.0", @@ -27301,9 +27070,9 @@ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" }, "har-validator": { - "version": "2.0.5", + "version": "2.0.6", "from": "har-validator@>=2.0.2 <2.1.0", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.5.tgz", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", "dependencies": { "commander": { "version": "2.9.0", @@ -27319,7 +27088,7 @@ }, "is-my-json-valid": { "version": "2.12.4", - "from": "is-my-json-valid@>=2.12.3 <3.0.0", + "from": "is-my-json-valid@>=2.12.4 <3.0.0", "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.4.tgz", "dependencies": { "generate-function": { @@ -27511,6 +27280,18 @@ "from": "phantomjs-polyfill@0.0.1", "resolved": "https://registry.npmjs.org/phantomjs-polyfill/-/phantomjs-polyfill-0.0.1.tgz" }, + "promise": { + "version": "7.1.1", + "from": "promise@*", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.1.1.tgz", + "dependencies": { + "asap": { + "version": "2.0.3", + "from": "asap@>=2.0.3 <2.1.0", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.3.tgz" + } + } + }, "qunitjs": { "version": "1.20.0", "from": "qunitjs@1.20.0", @@ -27756,13 +27537,13 @@ "resolved": "https://registry.npmjs.org/vinyl-buffer/-/vinyl-buffer-1.0.0.tgz", "dependencies": { "bl": { - "version": "0.9.4", + "version": "0.9.5", "from": "bl@>=0.9.1 <0.10.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "readable-stream@>=1.0.33-1 <1.1.0-0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { @@ -27791,7 +27572,7 @@ }, "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.1 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { @@ -27837,7 +27618,7 @@ "dependencies": { "through2": { "version": "0.6.5", - "from": "through2@>=0.6.5 <0.7.0", + "from": "through2@>=0.6.3 <0.7.0", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "dependencies": { "readable-stream": { diff --git a/package.json b/package.json index 8b7cd684..547c564a 100644 --- a/package.json +++ b/package.json @@ -81,6 +81,7 @@ "node-sass": "3.3.3", "open": "0.0.5", "phantomjs-polyfill": "0.0.1", + "promise": "7.1.1", "qunitjs": "1.20.0", "require-dir": "0.3.0", "require-new": "1.0.2", diff --git a/test/imageversions/tests.js b/test/imageversions/tests.js index a6403c75..d660b409 100644 --- a/test/imageversions/tests.js +++ b/test/imageversions/tests.js @@ -23,13 +23,13 @@ module.exports = { // Calling the task function task.task(testTaskConfig, done); + + // }, // Using task name as key - default: function() { - helpers.compareResultFilesToExpected('imageversions', { - asBuffer: true - }); + default: function(done) { + helpers.compareImagesToExpected('imageversions', done); }, after: function(done) {