{"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"keywords":["glob","stream","gulp","readable","fs","files"],"dist-tags":{"latest":"6.1.0"},"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"description":"A Readable Stream interface over node-glob.","readme":"<p align=\"center\">\n  <a href=\"http://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# glob-stream\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]\n\nA [Readable Stream][readable-stream-url] interface over [node-glob][node-glob-url].\n\n## Usage\n\n```javascript\nvar gs = require('glob-stream');\n\nvar readable = gs('./files/**/*.coffee', { /* options */ });\n\nvar writable = /* your WriteableStream */\n\nreadable.pipe(writable);\n```\n\nYou can pass any combination of glob strings. One caveat is that you cannot __only__ pass a negative glob, you must give it at least one positive glob so it knows where to start. If given a non-glob path (also referred to as a singular glob), only one file will be emitted. If given a singular glob and no files match, an error is emitted (see also [`options.allowEmpty`][allow-empty-url]).\n\n## API\n\n### `globStream(globs, options)`\n\nTakes a glob string or an array of glob strings as the first argument and an options object as the second. Returns a stream of objects that contain `cwd`, `base` and `path` properties.\n\n#### Options\n\n##### `options.allowEmpty`\n\nWhether or not to error upon an empty singular glob.\n\nType: `Boolean`\n\nDefault: `false` (error upon no match)\n\n##### `options.dot`\n\nWhether or not to treat dotfiles as regular files. This is passed through to [node-glob][node-glob-url].\n\nType: `Boolean`\n\nDefault: `false`\n\n##### `options.silent`\n\nWhether or not to suppress warnings on stderr from [node-glob][node-glob-url]. This is passed through to [node-glob][node-glob-url].\n\nType: `Boolean`\n\nDefault: `true`\n\n##### `options.cwd`\n\nThe current working directory that the glob is resolved against.\n\nType: `String`\n\nDefault: `process.cwd()`\n\n##### `options.root`\n\nThe root path that the glob is resolved against.\n\n__Note: This is never passed to [node-glob][node-glob-url] because it is pre-resolved against your paths.__\n\nType: `String`\n\nDefault: `undefined` (use the filesystem root)\n\n##### `options.base`\n\nThe absolute segment of the glob path that isn't a glob. This value is attached to each glob object and is useful for relative pathing.\n\nType: `String`\n\nDefault: The absolute path segement before a glob starts (see [glob-parent][glob-parent-url])\n\n##### `options.cwdbase`\n\nWhether or not the `cwd` and `base` should be the same.\n\nType: `Boolean`\n\nDefault: `false`\n\n##### `options.uniqueBy`\n\nFilters stream to remove duplicates based on the string property name or the result of function. When using a function, the function receives the streamed data (objects containing `cwd`, `base`, `path` properties) to compare against.\n\nType: `String` or `Function`\n\nDefault: `'path'`\n\n##### other\n\nAny glob-related options are documented in [node-glob][node-glob-url]. Those options are forwarded verbatim, with the exception of `root` and `ignore`. `root` is pre-resolved and `ignore` is joined with all negative globs.\n\n#### Globbing & Negation\n\n```js\nvar stream = gs(['./**/*.js', '!./node_modules/**/*']);\n```\n\nGlobs are executed in order, so negations should follow positive globs. For example:\n\nThe following would __not__ exclude any files:\n```js\ngs(['!b*.js', '*.js'])\n```\n\nHowever, this would exclude all files that started with `b`:\n```js\ngs(['*.js', '!b*.js'])\n```\n\n## License\n\nMIT\n\n[node-glob-url]: https://github.com/isaacs/node-glob\n[glob-parent-url]: https://github.com/es128/glob-parent\n[allow-empty-url]: #optionsallowempty\n[readable-stream-url]: https://nodejs.org/api/stream.html#stream_readable_streams\n\n[downloads-image]: http://img.shields.io/npm/dm/glob-stream.svg\n[npm-url]: https://www.npmjs.com/package/glob-stream\n[npm-image]: http://img.shields.io/npm/v/glob-stream.svg\n\n[travis-url]: https://travis-ci.org/gulpjs/glob-stream\n[travis-image]: http://img.shields.io/travis/gulpjs/glob-stream.svg?label=travis-ci\n\n[appveyor-url]: https://ci.appveyor.com/project/gulpjs/glob-stream\n[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/glob-stream.svg?label=appveyor\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/glob-stream\n[coveralls-image]: http://img.shields.io/coveralls/gulpjs/glob-stream.svg\n\n[gitter-url]: https://gitter.im/gulpjs/gulp\n[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg\n","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"users":{"jyounce":true,"tomekf":true,"acewinnielee":true,"marcellodesales":true,"mcacek":true,"houzhanfeng":true,"shanewholloway":true,"davidjsalazarmoreno":true},"bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"license":"MIT","versions":{"0.0.1":{"name":"glob-stream","description":"File system globs as a stream","version":"0.0.1","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"coffee-script":"*","glob":"*","event-stream":"*"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha --compilers coffee:coffee-script"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@0.0.1","dist":{"shasum":"e7eec511f02b1badd0a9339e31426c0bc7a6f6d9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-0.0.1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.0.2":{"name":"glob-stream","description":"File system globs as a stream","version":"0.0.2","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"coffee-script":"*","glob":"*","event-stream":"*"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha --compilers coffee:coffee-script"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@0.0.2","dist":{"shasum":"514d6ea9466f4dfed1b10858fc6c8027105a5027","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-0.0.2.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.0.3":{"name":"glob-stream","description":"File system globs as a stream","version":"0.0.3","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"coffee-script":"*","glob":"*","event-stream":"*"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha --compilers coffee:coffee-script"},"engines":{"node":">= 0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@0.0.3","dist":{"shasum":"022611081245df72488471689dd3914b3ac01bd2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-0.0.3.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.1.0":{"name":"glob-stream","description":"File system globs as a stream","version":"0.1.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"*","event-stream":"*"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@0.1.0","dist":{"shasum":"032fd41966618846e3f44d275fc2e0481421dce0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-0.1.0.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"0.2.0":{"name":"glob-stream","description":"File system globs as a stream","version":"0.2.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@0.2.0","dist":{"shasum":"e02c16bc7c3f43d385ce9288261897f37cd96c63","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-0.2.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"1.0.0":{"name":"glob-stream","description":"File system globs as a stream","version":"1.0.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@1.0.0","dist":{"shasum":"b9f3b75c93473ddd3dd1dbb2e359771b197ef531","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-1.0.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"2.0.0":{"name":"glob-stream","description":"File system globs as a stream","version":"2.0.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@2.0.0","dist":{"shasum":"af344c159e4a8a3c93b2a81d28f4baa05142d668","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-2.0.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"2.0.1":{"name":"glob-stream","description":"File system globs as a stream","version":"2.0.1","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@2.0.1","dist":{"shasum":"1ee14a56cece9bde46b4e3d09754b545acef7ce2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-2.0.1.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.0.0":{"name":"glob-stream","description":"File system globs as a stream","version":"3.0.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.0.0","dist":{"shasum":"61e956b36a5f0037511dbedc31ce78f79c5a3be3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.0.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.0.1":{"name":"glob-stream","description":"File system globs as a stream","version":"3.0.1","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12","stream-combiner":"0.0.2"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.0.1","dist":{"shasum":"4b0f48c08354fb2ef6c8724263009a2a5cb2662d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.0.1.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.0.2":{"name":"glob-stream","description":"File system globs as a stream","version":"3.0.2","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.18","minimatch":"~0.2.12","stream-combiner":"0.0.2"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.0.2","dist":{"shasum":"384c0b29ce288c3d85fc34d215fafb29a7331979","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.0.2.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.0.3":{"name":"glob-stream","description":"File system globs as a stream","version":"3.0.3","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.20","minimatch":"~0.2.12","combine-stream":"0.0.4"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.0.3","dist":{"shasum":"7bf0d0fff66bd7dfde255cfa63f08349c7d30de8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.0.3.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.0.4":{"name":"glob-stream","description":"File system globs as a stream","version":"3.0.4","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.20","minimatch":"~0.2.12","combine-stream":"0.0.4"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.8"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.0.4","dist":{"shasum":"b510c167eef0b1ee78db4f3de70336ba9ded9daa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.0.4.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.0.5":{"name":"glob-stream","description":"File system globs as a stream","version":"3.0.5","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.20","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"0.0.2","unique-stream":"0.0.3"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.0.5","dist":{"shasum":"2efa1779e8827654fde302177b4b6133e193a200","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.0.5.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.0":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.20","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"0.0.2","unique-stream":"0.0.3"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.0","dist":{"shasum":"fbf90b45b2feaa9c1080c48b7268963ebb645311","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.1":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.1","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.20","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"0.0.2","unique-stream":"0.0.3"},"devDependencies":{"mocha":"*","should":"*","jshint":"*"},"scripts":{"test":"mocha && jshint"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.1","dist":{"shasum":"b09da77e4687c9679fe2c6adb0ae0fc126a2031d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.1.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.2":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.2","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","event-stream":"~3.0.20","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"~0.0.4","unique-stream":"~0.0.3"},"devDependencies":{"mocha":"*","should":"*","jshint":"*"},"scripts":{"test":"mocha && jshint"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.2","dist":{"shasum":"9cb60a6e7040582f87e6d1837e5273ebc7f08b28","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.2.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.3":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.3","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"~0.0.4","unique-stream":"~0.0.3","through":"~2.3.4","map-stream":"0.0.4"},"devDependencies":{"mocha":"*","should":"*","jshint":"*"},"scripts":{"test":"mocha && jshint"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.3","dist":{"shasum":"6300b203b634e08a2a464b5082c9331a323c1584","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.3.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.5":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.5","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"~0.0.4","unique-stream":"~0.0.3","through":"~2.3.4","map-stream":"0.0.4"},"devDependencies":{"mocha":"*","should":"*","jshint":"*"},"scripts":{"test":"mocha && jshint"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.5","dist":{"shasum":"ad49aa2704607f87addf5df5f8a7145b6534374a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.5.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.6":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.6","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"~0.0.4","unique-stream":"~0.0.3","through":"~2.3.4","map-stream":"~0.1.0"},"devDependencies":{"mocha":"*","should":"*","jshint":"*"},"scripts":{"test":"mocha && jshint"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.6","dist":{"shasum":"5011672fd76a1b5dd08a725d40ba62f56a5f179b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.6.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.7":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.7","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","minimatch":"~0.2.12","combine-stream":"0.0.4","glob2base":"~0.0.4","unique-stream":"~0.0.3","through":"~2.3.4","map-stream":"~0.1.0"},"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"},"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/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.7","dist":{"shasum":"2353507db56462304c39ec0aa909414e5c41df46","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.7.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.8":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.8","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","minimatch":"~0.2.12","ordered-read-streams":"~0.0.3","glob2base":"~0.0.4","unique-stream":"~0.0.3","through":"~2.3.4","map-stream":"~0.1.0"},"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"},"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/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.8","dist":{"shasum":"080a61b09dcd6784980329cfeb6d57163b5c805c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.8.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.9":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.9","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"~3.2.7","minimatch":"~0.2.12","ordered-read-streams":"~0.0.3","glob2base":"~0.0.4","unique-stream":"~0.0.3","through":"~2.3.4","map-stream":"~0.1.0"},"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"},"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/glob-stream/raw/master/LICENSE"}],"bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.9","dist":{"shasum":"b7ab0a07ba912de31686a4cb3efd43872e67f552","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.9.tgz"},"_from":".","_npmVersion":"1.3.23","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"directories":{}},"3.1.10":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.10","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"^4.0.0","minimatch":"^0.3.0","ordered-read-streams":"^0.0.7","glob2base":"^0.0.8","unique-stream":"^1.0.0","through":"^2.3.4","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"88abe7a092eb1a9368031f8374913605930d0eb5","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.10","_shasum":"5f15ce3855cbf9711e06a600ecbc8a7e35af00a0","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"5f15ce3855cbf9711e06a600ecbc8a7e35af00a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.10.tgz"},"directories":{}},"3.1.11":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.11","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"^4.0.0","minimatch":"^0.3.0","ordered-read-streams":"^0.0.7","glob2base":"^0.0.9","unique-stream":"^1.0.0","through":"^2.3.4","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"bf8bce5bab871107a021ba62b8d64e7add46c870","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.11","_shasum":"af96c6df065e124f12108064275cf7f708d9438c","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"af96c6df065e124f12108064275cf7f708d9438c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.11.tgz"},"directories":{}},"3.1.12":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.12","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"^4.0.0","minimatch":"^0.3.0","ordered-read-streams":"^0.0.7","glob2base":"^0.0.9","unique-stream":"^1.0.0","through":"^2.3.4","map-stream":"^0.1.0"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"1f75fea9bc9a12a7f623f884dc4d4b5d8751a91c","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.12","_shasum":"848a66e7d9a052f847eef9b5ba184e6fb1b25e47","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"848a66e7d9a052f847eef9b5ba184e6fb1b25e47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.12.tgz"},"directories":{}},"3.1.13":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.13","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"^4.0.0","minimatch":"^0.3.0","ordered-read-streams":"^0.0.7","glob2base":"^0.0.9","unique-stream":"^1.0.0","through2":"^0.5.1"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"3b4517fd81e39036d29e30d02133ebf95078600d","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.13","_shasum":"1411fd2749a4420378aa8d21a6033edc7698a003","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"1411fd2749a4420378aa8d21a6033edc7698a003","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.13.tgz"},"directories":{}},"3.1.14":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.14","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"^4.0.0","minimatch":"^0.3.0","ordered-read-streams":"0.0.8","glob2base":"^0.0.9","unique-stream":"^1.0.0","through2":"^0.5.1"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.2.3","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"f670ab68053cf21d8048d12b568f7f6973f70ee0","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.14","_shasum":"4a01ac53219c9582404858c6b76008fba0b10bf8","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"4a01ac53219c9582404858c6b76008fba0b10bf8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.14.tgz"},"directories":{}},"3.1.15":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.15","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","dependencies":{"glob":"^4.0.0","minimatch":"^1.0.0","ordered-read-streams":"0.0.8","glob2base":"^0.0.11","unique-stream":"^1.0.0","through2":"^0.6.1"},"devDependencies":{"mocha":"^1.17.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"0923af26161489610becddd6f8de7ea3f2293979","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.15","_shasum":"084bdbe9d8203fbb48bcf05c382dbb7e6666f8f5","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"084bdbe9d8203fbb48bcf05c382dbb7e6666f8f5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.15.tgz"},"directories":{}},"3.1.16":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.16","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"glob":"^4.0.0","minimatch":"^1.0.0","ordered-read-streams":"^0.1.0","glob2base":"^0.0.11","unique-stream":"^1.0.0","through2":"^0.6.1"},"devDependencies":{"mocha":"^2.0.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"3b3094db8e62a3578b94223823f63c2a30891cf4","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.16","_shasum":"a1c349cce01b16b8cfdec1ba580692afc43ce730","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"a1c349cce01b16b8cfdec1ba580692afc43ce730","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.16.tgz"},"directories":{}},"3.1.17":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.17","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js","lib"],"dependencies":{"glob":"^4.0.0","minimatch":"^1.0.0","ordered-read-streams":"^0.1.0","glob2base":"^0.0.12","unique-stream":"^1.0.0","through2":"^0.6.1"},"devDependencies":{"mocha":"^2.0.0","should":"^4.0.0","mocha-lcov-reporter":"0.0.1","coveralls":"^2.6.1","istanbul":"^0.3.0","rimraf":"^2.2.5","jshint":"^2.4.1"},"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/glob-stream/raw/master/LICENSE"}],"gitHead":"aff7b856ccfe0027cabdf95052ad510e44fd4be8","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.17","_shasum":"bc3093856149bf9b7454935abe523ec7ab26ec1e","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"bc3093856149bf9b7454935abe523ec7ab26ec1e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.17.tgz"},"directories":{}},"3.1.18":{"name":"glob-stream","description":"File system globs as a stream","version":"3.1.18","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js"],"dependencies":{"glob":"^4.3.1","minimatch":"^2.0.1","ordered-read-streams":"^0.1.0","glob2base":"^0.0.12","unique-stream":"^1.0.0","through2":"^0.6.1"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.5.10","mocha":"^2.0.0","mocha-lcov-reporter":"0.0.1","rimraf":"^2.2.5","should":"^4.3.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && istanbul-coveralls"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"gitHead":"472b98e7a0a747a3c72454337def65cebc4fb78e","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@3.1.18","_shasum":"9170a5f12b790306fdfe598f313f8f7954fd143b","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"9170a5f12b790306fdfe598f313f8f7954fd143b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-3.1.18.tgz"},"directories":{}},"4.0.0":{"name":"glob-stream","description":"File system globs as a stream","version":"4.0.0","homepage":"http://github.com/wearefractal/glob-stream","repository":{"type":"git","url":"git://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"main":"./index.js","files":["index.js"],"dependencies":{"glob":"^4.3.1","minimatch":"^2.0.1","ordered-read-streams":"^0.1.0","glob2base":"^0.0.12","unique-stream":"^1.0.0","through2":"^0.6.1"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.5.10","mocha":"^2.0.0","mocha-lcov-reporter":"0.0.1","rimraf":"^2.2.5","should":"^4.3.0"},"scripts":{"test":"mocha --reporter spec && jshint","coveralls":"istanbul cover _mocha --report lcovonly -- -R spec && istanbul-coveralls"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"gitHead":"5fba35d174f885dcc0fa2ba9d024b478e4224c98","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"_id":"glob-stream@4.0.0","_shasum":"b06eee6edb7d3eb0970d85c721a511fadb33f22c","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"b06eee6edb7d3eb0970d85c721a511fadb33f22c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-4.0.0.tgz"},"directories":{}},"4.0.1":{"name":"glob-stream","description":"File system globs as a stream","version":"4.0.1","repository":{"type":"git","url":"https://github.com/wearefractal/glob-stream"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js"],"dependencies":{"glob":"^4.3.1","minimatch":"^2.0.1","ordered-read-streams":"^0.1.0","glob2base":"^0.0.12","unique-stream":"^2.0.2","through2":"^0.6.1"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.5.10","mocha":"^2.0.0","mocha-lcov-reporter":"0.0.1","rimraf":"^2.2.5","should":"^4.3.0"},"scripts":{"test":"jshint && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"gitHead":"6411ea4891d24227f94f302bd52d79584af8fa9b","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"homepage":"https://github.com/wearefractal/glob-stream","_id":"glob-stream@4.0.1","_shasum":"10c14f00206b687b4ed134700f400446bea5f37b","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.10.35","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"}],"dist":{"shasum":"10c14f00206b687b4ed134700f400446bea5f37b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-4.0.1.tgz"},"directories":{}},"4.1.0":{"name":"glob-stream","description":"File system globs as a stream","version":"4.1.0","repository":{"type":"git","url":"https://github.com/wearefractal/glob-stream"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js"],"dependencies":{"glob":"^5.0.3","minimatch":"^2.0.1","ordered-read-streams":"^0.2.0","glob2base":"^0.0.12","unique-stream":"^2.0.2","through2":"^0.6.1"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.5.10","mocha":"^2.0.0","mocha-lcov-reporter":"0.0.2","rimraf":"^2.2.5","should":"^5.2.0"},"scripts":{"test":"jshint && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"gitHead":"dc514b2881cb1221fa0edd3824a36ad315fae34a","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"homepage":"https://github.com/wearefractal/glob-stream","_id":"glob-stream@4.1.0","_shasum":"e01451680c59b889df70cfc922ab890e65cd30cd","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.1","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"e01451680c59b889df70cfc922ab890e65cd30cd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-4.1.0.tgz"},"directories":{}},"5.0.0":{"name":"glob-stream","description":"File system globs as a stream","version":"5.0.0","repository":{"type":"git","url":"https://github.com/wearefractal/glob-stream"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js"],"dependencies":{"glob":"^5.0.3","minimatch":"^2.0.1","ordered-read-streams":"^0.2.0","glob2base":"^0.0.12","unique-stream":"^2.0.2","through2":"^0.6.1"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.5.10","mocha":"^2.0.0","mocha-lcov-reporter":"0.0.2","rimraf":"^2.2.5","should":"^5.2.0"},"scripts":{"test":"jshint && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"gitHead":"3fe3b8a762a5176292d4bec6e7e84dafd02e9385","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"homepage":"https://github.com/wearefractal/glob-stream","_id":"glob-stream@5.0.0","_shasum":"d55374a3b3c98c0d08dff74fb84f282e40c5e5c5","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.1","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"d55374a3b3c98c0d08dff74fb84f282e40c5e5c5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.0.0.tgz"},"directories":{}},"4.1.1":{"name":"glob-stream","description":"File system globs as a stream","version":"4.1.1","repository":{"type":"git","url":"https://github.com/wearefractal/glob-stream"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js"],"dependencies":{"glob":"^4.3.1","minimatch":"^2.0.1","ordered-read-streams":"^0.1.0","glob2base":"^0.0.12","unique-stream":"^2.0.2","through2":"^0.6.1"},"devDependencies":{"coveralls":"^2.11.2","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jshint":"^2.5.10","mocha":"^2.0.0","mocha-lcov-reporter":"0.0.1","rimraf":"^2.2.5","should":"^4.3.0"},"scripts":{"test":"jshint && mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">= 0.9"},"licenses":[{"type":"MIT","url":"http://github.com/wearefractal/glob-stream/raw/master/LICENSE"}],"gitHead":"6411ea4891d24227f94f302bd52d79584af8fa9b","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"homepage":"https://github.com/wearefractal/glob-stream","_id":"glob-stream@4.1.1","_shasum":"b842df10d688c7eb6bcfcebd846f3852296b3200","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.1","_npmUser":{"name":"fractal","email":"contact@wearefractal.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"b842df10d688c7eb6bcfcebd846f3852296b3200","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-4.1.1.tgz"},"directories":{}},"5.2.0":{"name":"glob-stream","description":"File system globs as a stream","version":"5.2.0","repository":{"type":"git","url":"git+https://github.com/wearefractal/glob-stream.git"},"author":{"name":"Fractal","email":"contact@wearefractal.com","url":"http://wearefractal.com/"},"files":["index.js"],"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob2base":"^0.0.12","minimatch":"^2.0.1","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"scripts":{"lint":"eslint . && jscs *.js test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"engines":{"node":">= 0.9"},"license":"MIT","gitHead":"9aa7583a59159f8c93acb7bc6341b7b1c1befde2","bugs":{"url":"https://github.com/wearefractal/glob-stream/issues"},"homepage":"https://github.com/wearefractal/glob-stream#readme","_id":"glob-stream@5.2.0","_shasum":"a980262c8cc3f6255158787558e9883dd852d184","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"a980262c8cc3f6255158787558e9883dd852d184","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.2.0.tgz"},"directories":{}},"5.3.0":{"name":"glob-stream","version":"5.3.0","description":"A wrapper around node-glob to make it streamy","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[],"homepage":"http://gulpjs.com","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js"],"scripts":{"lint":"eslint . && jscs *.js test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob-parent":"^2.0.0","micromatch":"^2.3.0","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"keywords":["glob","stream"],"gitHead":"469c6cf3b852da042acd10b90cdb5231d8c1f10c","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"_id":"glob-stream@5.3.0","_shasum":"fc63a08d296667af3f547bcf7ea185f76affbff4","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"fc63a08d296667af3f547bcf7ea185f76affbff4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.3.0.tgz"},"directories":{}},"5.3.1":{"name":"glob-stream","version":"5.3.1","description":"A wrapper around node-glob to make it streamy","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[],"homepage":"http://gulpjs.com","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js"],"scripts":{"lint":"eslint . && jscs *.js test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob-parent":"^2.0.0","micromatch":"^2.3.7","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"keywords":["glob","stream"],"gitHead":"302c034f23fc7244a7373cb04911e8e550b3e1dc","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"_id":"glob-stream@5.3.1","_shasum":"99bb79138d3499404486e8fcf9ea60a5afb40b55","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"99bb79138d3499404486e8fcf9ea60a5afb40b55","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.3.1.tgz"},"directories":{}},"5.3.2":{"name":"glob-stream","version":"5.3.2","description":"A wrapper around node-glob to make it streamy","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[],"homepage":"http://gulpjs.com","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js"],"scripts":{"lint":"eslint . && jscs *.js test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob-parent":"^2.0.0","micromatch":"^2.3.7","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"keywords":["glob","stream"],"gitHead":"4e6fc93695b3053474ab592f0369f510e2cde2a4","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"_id":"glob-stream@5.3.2","_shasum":"cdfdaf7c3243cd53430a84dc934fa39d8c5da1a5","_from":".","_npmVersion":"2.14.14","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"cdfdaf7c3243cd53430a84dc934fa39d8c5da1a5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.3.2.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/glob-stream-5.3.2.tgz_1456968639098_0.4534094335976988"},"directories":{}},"5.3.3":{"name":"glob-stream","version":"5.3.3","description":"A wrapper around node-glob to make it streamy","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[],"homepage":"http://gulpjs.com","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js"],"scripts":{"lint":"eslint . && jscs *.js test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob-parent":"^2.0.0","micromatch":"^2.3.7","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"keywords":["glob","stream"],"gitHead":"836f33ee0328551f7dd94454dce44fe2d88498cb","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"_id":"glob-stream@5.3.3","_shasum":"8b52468f91ee6a05f7aa0d71f297834c2e7c6e1d","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"8b52468f91ee6a05f7aa0d71f297834c2e7c6e1d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/glob-stream-5.3.3.tgz_1471990855081_0.06933790049515665"},"directories":{}},"5.3.4":{"name":"glob-stream","version":"5.3.4","description":"A wrapper around node-glob to make it streamy","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[],"homepage":"http://gulpjs.com","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js"],"scripts":{"lint":"eslint . && jscs . test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob-parent":"^2.0.0","micromatch":"^2.3.7","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"keywords":["glob","stream"],"gitHead":"eadafd3cde31c5508547f4ad57b54d92a3003ca2","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"_id":"glob-stream@5.3.4","_shasum":"2da166001578c4ee17fd92e4ee15083462ae72fc","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"2da166001578c4ee17fd92e4ee15083462ae72fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.3.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/glob-stream-5.3.4.tgz_1472235941717_0.4300400542560965"},"directories":{}},"5.3.5":{"name":"glob-stream","version":"5.3.5","description":"A wrapper around node-glob to make it streamy","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[],"homepage":"http://gulpjs.com","repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js"],"scripts":{"lint":"eslint . && jscs . test/","pretest":"npm run lint","test":"mocha","coveralls":"istanbul cover _mocha --report lcovonly && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^5.0.3","glob-parent":"^3.0.0","micromatch":"^2.3.7","ordered-read-streams":"^0.3.0","through2":"^0.6.0","to-absolute-glob":"^0.1.1","unique-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.2","eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","istanbul":"^0.3.0","istanbul-coveralls":"^1.0.1","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.0.0","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.2.5","should":"^7.1.0","stream-sink":"^1.2.0"},"keywords":["glob","stream"],"gitHead":"cd3a0c423a3c4a8b5e847320a868738113248575","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"_id":"glob-stream@5.3.5","_shasum":"a55665a9a8ccdc41915a87c701e32d4e016fad22","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"a55665a9a8ccdc41915a87c701e32d4e016fad22","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-5.3.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/glob-stream-5.3.5.tgz_1473289908031_0.9770245924592018"},"directories":{}},"6.0.0":{"name":"glob-stream","version":"6.0.0","description":"A Readable Stream interface over node-glob.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Eric Schoffstall","email":"yo@contra.io"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js","readable.js","LICENSE"],"scripts":{"lint":"eslint . && jscs index.js readable.js test/","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^7.1.1","glob-parent":"^3.1.0","is-negated-glob":"^1.0.0","ordered-read-streams":"^1.0.0","pumpify":"^1.3.5","readable-stream":"^2.1.5","remove-trailing-separator":"^1.0.1","to-absolute-glob":"^2.0.0","unique-stream":"^2.0.2"},"devDependencies":{"eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.19.0","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mississippi":"^1.2.0","mocha":"^2.4.5"},"keywords":["glob","stream","gulp","readable","fs","files"],"gitHead":"5dcb4d1adfd238c786608a7c689d25c3c25aed4f","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"homepage":"https://github.com/gulpjs/glob-stream#readme","_id":"glob-stream@6.0.0","_shasum":"5759e6bad2f37d38124384a60cfed59f96d816c4","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"5759e6bad2f37d38124384a60cfed59f96d816c4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-6.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/glob-stream-6.0.0.tgz_1487724725422_0.8554196115583181"},"directories":{}},"6.1.0":{"name":"glob-stream","version":"6.1.0","description":"A Readable Stream interface over node-glob.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Eric Schoffstall","email":"yo@contra.io"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/glob-stream.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js","readable.js","LICENSE"],"scripts":{"lint":"eslint . && jscs index.js readable.js test/","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"extend":"^3.0.0","glob":"^7.1.1","glob-parent":"^3.1.0","is-negated-glob":"^1.0.0","ordered-read-streams":"^1.0.0","pumpify":"^1.3.5","readable-stream":"^2.1.5","remove-trailing-separator":"^1.0.1","to-absolute-glob":"^2.0.0","unique-stream":"^2.0.2"},"devDependencies":{"eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.19.0","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mississippi":"^1.2.0","mocha":"^2.4.5"},"keywords":["glob","stream","gulp","readable","fs","files"],"gitHead":"8210a3c95cabc032088b1a0ff47ccbeb2f83ec52","bugs":{"url":"https://github.com/gulpjs/glob-stream/issues"},"homepage":"https://github.com/gulpjs/glob-stream#readme","_id":"glob-stream@6.1.0","_shasum":"7045c99413b3eb94888d83ab46d0b404cc7bdde4","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"contra","email":"contra@wearefractal.com"},{"name":"fractal","email":"contact@wearefractal.com"},{"name":"phated","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"7045c99413b3eb94888d83ab46d0b404cc7bdde4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/glob-stream/-/glob-stream-6.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/glob-stream-6.1.0.tgz_1488055036704_0.16514079086482525"},"directories":{}}},"name":"glob-stream","contributors":[{"name":"Eric Schoffstall","email":"yo@contra.io"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"time":{"modified":"2017-02-25T20:37:17.387Z","created":"2013-07-04T08:30:01.859Z","0.0.1":"2013-07-04T08:30:03.204Z","0.0.2":"2013-07-05T07:08:02.377Z","0.0.3":"2013-07-05T21:32:05.981Z","0.1.0":"2013-10-25T03:36:30.421Z","0.2.0":"2013-12-07T04:25:11.145Z","1.0.0":"2013-12-07T04:25:32.395Z","2.0.0":"2013-12-07T04:40:28.802Z","2.0.1":"2013-12-07T04:55:50.505Z","3.0.0":"2013-12-07T05:41:44.242Z","3.0.1":"2013-12-08T01:53:22.474Z","3.0.2":"2013-12-09T22:21:48.565Z","3.0.3":"2013-12-13T21:58:35.817Z","3.0.4":"2013-12-14T21:43:53.286Z","3.0.5":"2013-12-28T22:39:33.287Z","3.1.0":"2013-12-29T00:09:16.599Z","3.1.1":"2014-01-04T02:12:21.857Z","3.1.2":"2014-01-05T08:03:42.625Z","3.1.3":"2014-01-08T14:42:10.677Z","3.1.5":"2014-01-13T02:15:39.791Z","3.1.6":"2014-01-16T04:47:06.496Z","3.1.7":"2014-01-16T06:47:26.412Z","3.1.8":"2014-01-18T06:44:17.795Z","3.1.9":"2014-01-18T06:46:50.231Z","3.1.10":"2014-06-01T00:41:43.118Z","3.1.11":"2014-06-01T02:14:21.469Z","3.1.12":"2014-06-11T20:30:25.158Z","3.1.13":"2014-06-30T18:45:52.154Z","3.1.14":"2014-07-10T22:38:24.033Z","3.1.15":"2014-08-16T00:58:04.099Z","3.1.16":"2014-11-13T23:16:11.107Z","3.1.17":"2014-11-13T23:38:25.431Z","3.1.18":"2014-12-03T05:47:50.667Z","4.0.0":"2014-12-28T00:53:23.423Z","4.0.1":"2015-01-26T21:49:52.833Z","4.1.0":"2015-03-16T15:44:02.858Z","5.0.0":"2015-03-19T01:48:40.728Z","5.0.1":"2015-03-19T14:46:30.197Z","5.1.0":"2015-03-19T14:48:45.282Z","4.1.1":"2015-03-19T14:51:40.415Z","5.2.0":"2015-11-05T21:46:51.366Z","5.3.0":"2015-12-16T21:21:54.917Z","5.3.1":"2015-12-21T19:44:54.121Z","5.3.2":"2016-03-03T01:30:39.938Z","5.3.3":"2016-08-23T22:20:55.340Z","5.3.4":"2016-08-26T18:25:41.956Z","5.3.5":"2016-09-07T23:11:48.276Z","6.0.0":"2017-02-22T00:52:05.671Z","6.1.0":"2017-02-25T20:37:17.387Z"},"readmeFilename":"README.md","homepage":"https://github.com/gulpjs/glob-stream#readme"}