{"maintainers":[{"email":"ericbombhax@gmail.com","name":"anonymous"},{"email":"blaine.bublitz@gmail.com","name":"anonymous"}],"dist-tags":{"latest":"3.0.8"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"description":"Utility functions for gulp plugins","readme":"# gulp-util [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Dependency Status][depstat-image]][depstat-url]\n\n## Information\n\n<table>\n<tr> \n<td>Package</td><td>gulp-util</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Utility functions for gulp plugins</td>\n</tr>\n<tr>\n<td>Node Version</td>\n<td>>= 0.10</td>\n</tr>\n</table>\n\n## Usage\n\n```javascript\nvar gutil = require('gulp-util');\n\ngutil.log('stuff happened', 'Really it did', gutil.colors.magenta('123'));\n\ngutil.replaceExtension('file.coffee', '.js'); // file.js\n\nvar opt = {\n  name: 'todd',\n  file: someGulpFile\n};\ngutil.template('test <%= name %> <%= file.path %>', opt) // test todd /js/hi.js\n```\n\n### log(msg...)\n\nLogs stuff. Already prefixed with [gulp] and all that. If you pass in multiple arguments it will join them by a space.\n\nThe default gulp coloring using gutil.colors.<color>:\n```\nvalues (files, module names, etc.) = cyan\nnumbers (times, counts, etc) = magenta\n```\n\n### colors\n\nIs an instance of [chalk](https://github.com/sindresorhus/chalk).\n\n### replaceExtension(path, newExtension)\n\nReplaces a file extension in a path. Returns the new path.\n\n### isStream(obj)\n\nReturns true or false if an object is a stream.\n\n### isBuffer(obj)\n\nReturns true or false if an object is a Buffer.\n\n### template(string[, data])\n\nThis is a lodash.template function wrapper. You must pass in a valid gulp file object so it is available to the user or it will error. You can not configure any of the delimiters. Look at the [lodash docs](http://lodash.com/docs#template) for more info.\n\n## new File(obj)\n\nThis is just [vinyl](https://github.com/wearefractal/vinyl)\n\n```javascript\nvar file = new gutil.File({\n  base: path.join(__dirname, './fixtures/'),\n  cwd: __dirname,\n  path: path.join(__dirname, './fixtures/test.coffee')\n});\n```\n\n## noop()\n\nReturns a stream that does nothing but pass data straight through.\n\n```javascript\n// gulp should be called like this :\n// $ gulp --type production\ngulp.task('scripts', function() {\n  gulp.src('src/**/*.js')\n    .pipe(concat('script.js'))\n    .pipe(gutil.env.type === 'production' ? uglify() : gutil.noop())\n    .pipe(gulp.dest('dist/'));\n});\n```\n\n## buffer(cb)\n\nThis is similar to es.wait but instead of buffering text into one string it buffers anything into an array (so very useful for file objects).\n\nReturns a stream that can be piped to.\n\nThe stream will emit one data event after the stream piped to it has ended. The data will be the same array passed to the callback.\n\nCallback is optional and receives two arguments: error and data\n\n```javascript\ngulp.src('stuff/*.js')\n  .pipe(gutil.buffer(function(err, files) {\n  \n  }));\n```\n\n## new PluginError(pluginName, message[, options])\n\n- pluginName should be the module name of your plugin\n- message can be a string or an existing error\n- By default the stack will not be shown. Set `options.showStack` to true if you think the stack is important for your error.\n- If you pass an error in as the message the stack will be pulled from that, otherwise one will be created.\n- Note that if you pass in a custom stack string you need to include the message along with that.\n- Error properties will be included in `err.toString()`. Can be omitted by including `{showProperties: false}` in the options.\n\nThese are all acceptable forms of instantiation:\n\n```javascript\nvar err = new gutil.PluginError('test', {\n  message: 'something broke'\n});\n\nvar err = new gutil.PluginError({\n  plugin: 'test',\n  message: 'something broke'\n});\n\nvar err = new gutil.PluginError('test', 'something broke');\n\nvar err = new gutil.PluginError('test', 'something broke', {showStack: true});\n\nvar existingError = new Error('OMG');\nvar err = new gutil.PluginError('test', existingError, {showStack: true});\n```\n\n[npm-url]: https://www.npmjs.com/package/gulp-util\n[npm-image]: https://badge.fury.io/js/gulp-util.svg\n[travis-url]: https://travis-ci.org/gulpjs/gulp-util\n[travis-image]: https://img.shields.io/travis/gulpjs/gulp-util.svg?branch=master\n[coveralls-url]: https://coveralls.io/r/gulpjs/gulp-util\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/gulp-util.svg\n[depstat-url]: https://david-dm.org/gulpjs/gulp-util\n[depstat-image]: https://david-dm.org/gulpjs/gulp-util.svg\n","repository":{"type":"git","url":"git+https://github.com/gulpjs/gulp-util.git"},"users":{"pid":true,"growdigital":true,"grandadevans":true,"tunnckocore":true,"davidchase":true,"rrbiten":true,"dukewan":true,"furier":true,"delch":true,"jackcompton":true,"apfelbox":true,"erikfloresq":true,"ash400e":true,"pingjiang":true,"phoenix-xsy":true,"zhangyaochun":true,"alvint":true,"stooboo":true,"h4des":true,"fleshgrinder":true,"finico":true,"ericwbailey":true,"wildwest_kazya":true,"rafaell-lycan":true,"zoxon":true,"pythondave":true,"sergeif":true,"kulakowka":true,"joaocunha":true,"stefanb":true,"owanturist":true,"marshallformula":true,"seantunwin":true,"cameronjroe":true,"borjes":true,"goodseller":true,"simplyianm":true,"devalias":true,"jerkovicl":true,"baskaal":true,"mmercan":true,"fyddaben":true,"itonyyo":true,"n370":true,"evanj0hnson":true,"ghsamm":true,"wangnan0610":true,"isyara":true,"tobiasalthoff":true,"samhou1988":true,"musamanyama":true,"beefchimi":true,"tylersclark":true,"tonydieu":true,"leodutra":true,"jabbrwcky":true,"gableroux":true,"tzsiga":true,"fkamani":true,"aad":true,"thoroc":true,"wangfei":true,"hsrob":true,"tinyfly":true,"etsit":true,"leonardorb":true,"temoto-kun":true,"modao":true,"princetoad":true,"t1st3":true,"ifeature":true,"jyounce":true,"fmoliveira":true,"aesinv":true,"webtobesocial":true,"krabello":true,"jalcine":true,"kparkov":true,"paroczi":true,"crazyjingling":true,"drew.brokke":true,"revirth":true,"marcelohmdias":true,"vwal":true,"sadsenpai":true,"runningtalus":true,"jclo":true,"andamira":true,"antixrist":true,"gor0n":true,"flayks":true,"viweei":true,"npmmax":true,"boluge":true,"superwf":true,"mehrdaad":true,"arttse":true,"keberox":true,"moxiaohe":true,"a3.ivanenko":true,"bian17888":true,"bebaps":true,"neftedollar":true,"bpolonia":true,"cfleschhut":true,"davidazullo":true,"gskema":true,"devonwen":true,"yrocq":true,"usedf295":true,"brpaz":true,"kontrax":true,"narven":true,"mattweb":true,"kirillunlimited":true,"joannerpena":true,"muzhen":true,"gerst20051":true,"vividyellow4":true,"ijunlin":true,"sternelee":true,"brandonb927":true,"fdeneux":true,"fanus":true,"dnik":true,"shaddyhm":true,"ezeikel":true,"davidnyhuis":true,"tonyljl526":true,"king.v":true,"rubiadias":true,"irish":true,"sam16":true,"monjer":true,"tyus512":true,"jimco":true,"gmarciani":true,"rplittle":true,"arcrammer":true,"malitov":true,"abdihaikal":true,"raisiqueira":true,"deveroalex":true,"alexdevero":true,"dennisli87":true,"bbrown1983":true,"quality520":true,"manux":true,"hongz1125":true,"tedyhy":true,"tdreitz":true,"rubychen":true,"krice-at-iq":true,"tdmalone":true,"kermani":true,"cognivator":true,"b4z81":true,"fstgeorge":true,"sure2darling":true,"armikael":true,"tmurngon":true,"morogasper":true,"vishwasc":true,"areasis":true,"otravers":true,"alanho":true,"jetbug123":true,"versusbassz":true,"yanlaichang":true,"maxwang":true,"smokinhuzi":true,"nml":true,"mattboyd":true,"errec":true,"nanxing":true,"kodekracker":true,"tcrowe":true,"vdsabev":true,"iuykza":true,"suemcnab":true,"mattattaque":true,"george2411":true,"olliejt":true,"yikuo":true,"stone-jin":true,"phritolay":true,"erikvold":true,"johnny_kim":true,"chinawolf_wyp":true,"zacharyjbaldwin":true,"tracymuzi":true,"xianghongai":true,"serge-nikitin":true,"patta":true,"valenwave":true,"heartnett":true,"lufvilla":true,"wvlvik":true,"kwesi":true,"jrobinsonc":true,"elshahat":true,"baraunaluciano":true,"suryasaripalli":true,"kasumi":true,"krawster":true,"yangzw":true,"kiinlam":true,"ccd3v":true,"danielheene":true,"purunumi":true,"demon-php":true,"kostya.fokin":true,"th3mon":true,"flynntsc":true,"helcat":true,"danfoy":true,"zhenguo.zhao":true,"gormus":true},"bugs":{"url":"https://github.com/gulpjs/gulp-util/issues"},"license":"MIT","versions":{"0.0.1":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"0.0.1","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@0.0.1","dist":{"shasum":"f144175d8bfd6018517385c49cde9841556637a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-0.0.1.tgz","integrity":"sha512-TQNY3UzOo0WSL1YbDOEolsOFXro3A9mbjZuxsWV26tfQ6P7jAXkoeKsjAl+EnxEENRbXSQoT5tiqThleTmdl/Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDKFZl/+aUAM0dVk7iOZMevTUnj31e8tmWDQYwh+8UNZgIgP3qzlqZXaVNfxR0jl6SYvE663Td9dpC71IznUaeGxPA="}]},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"1.0.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"1.0.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@1.0.0","dist":{"shasum":"1d98f5613e62dbb714226e55ea91fe95e3f88022","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-1.0.0.tgz","integrity":"sha512-KKMHxoKELfMn96owh4h+CZW/Uj9K6qcsplrGGcgpE1/WDgSbqGH272TcUKdO4h4Bu8j+umwfuzgTtpjzLDC1ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6jxSr/2wQIceskB9JpPLum/3BZXSt0l++Dxaoal4YNAIhAMZ1jRO9QJHR5AeVSxTod5qQEyL3WMGeoZY1DBmG2k6S"}]},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"1.1.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"1.1.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@1.1.0","dist":{"shasum":"df13485050c7d903f3c5e7ec036cd32605f01034","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-1.1.0.tgz","integrity":"sha512-JaFJV2YJ3iRNhjnT9QaiLxw3lhtKQihOkQuuhdEr7OpLF5WmsnzLtWbiqQVggH0bkVzgK71/uQWv6DMJwFr/fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH32GrBtgR7IFg83piMSrVA1/F3qJuHrT8a4JFVwK5iCAiEAlAxouchSeU31LZyFx/fnOcxoVnEySjvvxKbuEDqMJIM="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"1.1.1":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"1.1.1","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@1.1.1","dist":{"shasum":"17584b6dbbaeac2a5c93819f5a30baca42d27fab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-1.1.1.tgz","integrity":"sha512-21Y4lt8z+C1TAVv49Io7p5068Sz453EJMLjv+5ycS6pq72MayUHwbsGDM1ysNPJMLsPpub8iy2MH/IARRJkyYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHJ2yuLJUqQN7faTDjK3LiR9V0ZJhRgDXOafw8LGS3V4AiAFLHb70xJCdNVEcYI+L246n05VaK+9gE6D/R80YrXbDA=="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"1.2.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"1.2.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@1.2.0","dist":{"shasum":"3933a117e174a03f9e6f146f720ed7c6d3c4f200","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-1.2.0.tgz","integrity":"sha512-7RnGVNPv1MhYSTV+85T3g8x5qdqpPUL5KVRvvrnrYqzkFnqqvPSEheKOJ/e8+JPVyYpFnHqWfJbZmhZi9p44Gg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHg+L7Z1x6L+PsdFD+G6GQ5hGtucWIAEv/TAgQnUqjZcAiEAxAUDH4cJKfGb3HQfwlWdsTZXLYCcOul9E1fLR+Z+cxg="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"1.3.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"1.3.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@1.3.0","dist":{"shasum":"94bd753a398d619e37719bd99e1cb2007a655afc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-1.3.0.tgz","integrity":"sha512-fucy6onFleCZGO5yFZ5CbiOx5gP1AbCY94H2q66aMM86rsVNGNcpV9cmigNHwG1lCBZlCpzOeYHIi9frpgx8lQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpNvKMmcPyZE93ErKvm1Ld1CSPZ2oB/iXPCW/G238zVgIhAJbtPboBe7jjCNftQgAAZM3XXudO3O7BJv6+Fa9G/dyk"}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.0.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.0.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.0.0","dist":{"shasum":"b023d964ca053550543c9d61349a268c9e4b7c93","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.0.0.tgz","integrity":"sha512-Eyk9qyQjhOLr85AJVAxFtJ84e7mu+GVDdXq8qAflygUkdNffR8XVb6mIL3s/lyiGlSAnxEJnxSDKkzYPfMpL7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICpO9OxLK678qPiRguZBFwbC7SFYE32xkjuMrK/V8rVuAiEAjaqWRkxj6ab0jH2x3jY2HlPBqf+kpcKkFiDyhsVwPkw="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.1.1":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.1.1","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.1.1","dist":{"shasum":"d600901e7ea449f11a2d5cef62f80e15166ac0aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.1.1.tgz","integrity":"sha512-4sM7twqyH/PPP0h/nvcigvXNuRDEsXQ4iSpvnFHrGN9NQ6nExApXhwehtD+agVHO4e2mh3U485t7gNB7gHncXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0qQ22P4FrVez6SLF59jWnRmd1o2daCCjA+v86g2GjfgIhAI2/O+p7cQyiwxgV3M4epQamynJF6uMThPx+PDw3k9Lu"}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.1.2":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.1.2","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.1.2","dist":{"shasum":"0ac1e3094c2933922dd1a2b1229618e35793b678","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.1.2.tgz","integrity":"sha512-Kp6f2dZh7fIt0ZP4lWgq8QuogOHpc2l9PZR+JbUg3kRckKJ8xAuSbppsAqy1AsucxgilaR/R+LguNW8LZdk1yA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2Hw7XPLYGq42j5M7CYUyFJ8NuUT2xPEiGjqSJB7DdcQIgIqJIDYiZC/luBSb6LkIIOyi0WyiMYkdVc7T6Jx2DSkg="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.1.3":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.1.3","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.3.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.1.3","dist":{"shasum":"765ba47b5a824ea341dd2f543ca4a339a442e454","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.1.3.tgz","integrity":"sha512-0tHBGogXkp14zAZEAL1qKbVG/xfXDrGUGcXhG6w5e5NZ7inqRKXEV7UaImBYgdvF/MJMU4VIKrk4yUR2wVJllQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKGOjUlDaru8n2BdG+uQx1X8KIJT7ewtAC2W57f7we3gIge45wJl+0SRE9AHYziLflFWYC3e8QBTsk9splT4B7aQk="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.1.4":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.1.4","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.1.4","dist":{"shasum":"c848b2667a10e1946d0ae550ddf93ea6b320b772","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.1.4.tgz","integrity":"sha512-E6p9I8d9YZhPg8YUEe2r26ULz6lAnO6jpgknBKbvyQYvWZNLpFbFspyPmWpNfvilhYz+1qEPpx7HGcG6bU2Zcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg6QJ8MaIa10hP9oLDDkg8QZyptOk5sr5MjVARmHKYWgIgdmwFKFZVBZSl7gwQkPG+TOvmVf7G0Y6NPkFPVr2VeYE="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.1.0"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.0","dist":{"shasum":"31baefe69ceef348a65828c6a4b073f34dce6799","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.0.tgz","integrity":"sha512-HOrHTHt49Q+VjZFn2h18WKOtLU5H9oe1Af+fhgjGszduu/JRJGWTj1elEdVio2fK96YqLz48ENg80PcKLS6uUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwBGM8GBmPHowwSNaa5/ZXuUKYrNMS+LHH1EYjo7hLXgIhAMpq8nyg6NoAMqr0XKce5oN/3EC7xYLMYo1TObfaO62G"}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.1":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.1","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.1.0"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.1","dist":{"shasum":"75962a3751c39e2cae52b4d03b0b227b91513d69","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.1.tgz","integrity":"sha512-QfaF49uLEJPLrxJmjoc41Fy76dWZoBNvva+LoY91+JW7TK/OlsbB9GISLruFR6xgC9gFsjxnVrCRviAlJXfkIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIChl60ovVscE5kLQnZBGTkZtA+J4TqELbs4uBYz3FVolAiEAjXDJhGO+clr7WAoYixZ2gc7xH970Acgnx85EmT0SmAA="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.2":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.2","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.2","dist":{"shasum":"e2b73b7bc56e8cf5986f574178ab3dbbe7151d85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.2.tgz","integrity":"sha512-7EdFMsU0DwPb9NTTTWOrzI0H0Etk/9gpW1kKSfk2jpmGRdbXzdAxJDdqXi5s7Jte9OirZGbDnDnTiM+hODemPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDH+jZflSBzEPN6F2TGA8NEvwkLLJI2Ts01SLzK1layNwIhALhckA/gymqAzNlRx6s+l6fzQhsTlLJlHTRUilCUzDyO"}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.3":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.3","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","event-stream":"~3.0.20"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.3","dist":{"shasum":"584c9410cac827f6c6129a4a05fc14148ad2c9b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.3.tgz","integrity":"sha512-/B8RUbs4aLZOpQrs9SWBftqUuIrqE5mG5tqH8lcNhTVOWhCx1l6kPRFk0Lo/XOnYs8X6hh/LNB3MXAqKKOFuvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH8A7qOoK4+kMYNrgq7aTN5+f9pfaB453TS9ZH8qv1oCAiEAm0OA9ETgOJoSLrIiMkD4QydJIkw3XI4UiM40eXnIyBw="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.5":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.5","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","event-stream":"~3.0.20"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.5","dist":{"shasum":"57adc3a26b39b65bd47e25323677db0f1b9b8bc9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.5.tgz","integrity":"sha512-HyqTJqnuuOBuWoNjpTnfpM0+57qtKzNiFdy9W8PyH964l0UK7rgMvFh53Sn//WwoKxXHfj36i6ZurExD7l+ujg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEoEPI3GL9Suc/HuJChPiutBT8WpNPLD8TaDBKTsQbwvAiEA2welUxL/1GltW9V4JiKb7P+iXi0flXhr5tibVj6Yb2c="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.6":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.6","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","event-stream":"~3.0.20","dateformat":"~1.0.7-1.2.3"},"devDependencies":{"mocha":"*","should":"*","event-stream":"*","lodash.templatesettings":"~2.4.1"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.6","dist":{"shasum":"422e12fc7ccbde4c018dad3db227f6c07a8bde72","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.6.tgz","integrity":"sha512-sWVmgvuZgKe85TcgZYVdXVBXWkMaf4W2CxmOF8Xbh+VkgsAJl1k+qDl1NF2rU+vAosTqx8ww/FnA2cUdHkKtYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDe10lJ1B0I6/Zmh9K5FNqfAMzxOa8je8Yfr3fYE2aL1gIgN3aLlVlNwyFFCC4ikQPk5v3QXQ4mK1QclOD5KikZ4oU="}]},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.7":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.7","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","dateformat":"~1.0.7-1.2.3"},"devDependencies":{"mocha":"*","should":"*","through":"*","lodash.templatesettings":"~2.4.1","event-stream":"*"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.7","dist":{"shasum":"5eb9fc773befa615740a4819f6eee639f66ae8f4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.7.tgz","integrity":"sha512-bBObKJUwjtDN9TKx0beKCLcobVgX6NqjK9Wt87u38UuO/dqlDbJsTJwf6lTww95ZZqr7PF0eKR2EfczM8QP2fg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF/EkY5qGvDZO+QiGqwH3fwUItk6bpiqM7HwufOO9d8aAiEA1KjXh29SZltskjqq10VpYP1yoKiVnFGsqx+GA+AmIjg="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.8":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.8","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","through":"~2.3.4","dateformat":"~1.0.7-1.2.3"},"devDependencies":{"mocha":"*","should":"*","lodash.templatesettings":"~2.4.1","event-stream":"*"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.8","dist":{"shasum":"0a0d8491cc95990382e05de191cac5f153b71d92","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.8.tgz","integrity":"sha512-uJY9PfzkEn4dUVp2J5ZZD2B6LTE8oCpzKixZbCL34r5Br4oW+b5HNG9ZCycGHCCafyxyUL61xdcC4kfSl2/Rxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICUhv5GUlzA2hbDfXl22fW8Rf+DeZVlEbmKPCgf7TvZyAiACFYR7mQ3+098QH+9vBJmLXkUzln96pGSNoVlyHdrxtQ=="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.9":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.9","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","through":"~2.3.4","dateformat":"~1.0.7-1.2.3","stream-combiner":"0.0.4"},"devDependencies":{"mocha":"*","should":"*","lodash.templatesettings":"~2.4.1","event-stream":"~3.0.20"},"scripts":{"test":"mocha --reporter spec"},"engines":{"node":">= 0.9.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.9","dist":{"shasum":"70ad04259dba98b3d93132ae160a3a0537f9d1e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.9.tgz","integrity":"sha512-wDUnmdS5LHLNm6heOM+aj91/f/VwGR9wlH4CYedLX/lK/cBpsDPrQoycKHS6lgtn5p1taKuIA0+5HfYvOoDmdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICY3u2YzsyGMje7buQZnD/eRkm6Ts+wLDaQekhArronoAiEAvx9UOQhukCQBUmoKteLMSZ9enDS6yAATdfQkPO3ofC8="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.10":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.10","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","through":"~2.3.4","dateformat":"~1.0.7-1.2.3","stream-combiner":"0.0.4"},"devDependencies":{"mocha":"~1.17.0","should":"~2.1.1","mocha-lcov-reporter":"0.0.1","coveralls":"~2.6.1","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","lodash.templatesettings":"~2.4.1","event-stream":"~3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.10","dist":{"shasum":"73bc91e2bf05547852d167630c5f6700f5522741","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.10.tgz","integrity":"sha512-vdjiXr3XGSO49MxAid+9O67JAd74+kiE/19sUh0BO5yojvaDGrOvMkfARuisI8ohuXyligMD/9Okhs4OfXKDPA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE90jZmcPaO0N0c9VG5vIm6aKRGZDGqwYi5zcpILQOhMAiBpiD9Kb8hz5fikPDUPpQV8BDXFjYHOTJLzqsmDSU0TPQ=="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.11":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.11","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","through2":"~0.4.0","dateformat":"~1.0.7-1.2.3","multipipe":"~0.0.1"},"devDependencies":{"mocha":"~1.17.0","should":"~2.1.1","mocha-lcov-reporter":"0.0.1","coveralls":"~2.6.1","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","lodash.templatesettings":"~2.4.1","event-stream":"~3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.11","dist":{"shasum":"e10a946a02cc39faffc91e48f07c55d0f00a9be0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.11.tgz","integrity":"sha512-wbAkZujryp+cCi/9LTBuk4PfyaDQBsHFKz21FUHPQAdNUYNIpQVY0qjp7qYM0GKFvZ3R1uzmLPnHk0H/JxR3iA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCtcFTK+EuuwxPDk30K88vufShkx4D/SABny0SLDfxMbgIgeqEh2i64RlU9kzp8RHFKDzvk/ZG8Yp30ZpHab2pojio="}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.12":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.12","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","through2":"~0.4.0","dateformat":"~1.0.7-1.2.3","multipipe":"~0.0.1"},"devDependencies":{"mocha":"~1.17.0","should":"~2.1.1","mocha-lcov-reporter":"0.0.1","coveralls":"~2.6.1","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","lodash.templatesettings":"~2.4.1","event-stream":"~3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.12","dist":{"shasum":"89e36e0a793f6d0efbc5f47958c5478ca780a35f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.12.tgz","integrity":"sha512-YPLnz1/SQ4ymzMv66rOxbnaEzZrpWqqBtSpeNftP1EMBN9CPNN/+a1DnwlfJwFzSD517THkkWX1YD5s6D97SCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmMNXeKmTyfb7trFjuAZrjckP1vTuH3qyAke+CBjxBhAIhAKuvnU6j6Opld+k8wyx7HsTA96L5fyPNecRgVVMXwt8Q"}]},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.13":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.13","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","optimist":"~0.6.0","vinyl":"~0.2.1","through2":"~0.4.0","dateformat":"~1.0.7-1.2.3","multipipe":"~0.0.1"},"devDependencies":{"mocha":"~1.17.0","should":"~2.1.1","mocha-lcov-reporter":"0.0.1","coveralls":"~2.6.1","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","lodash.templatesettings":"~2.4.1","event-stream":"~3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.13","dist":{"shasum":"456fb160da4ba4e957f94fb31856c06642f15455","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.13.tgz","integrity":"sha512-qL895XHRQTmmsZbH3zQp23agfA+q2Z4ofkWVPme8gcJ35HOCnvIHuUtgzpQ+ZrUXUWIrgp99c41H25EbiSHTPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIElqE6gVSmsQCvFbbfw14XacS+JLBNxms0bkTSj0+996AiEAk42EEAPTTtKCWcMC4LO9xedFj4ZK0iJigMbcacj6vIQ="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"directories":{},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5"},"2.2.14":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.14","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"~0.4.0","lodash.template":"~2.4.1","lodash._reinterpolate":"~2.4.1","vinyl":"~0.2.1","through2":"~0.4.0","dateformat":"~1.0.7-1.2.3","multipipe":"~0.0.1","minimist":"~0.0.5"},"devDependencies":{"mocha":"~1.17.0","should":"~3.1.2","mocha-lcov-reporter":"~0.0.1","coveralls":"~2.7.0","istanbul":"~0.2.3","rimraf":"~2.2.5","jshint":"~2.4.1","buffer-equal":"0.0.0","lodash.templatesettings":"~2.4.1","event-stream":"~3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.14","dist":{"shasum":"705a44e3624a7e44f5fdf70a3e91f3087ff83ba1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.14.tgz","integrity":"sha512-Sqj3X6EptApjO4wCp60sqFUt0j5vUCFRU+UIwL97xlVXyZVSPPRX9P4X/3/Kd7nQwBDgB/UR3XzBnZo4HKfIIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICvq7tXifDv70w+GFQPo1c7rgvbU95Oxlh0IjsGp03osAiBW/CJf2n4otH1Nhd59mRlXAsthqwzc+W/CMz/1YIgufw=="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"2.2.15":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.15","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.4.0","lodash.template":"^2.4.1","lodash._reinterpolate":"^2.4.1","vinyl":"^0.2.1","through2":"^0.4.0","dateformat":"^1.0.7-1.2.3","multipipe":"^0.1.0","minimist":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"f097f0ba280669f3697a4eb1f704b59db35e99fd","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.15","_shasum":"1f47acf5d480801cd4fd50ed8e24b83f29885fc4","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"1f47acf5d480801cd4fd50ed8e24b83f29885fc4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.15.tgz","integrity":"sha512-UMO3tTYjMwUqJk26aSKcpXQsGa6ailBFSlGX8BYkn4jcZh8oDSTDLE/50dV2PD+kabmMR5EYIYOEgXmD+xMOow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+bS8CC0+YxHxRxlR6WsOLno2/0awvchtjkNycKMeS5gIgckMN721zruYQ2xczoHuz48/jYpvNfhHeIBEonhZzwwU="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"2.2.16":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.16","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.4.0","lodash.template":"^2.4.1","lodash._reinterpolate":"^2.4.1","vinyl":"^0.2.1","through2":"^0.4.0","dateformat":"^1.0.7-1.2.3","multipipe":"^0.1.0","minimist":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"a4f941ec92eb7fd3224cd95b9f2dab617cfa1b20","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.16","_shasum":"88a59cac4441362c41a516567302c99fdd842bfd","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"88a59cac4441362c41a516567302c99fdd842bfd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.16.tgz","integrity":"sha512-79O2HJo+X07VCOC7Mr6TYWTTw/S/tIS0mhwvquje5bU7x0c3jAExXiVPAloDRXQICgE92oC2WXy7JR9b8kcM8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkXIx4swl2zi30Nj94CZm4j4QLVCuhhlc7UAU1ncjKgQIhAOT6ytc0dPsTkscy5SOUwq86x5ceXEQB+JXcQ3sayabw"}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"2.2.17":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.17","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.4.0","lodash.template":"^2.4.1","lodash._reinterpolate":"^2.4.1","vinyl":"^0.2.1","through2":"^0.4.0","dateformat":"^1.0.7-1.2.3","multipipe":"^0.1.0","minimist":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"bab12a4226df3f0cc81d2044bd523a022eab0000","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.17","_shasum":"68e133d0bb38a9f21e6f5cc5fdb90ba04fedc800","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"68e133d0bb38a9f21e6f5cc5fdb90ba04fedc800","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.17.tgz","integrity":"sha512-R/o419wGHVMeZF6uhU9zB4zY5t9Q9lxwN3XkhGxTwXadaa0yywMwj5LVb499Kszj0LCXWERPmbmDTn88yTSe6w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGDIn4mRTjj+iyQTliy+MndAPqtGXQ1T2UIgBMZGJbi8AiEAnyS54C7BQpoCoK/OzBh6tG7AbMV26wXn43BNIdM6ypY="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"2.2.18":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.18","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.4.0","lodash.template":"^2.4.1","lodash._reinterpolate":"^2.4.1","vinyl":"^0.2.1","through2":"^0.5.0","dateformat":"^1.0.7-1.2.3","multipipe":"^0.1.0","minimist":"^0.2.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"003f213edead307edfb61a8e4601af7c15e6673d","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.18","_shasum":"c5b9136b44778eae8ba4412046b5cbc8ea2018dd","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"c5b9136b44778eae8ba4412046b5cbc8ea2018dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.18.tgz","integrity":"sha512-bj9BYGMoPMBEtecCpebLRCng4rzEtOS4htYajqygGaEcBOqENr3ReH7aA5byHqcqJA320R74nEHBYVgGzbxBjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnFad0Oe1c7fCDcz6tQnFh9PT7Szq2hvXXRZctftvV+QIgQvsXYpYZTUfUVx5S/XhL+ikE9jcd6h1TDmhJR9UxO3I="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"2.2.19":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.19","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.4.0","lodash.template":"^2.4.1","lodash._reinterpolate":"^2.4.1","vinyl":"^0.2.1","through2":"^0.5.0","dateformat":"^1.0.7-1.2.3","multipipe":"^0.1.0","minimist":"^0.2.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"4c9414181bff4878c8afe25d1c18ba95678f80ec","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.19","_shasum":"1eca14fb49be2a77e390fb9f457770a3cff7d35f","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"1eca14fb49be2a77e390fb9f457770a3cff7d35f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.19.tgz","integrity":"sha512-6dCUs9oUVKeCZAy79Cutnr8N1ar1PmEgXPfBDvKxbnJ3BBJ1ZRT5lfMcgvJ37a8ebivOHdrESyaAROzrYJSucg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG+gzVKomc2JEW76G4PbqQ2L6G/ZoiMixzvSNpIXaKoiAiEAtx7TH6ngIiAbI+1cUDMiBbBX/dnaxHy2pQ6rOVUbqC0="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"2.2.20":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"2.2.20","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.5.0","dateformat":"^1.0.7-1.2.3","lodash._reinterpolate":"^2.4.1","lodash.template":"^2.4.1","minimist":"^0.2.0","multipipe":"^0.1.0","through2":"^0.5.0","vinyl":"^0.2.1"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"a44e450cfbe65fa4902b198bead4c65722cced0a","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@2.2.20","_shasum":"d7146e5728910bd8f047a6b0b1e549bc22dbd64c","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"d7146e5728910bd8f047a6b0b1e549bc22dbd64c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-2.2.20.tgz","integrity":"sha512-9rtv4sj9EtCWYGD15HQQvWtRBtU9g1t0+w29tphetHxjxEAuBKQJkhGqvlLkHEtUjEgoqIpsVwPKU1yMZAa+wA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHB84OtfrmggrXIndFxfhi7+SgQcvnEV8/Kp5bs4vFL2AiAJ3AG1wUbRl3OuBgzXJUj4hNr61H/BGCCSZa0ftY+m9Q=="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.0":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.0","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.5.0","dateformat":"^1.0.7-1.2.3","lodash":"^2.4.1","lodash._reinterpolate":"^2.4.1","lodash.template":"^2.4.1","minimist":"^0.2.0","multipipe":"^0.1.0","through2":"^0.5.0","vinyl":"^0.2.1"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"c5e8da4712471f1e45aa77aef5e2b75dfdfe0878","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@3.0.0","_shasum":"6feedc47d6972823bace9947fc5f46bd8a3466e7","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"6feedc47d6972823bace9947fc5f46bd8a3466e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.0.tgz","integrity":"sha512-QIamsf01Yx41qoXO/BrKFyg+FfF9sGANsasb3VPruC6HrcCUMPUIRcCdBxXxig41b8tsqutR3tB049X4FdWFGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH7LWdwZX7BKEFhTBho2jG6Sv4RWde+LIHr6h4jAnrm9AiEAoP8gdP+wE4PQ22LMWfyc/7dnZSFexXrFsy7CcDfw/6o="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.1":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.1","homepage":"http://github.com/wearefractal/gulp-util","repository":{"type":"git","url":"git://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"chalk":"^0.5.0","dateformat":"^1.0.7-1.2.3","lodash":"^2.4.1","lodash._reinterpolate":"^2.4.1","lodash.template":"^2.4.1","minimist":"^1.1.0","multipipe":"^0.1.0","through2":"^0.6.1","vinyl":"^0.4.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"^0.0.1","coveralls":"^2.7.0","istanbul":"^0.3.0","rimraf":"^2.2.5","jshint":"^2.4.1","buffer-equal":"~0.0.1","lodash.templatesettings":"^2.4.1","event-stream":"^3.1.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"f6336c8ac9f52930b36ad14002cf267c06f801df","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"_id":"gulp-util@3.0.1","_shasum":"8214894d05c2bb6cc7f5544918a51ddf88180f00","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"8214894d05c2bb6cc7f5544918a51ddf88180f00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.1.tgz","integrity":"sha512-z3IG6Tqjxy1CJnH6PxO57BgLQZoOUxThSTpsABOx4uc6D2ntOrvZJknlySQX+LyiE0CwjMfvoVRcDuK7iy1+9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFaSD2ZAq7bpQ2Z0TY1R9Kl0TLJRLH4OUAlSpugWSwceAiBmuEORN1ImtvYhHr953GZesPWQFG50jekXEsdjY1NNHw=="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.2":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.2","repository":{"type":"git","url":"https://github.com/wearefractal/gulp-util"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib","LECENSE"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^0.5.1","dateformat":"^1.0.11","lodash._reinterpolate":"^2.4.1","lodash.template":"^2.4.1","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^2.0.0","replace-ext":"0.0.1","through2":"^0.6.3","vinyl":"^0.4.3"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^2.4.1","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^4.4.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"d01b9658a28a808352a008b8baec10ad025f7322","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"homepage":"https://github.com/wearefractal/gulp-util","_id":"gulp-util@3.0.2","_shasum":"7f1ed0be6d8c1e6563d2105c27217c2c9b744883","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"7f1ed0be6d8c1e6563d2105c27217c2c9b744883","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.2.tgz","integrity":"sha512-lH9OY6BVBSwufzAUBCPlW2eemjbrpfulutB9qDwPPritHn3jBIyHRBJezJOH/ZVOJqhivFnU8Vc1gP9D3x26qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC0yOeMqb278lhiD0+Uq0I9GAZgVkr4OxAIBERG+hKj1AiEAicmdPIr7lcwv4FEtXS7Nc05SKeeHGrr5RB1EBimk020="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.3":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.3","repository":{"type":"git","url":"https://github.com/wearefractal/gulp-util"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^0.5.1","dateformat":"^1.0.11","lodash.reescape":"^3.0.0","lodash.reevaluate":"^3.0.0","lodash.reinterpolate":"^3.0.0","lodash.template":"^3.0.0","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^2.0.0","replace-ext":"0.0.1","through2":"^0.6.3","vinyl":"^0.4.3"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^3.0.0","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^4.4.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"27c44b719ad12d638b3130a6571d722db4fc7cad","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"homepage":"https://github.com/wearefractal/gulp-util","_id":"gulp-util@3.0.3","_shasum":"3b078d09001a7b5f77bbe2e7402e05d97d78b3e4","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"}],"dist":{"shasum":"3b078d09001a7b5f77bbe2e7402e05d97d78b3e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.3.tgz","integrity":"sha512-dUD2VGFM79i8XFhkQpG8Wce9cxBpRN8tRiwa1KzlvVbAoGu9Vuo3WbnNKzWvCoO7zyb3sAX2W4vYO0JqII7MsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNzn0843bKKI41se7v9QI+K8Ddp/Zw20oVdibqLwtQsQIgZPpwpZT2Zq+cUe3dmJsEMK1EmNSCwtuqCIwU/odgI7E="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.4":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.4","repository":{"type":"git","url":"https://github.com/wearefractal/gulp-util"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^1.0.0","dateformat":"^1.0.11","lodash._reescape":"^3.0.0","lodash._reevaluate":"^3.0.0","lodash._reinterpolate":"^3.0.0","lodash.template":"^3.0.0","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^2.0.0","replace-ext":"0.0.1","through2":"^0.6.3","vinyl":"^0.4.3"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^3.0.0","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^5.0.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/gulp-util/raw/master/LICENSE"}],"gitHead":"d17e0f99e9fa8d90499757e823983e229561ac75","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"homepage":"https://github.com/wearefractal/gulp-util","_id":"gulp-util@3.0.4","_shasum":"ec73553090fdb23d88fa02812ad1b61225854881","_from":".","_npmVersion":"2.6.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"},{"name":"anonymous","email":"blaine@iceddev.com"}],"dist":{"shasum":"ec73553090fdb23d88fa02812ad1b61225854881","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.4.tgz","integrity":"sha512-zzzV8bzAXiy7OijWQO17qL5TDK50quvNzfh1dDUVp+fld0cmYa24WrK83a62/DC3QjrdyN6HkBRMiFm+6tqR+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD5usi1bxhhR653sY2BvzElcIo7P6nIh/XPV2108ib7zwIgOYwOu3HhmN1TokKwoS+xtE535J7POqWn75PuLYUloAM="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.5":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.5","repository":{"type":"git","url":"git+https://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^1.0.0","dateformat":"^1.0.11","lodash._reescape":"^3.0.0","lodash._reevaluate":"^3.0.0","lodash._reinterpolate":"^3.0.0","lodash.template":"^3.0.0","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^2.0.0","replace-ext":"0.0.1","through2":"^0.6.3","vinyl":"^0.4.3"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^3.0.0","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^5.0.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"d9ac71348542d8c5413fe118ed599f9e7a83aa1a","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"homepage":"https://github.com/wearefractal/gulp-util#readme","_id":"gulp-util@3.0.5","_shasum":"2c9eea3ff586b3f51773c02d74c88271347da029","_from":".","_npmVersion":"2.10.0","_nodeVersion":"2.0.1","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"},{"name":"anonymous","email":"blaine@iceddev.com"}],"dist":{"shasum":"2c9eea3ff586b3f51773c02d74c88271347da029","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.5.tgz","integrity":"sha512-iHtbo5xtVwZ7Ub63ZOHXwVWEdeWKWAUKY+J48FBMe9UqRT4LFcf28TDANe+ZDeTUbis3o9oggL7TqKJCWH2thg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB+BoIWkea5407AlAwLC8+U6ntvFiZtowymri2/n2UP/AiA6DAt/MoBFEMsbc2yaEdGq8VT0ORDhCa8VnHCSBWiZwg=="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.6":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.6","repository":{"type":"git","url":"git+https://github.com/wearefractal/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^1.0.0","dateformat":"^1.0.11","lodash._reescape":"^3.0.0","lodash._reevaluate":"^3.0.0","lodash._reinterpolate":"^3.0.0","lodash.template":"^3.0.0","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^3.0.0","replace-ext":"0.0.1","through2":"^2.0.0","vinyl":"^0.5.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^3.0.0","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^7.0.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"7e1336eb03409c14e80368b0464bc7cd793326b4","bugs":{"url":"https://github.com/wearefractal/gulp-util/issues"},"homepage":"https://github.com/wearefractal/gulp-util#readme","_id":"gulp-util@3.0.6","_shasum":"a0b4e99edbf239c8609573e485999ddfc13e1e4a","_from":".","_npmVersion":"2.10.0","_nodeVersion":"2.0.1","_npmUser":{"name":"anonymous","email":"contact@wearefractal.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"},{"name":"anonymous","email":"blaine@iceddev.com"}],"dist":{"shasum":"a0b4e99edbf239c8609573e485999ddfc13e1e4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.6.tgz","integrity":"sha512-bUNxDuqND3r+k6YSUKDCNypXtgKvPICbvqTIbN13n0LORtoFI2CWAMmGPU/wDOePJajb29wF2Pw88FkTSmnMUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKanHtuo5KOUQqfWb8UT66oHL52IA9O5uvlcLkVg6RVAIgBTk7ZVhS8+pSsUK/pw64BcW/l4lax3GcQFsWEoMKi3w="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.7":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.7","repository":{"type":"git","url":"git+https://github.com/gulpjs/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^1.0.0","dateformat":"^1.0.11","fancy-log":"^1.1.0","gulplog":"^1.0.0","has-gulplog":"^0.1.0","lodash._reescape":"^3.0.0","lodash._reevaluate":"^3.0.0","lodash._reinterpolate":"^3.0.0","lodash.template":"^3.0.0","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^3.0.0","replace-ext":"0.0.1","through2":"^2.0.0","vinyl":"^0.5.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^3.0.0","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^7.0.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"b74a5ff121471ed00b84fb1e73a0e75488d33ccd","bugs":{"url":"https://github.com/gulpjs/gulp-util/issues"},"homepage":"https://github.com/gulpjs/gulp-util#readme","_id":"gulp-util@3.0.7","_shasum":"78925c4b8f8b49005ac01a011c557e6218941cbb","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"blaine@iceddev.com"},"maintainers":[{"name":"anonymous","email":"contact@wearefractal.com"},{"name":"anonymous","email":"blaine@iceddev.com"}],"dist":{"shasum":"78925c4b8f8b49005ac01a011c557e6218941cbb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.7.tgz","integrity":"sha512-Hw0BEAQGwMCCqflSPbWGNuep+/N6m/wLCwzovnuTJ1P7pvfDvUky5v3UisvLCnWSDzbh25dH81AP0l0YOBzW4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEjIX/mL1xmn5Lbt6MPT8mAwNc84WtLLpAr16vurG5D6AiBYccABvhuiS4T6fayy6TKLU4oMH8GDi2M+clYwtdmzIQ=="}]},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}},"3.0.8":{"name":"gulp-util","description":"Utility functions for gulp plugins","version":"3.0.8","repository":{"type":"git","url":"git+https://github.com/gulpjs/gulp-util.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js","lib"],"dependencies":{"array-differ":"^1.0.0","array-uniq":"^1.0.2","beeper":"^1.0.0","chalk":"^1.0.0","dateformat":"^2.0.0","fancy-log":"^1.1.0","gulplog":"^1.0.0","has-gulplog":"^0.1.0","lodash._reescape":"^3.0.0","lodash._reevaluate":"^3.0.0","lodash._reinterpolate":"^3.0.0","lodash.template":"^3.0.0","minimist":"^1.1.0","multipipe":"^0.1.2","object-assign":"^3.0.0","replace-ext":"0.0.1","through2":"^2.0.0","vinyl":"^0.5.0"},"devDependencies":{"buffer-equal":"^0.0.1","coveralls":"^2.11.2","event-stream":"^3.1.7","istanbul":"^0.3.5","istanbul-coveralls":"^1.0.1","jshint":"^2.5.11","lodash.templatesettings":"^3.0.0","mocha":"^2.0.1","rimraf":"^2.2.8","should":"^7.0.1"},"scripts":{"test":"jshint *.js lib/*.js test/*.js && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">=0.10"},"license":"MIT","gitHead":"28c2aa2a3f8782a995b47ed051ab52885c705024","bugs":{"url":"https://github.com/gulpjs/gulp-util/issues"},"homepage":"https://github.com/gulpjs/gulp-util#readme","_id":"gulp-util@3.0.8","_shasum":"0054e1e744502e27c04c187c3ecc505dd54bbb4f","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"contra@wearefractal.com"},{"name":"anonymous","email":"contact@wearefractal.com"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"0054e1e744502e27c04c187c3ecc505dd54bbb4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gulp-util/-/gulp-util-3.0.8.tgz","npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2s4BCRA9TVsSAnZWagAAwloP/jPC5cNbqQ5kOvEXWDKD\nnqsHzs8IHbu+swkI+DwMdLZdFLPKMMCd0JamtDrxVLT51JgqkFftIjziSC5v\nnmrTBX0WYmd+JmydX/9haiCs94ptx2PnO74QjboscKqQ8bsJIIHfVzP24+D5\n22Hie5+MXv4el3LauSl0sgDgE10jcFBLb3nQJqSs5qr/Q6kuFcdfxf5tauid\nl5UL3aGDQvSYoUBbzslvGql0rgvWaWICzcWICVaNidIYbb4mtwPDa85XvYry\ng1/rAKSlNoiqvdTalK18cmRN7R3aVujiceAEDMReV8pc7PG/v7yz3ECM2Tvj\n56NSbjOdVhqZPzxW9Ies3UjCcjRCCPPnag+LpQFFhT1LROn0TGQITKcE0oNm\n2DxhH2hfR6ktIQaNRAmwHzj5PnY86dCmMLFpRbctyBoZ6JJ5Irt7cP9m5s2v\nT7rffumwEfoID4/zvmqCd1p8K13fPvJhvf7pXRN0bLarqrhgexfswyAJ2Lg9\n5xuOgqwjLLaTxILJgWAj/rDWnJJUhnm8LLcaeaN0eb5PJ1aTsfo3vQc5727y\n0htZ3CxKDfDFm9VDw1QUFqunfEeU+qdDt9s4MBqTDJR16BG2O5hBzSePCXMz\nK98lhmXehVGWt8V0sfOzdP4wk/8zNaAWPAkSm5qlllQXRlycHb9kdZnMq/2z\n+QHT\r\n=9EZh\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICxBb3a6B3RCT50H3MqNZ0yPMsR50E+clfnFIo3ndAL+AiAok4Y4GJPPrpOT7HThJS30pCM/VXSqwTnVbbHmJnxRaA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-util-3.0.8.tgz_1482793870401_0.4167847656644881"},"deprecated":"gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5","directories":{}}},"name":"gulp-util","time":{"modified":"2024-05-18T05:41:07.590Z","created":"2013-07-06T07:36:16.604Z","0.0.1":"2013-07-06T07:36:18.060Z","1.0.0":"2013-09-26T22:31:42.092Z","1.1.0":"2013-12-04T01:11:18.485Z","1.1.1":"2013-12-04T01:26:05.079Z","1.2.0":"2013-12-08T19:32:03.047Z","1.3.0":"2013-12-11T05:14:49.574Z","2.0.0":"2013-12-11T05:18:59.503Z","2.1.1":"2013-12-12T07:20:08.124Z","2.1.2":"2013-12-13T01:23:19.770Z","2.1.3":"2013-12-14T00:34:50.583Z","2.1.4":"2013-12-15T17:13:48.663Z","2.2.0":"2013-12-21T03:53:44.783Z","2.2.1":"2013-12-31T03:35:00.596Z","2.2.2":"2013-12-31T11:47:22.408Z","2.2.3":"2013-12-31T21:38:45.624Z","2.2.5":"2014-01-02T22:23:28.483Z","2.2.6":"2014-01-05T22:30:37.457Z","2.2.7":"2014-01-09T01:12:35.061Z","2.2.8":"2014-01-09T01:47:44.098Z","2.2.9":"2014-01-09T02:29:04.337Z","2.2.10":"2014-01-14T09:06:01.228Z","2.2.11":"2014-01-17T08:00:39.994Z","2.2.12":"2014-01-17T09:44:42.669Z","2.2.13":"2014-01-27T20:56:51.289Z","2.2.14":"2014-02-02T22:43:56.070Z","2.2.15":"2014-06-01T23:53:12.415Z","2.2.16":"2014-06-03T04:14:00.702Z","2.2.17":"2014-06-12T00:59:48.139Z","2.2.18":"2014-06-25T14:17:59.959Z","2.2.19":"2014-06-26T21:16:10.000Z","2.2.20":"2014-07-09T22:01:44.875Z","3.0.0":"2014-07-19T04:58:07.749Z","3.0.1":"2014-08-29T13:53:19.863Z","3.0.2":"2015-01-06T21:03:56.648Z","3.0.3":"2015-02-02T05:53:01.696Z","3.0.4":"2015-02-24T18:44:49.014Z","3.0.5":"2015-05-30T05:47:12.640Z","3.0.6":"2015-06-23T20:43:49.994Z","3.0.7":"2015-10-20T03:11:15.750Z","3.0.8":"2016-12-26T23:11:10.645Z"},"readmeFilename":"README.md","homepage":"https://github.com/gulpjs/gulp-util#readme"}