{"maintainers":[{"name":"schnittstabil","email":"michael@schnittstabil.de"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"ult_combo","email":"ultcombo@gmail.com"}],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dist-tags":{"latest":"6.1.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"description":"Extends `glob` with support for multiple patterns and exposes a Promise API","readme":"# globby [![Build Status](https://travis-ci.org/sindresorhus/globby.svg?branch=master)](https://travis-ci.org/sindresorhus/globby)\n\n> Extends [glob](https://github.com/isaacs/node-glob) with support for multiple patterns and exposes a Promise API\n\n\n## Install\n\n```\n$ npm install --save globby\n```\n\n\n## Usage\n\n```\n├── unicorn\n├── cake\n└── rainbow\n```\n\n```js\nconst globby = require('globby');\n\nglobby(['*', '!cake']).then(paths => {\n\tconsole.log(paths);\n\t//=> ['unicorn', 'rainbow']\n});\n```\n\n\n## API\n\n### globby(patterns, [options])\n\nReturns a Promise for an array of matching paths.\n\n### globby.sync(patterns, [options])\n\nReturns an array of matching paths.\n\n### globby.generateGlobTasks(patterns, [options])\n\nReturns an array of objects in the format `{ pattern: string, opts: Object }`, which can be passed as arguments to [`node-glob`](https://github.com/isaacs/node-glob). This is useful for other globbing-related packages.\n\nNote that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.\n\n### globby.hasMagic(patterns, [options])\n\nReturns a `boolean` of whether there are any special glob characters in the `patterns`.\n\nNote that the options affect the results. If `noext: true` is set, then `+(a|b)` will not be considered a magic pattern. If the pattern has a brace expansion, like `a/{b/c,x/y}`, then that is considered magical, unless `nobrace: true` is set.\n\n#### patterns\n\nType: `string` `Array`\n\nSee supported `minimatch` [patterns](https://github.com/isaacs/minimatch#usage).\n\n#### options\n\nType: `Object`\n\nSee the `node-glob` [options](https://github.com/isaacs/node-glob#options).\n\n\n## Globbing patterns\n\nJust a quick overview.\n\n- `*` matches any number of characters, but not `/`\n- `?` matches a single character, but not `/`\n- `**` matches any number of characters, including `/`, as long as it's the only thing in a path part\n- `{}` allows for a comma-separated list of \"or\" expressions\n- `!` at the beginning of a pattern will negate the match\n\n[Various patterns and expected matches.](https://github.com/sindresorhus/multimatch/blob/master/test.js)\n\n\n## Related\n\n- [multimatch](https://github.com/sindresorhus/multimatch) - Match against a list instead of the filesystem\n- [glob-stream](https://github.com/wearefractal/glob-stream) - Streaming alternative\n- [matcher](https://github.com/sindresorhus/matcher) - Simple wildcard matching\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/globby.git"},"users":{"fill":true,"noyobo":true,"zhangyaochun":true,"schnittstabil":true,"laravelfanatic":true,"ddffx":true,"bret":true,"mariusc23":true,"tomekf":true,"sapientnitrola":true,"arttse":true,"igorpupkinable":true,"rokt33r":true,"mysticatea":true,"nichoth":true,"tongjieme":true,"recursion_excursion":true,"koalaylj":true,"dennisli87":true,"abdihaikal":true,"eerne":true,"monjer":true,"eijs":true,"usingthesystem":true,"drewigg":true,"seangenabe":true,"aitoralejandro":true,"necanicum":true,"shangsinian":true,"laomu":true,"ru7hl355":true,"simonfan":true,"gavinning":true,"jon_shen":true,"alexxnica":true,"heartnett":true,"jrobinsonc":true},"bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"license":"MIT","versions":{"0.1.0":{"name":"globby","version":"0.1.0","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","expand"],"dependencies":{"array-differ":"^0.1.0","array-union":"^0.1.0","async":"^0.9.0","glob":"^4.0.2"},"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@0.1.0","_shasum":"133eb75f549d2cd2306cef1781e47e7671576a02","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"133eb75f549d2cd2306cef1781e47e7671576a02","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"globby","version":"0.1.1","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","wildcards","expand","multi","multiple","array","all","gulpfriendly","fnmatch","traverse","filesystem","fs","filter","util","utility"],"dependencies":{"array-differ":"^0.1.0","array-union":"^0.1.0","async":"^0.9.0","glob":"^4.0.2"},"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@0.1.1","_shasum":"cbec63df724b4bea458b79a16cc0e3b1f2ca8620","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"cbec63df724b4bea458b79a16cc0e3b1f2ca8620","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-0.1.1.tgz"},"directories":{}},"1.0.0":{"name":"globby","version":"1.0.0","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","wildcards","expand","multi","multiple","array","all","gulpfriendly","fnmatch","traverse","filesystem","fs","filter","util","utility"],"dependencies":{"array-differ":"^1.0.0","array-union":"^1.0.1","async":"^0.9.0","glob":"^4.0.2"},"devDependencies":{"mocha":"*"},"gitHead":"dd3e3fa37824c5fb3bb49e25da20f03d5f46ed55","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@1.0.0","_shasum":"49edf76fa45bf214423e812f4035060f1a2cfb51","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"49edf76fa45bf214423e812f4035060f1a2cfb51","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"globby","version":"1.1.0","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","wildcards","expand","multi","multiple","array","all","gulpfriendly","fnmatch","traverse","filesystem","fs","filter","util","utility"],"dependencies":{"array-union":"^1.0.1","async":"^0.9.0","glob":"^4.0.2","minimatch":"^2.0.1"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8"},"gitHead":"f6191fb39132b84534c9b1058e1e4af608c67eea","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@1.1.0","_shasum":"182928fafef4a036959caff1cb7b458b5b442a81","_from":".","_npmVersion":"2.1.16","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"182928fafef4a036959caff1cb7b458b5b442a81","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"globby","version":"1.2.0","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","wildcards","expand","multi","multiple","array","all","gulpfriendly","fnmatch","traverse","filesystem","fs","filter","util","utility"],"dependencies":{"array-union":"^1.0.1","async":"^0.9.0","glob":"^4.4.0","object-assign":"^2.0.0"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8"},"gitHead":"a9f08a55db62ab333883c1f05e716ddc707fdc16","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@1.2.0","_shasum":"c7c97ad1cc6f8594811da1eb82906a852ba47da4","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"c7c97ad1cc6f8594811da1eb82906a852ba47da4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-1.2.0.tgz"},"directories":{}},"2.0.0":{"name":"globby","version":"2.0.0","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","wildcards","expand","multi","multiple","array","all","gulpfriendly","fnmatch","traverse","filesystem","fs","filter","util","utility"],"dependencies":{"array-union":"^1.0.1","async":"^0.9.0","glob":"^5.0.3","object-assign":"^2.0.0"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8"},"gitHead":"a0829c49932cb5afeba8ed7b13784fbf98e356b2","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@2.0.0","_shasum":"a401a4db2cc0c246ee2a45c19fece98a510eafbc","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.10.36","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"a401a4db2cc0c246ee2a45c19fece98a510eafbc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-2.0.0.tgz"},"directories":{}},"2.1.0":{"name":"globby","version":"2.1.0","description":"Extends `glob` with support for multiple patterns","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"mocha"},"files":["index.js"],"keywords":["glob","globs","globbing","minimatch","match","matcher","pattern","patterns","find","paths","files","folders","dirs","directories","wildcard","wildcards","expand","multi","multiple","array","all","gulpfriendly","fnmatch","traverse","filesystem","fs","filter","util","utility"],"dependencies":{"array-union":"^1.0.1","async":"^1.2.1","glob":"^5.0.3","object-assign":"^3.0.0"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8"},"gitHead":"2b49f02ac7211b8de3eb570e0d81d8733b249a9b","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@2.1.0","_shasum":"9e9192bcd33f4ab6a4f894e5e7ea8b713213c482","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"9e9192bcd33f4ab6a4f894e5e7ea8b713213c482","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-2.1.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.0.0":{"name":"globby","version":"3.0.0","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"xo && mocha"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","arrify":"^1.0.0","glob":"^5.0.3","object-assign":"^4.0.1","pify":"^1.0.0","pinkie-promise":"^1.0.0"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"3f0e82bc72a35ba54d052ff0edaad55228f4ee8e","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@3.0.0","_shasum":"9f8592c0c50aad78d12802ba87fb96082aaf7e93","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"9f8592c0c50aad78d12802ba87fb96082aaf7e93","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-3.0.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.0.1":{"name":"globby","version":"3.0.1","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"xo && mocha"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","arrify":"^1.0.0","glob":"^5.0.3","object-assign":"^4.0.1","pify":"^2.0.0","pinkie-promise":"^1.0.0"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"55b2e222eb804588dfb56a910d96a5cf2831704d","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@3.0.1","_shasum":"2094af8421e19152150d5893eb6416b312d9a22f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2094af8421e19152150d5893eb6416b312d9a22f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-3.0.1.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"4.0.0":{"name":"globby","version":"4.0.0","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/globby"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"xo && mocha"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","arrify":"^1.0.0","glob":"^6.0.1","object-assign":"^4.0.1","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"glob-stream":"git+https://github.com/wearefractal/glob-stream#master","globby":"git+https://github.com/sindresorhus/globby#master","matcha":"^0.6.0","mocha":"*","rimraf":"^2.2.8","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"70389b06d4633868ea016ce38956d0a86aa90a23","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby","_id":"globby@4.0.0","_shasum":"36ff06c5a9dc1dbc201f700074992882857e9817","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"36ff06c5a9dc1dbc201f700074992882857e9817","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-4.0.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"4.1.0":{"name":"globby","version":"4.1.0","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/globby.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"xo && mocha"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","arrify":"^1.0.0","glob":"^6.0.1","object-assign":"^4.0.1","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"glob-stream":"github:wearefractal/glob-stream#master","globby":"github:sindresorhus/globby#master","matcha":"^0.7.0","mocha":"*","rimraf":"^2.2.8","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"be0f9481251b163a94328519ecdc6305d059e6fc","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby#readme","_id":"globby@4.1.0","_shasum":"080f54549ec1b82a6c60e631fc82e1211dbe95f8","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"080f54549ec1b82a6c60e631fc82e1211dbe95f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-4.1.0.tgz"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/globby-4.1.0.tgz_1463549816081_0.4191678147763014"},"directories":{}},"5.0.0":{"name":"globby","version":"5.0.0","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/globby.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"xo && ava"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","arrify":"^1.0.0","glob":"^7.0.3","object-assign":"^4.0.1","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","glob-stream":"github:wearefractal/glob-stream#master","globby":"github:sindresorhus/globby#master","matcha":"^0.7.0","rimraf":"^2.2.8","xo":"*"},"gitHead":"2cb6d1f112407b3eca42ac87c810e7715189e708","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby#readme","_id":"globby@5.0.0","_shasum":"ebd84667ca0dbb330b99bcfc68eac2bc54370e0d","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.11.0","_npmUser":{"name":"ult_combo","email":"ult_combo@hotmail.com"},"maintainers":[{"name":"schnittstabil","email":"michael@schnittstabil.de"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"ult_combo","email":"ultcombo@gmail.com"}],"dist":{"shasum":"ebd84667ca0dbb330b99bcfc68eac2bc54370e0d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-5.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/globby-5.0.0.tgz_1465626598422_0.48254713881760836"},"directories":{}},"6.0.0":{"name":"globby","version":"6.0.0","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/globby.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update globby glob-stream && matcha bench.js","test":"xo && ava"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","glob":"^7.0.3","object-assign":"^4.0.1","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","glob-stream":"github:wearefractal/glob-stream#master","globby":"github:sindresorhus/globby#master","matcha":"^0.7.0","rimraf":"^2.2.8","xo":"*"},"gitHead":"f7fde2ecb6eaf773dea39e11a1dc704c3fc2dd38","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby#readme","_id":"globby@6.0.0","_shasum":"8f5710eda32296ac53f011a97dccc70e936685dc","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"8f5710eda32296ac53f011a97dccc70e936685dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-6.0.0.tgz"},"maintainers":[{"name":"schnittstabil","email":"michael@schnittstabil.de"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"ult_combo","email":"ultcombo@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/globby-6.0.0.tgz_1469224506166_0.6408459325321019"},"directories":{}},"6.1.0":{"name":"globby","version":"6.1.0","description":"Extends `glob` with support for multiple patterns and exposes a Promise API","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/globby.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"bench":"npm update glob-stream && matcha bench.js","test":"xo && ava"},"files":["index.js"],"keywords":["all","array","directories","dirs","expand","files","filesystem","filter","find","fnmatch","folders","fs","glob","globbing","globs","gulpfriendly","match","matcher","minimatch","multi","multiple","paths","pattern","patterns","traverse","util","utility","wildcard","wildcards","promise"],"dependencies":{"array-union":"^1.0.1","glob":"^7.0.3","object-assign":"^4.0.1","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","glob-stream":"github:gulpjs/glob-stream#master","globby":"github:sindresorhus/globby#master","matcha":"^0.7.0","rimraf":"^2.2.8","xo":"^0.16.0"},"gitHead":"5c647384e349e90a13658778029b96b28112a972","bugs":{"url":"https://github.com/sindresorhus/globby/issues"},"homepage":"https://github.com/sindresorhus/globby#readme","_id":"globby@6.1.0","_shasum":"f5a6d70e8395e21c858fb0489d64df02424d506c","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.6.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"f5a6d70e8395e21c858fb0489d64df02424d506c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/globby/-/globby-6.1.0.tgz"},"maintainers":[{"name":"schnittstabil","email":"michael@schnittstabil.de"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"ult_combo","email":"ultcombo@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/globby-6.1.0.tgz_1478246824721_0.12834556330926716"},"directories":{}}},"name":"globby","time":{"modified":"2017-08-04T13:13:00.285Z","created":"2014-06-21T13:52:26.626Z","0.1.0":"2014-06-21T13:52:26.626Z","0.1.1":"2014-06-21T14:47:47.200Z","1.0.0":"2014-11-18T08:37:51.732Z","1.1.0":"2015-01-04T09:06:52.874Z","1.2.0":"2015-02-23T05:41:29.901Z","2.0.0":"2015-04-07T09:54:45.265Z","2.1.0":"2015-06-27T09:50:56.423Z","3.0.0":"2015-08-30T03:35:21.501Z","3.0.1":"2015-09-04T07:52:36.286Z","4.0.0":"2015-11-14T19:21:25.662Z","4.1.0":"2016-05-18T05:37:00.416Z","5.0.0":"2016-06-11T06:29:58.916Z","6.0.0":"2016-07-22T21:55:08.133Z","6.1.0":"2016-11-04T08:07:04.948Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/globby#readme"}