{"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"dist-tags":{"latest":"3.0.4"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Parse a glob pattern into an object of tokens.","readme":"# parse-glob [![NPM version](https://badge.fury.io/js/parse-glob.svg)](http://badge.fury.io/js/parse-glob)  [![Build Status](https://travis-ci.org/jonschlinkert/parse-glob.svg)](https://travis-ci.org/jonschlinkert/parse-glob)\n\n> Parse a glob pattern into an object of tokens.\n\n**Changes from v1.0.0 to v3.0.4**\n\n* all path-related properties are now on the `path` object\n* all boolean properties are now on the `is` object\n* adds `base` property\n\nSee the [properties](#properties) section for details.\n\nInstall with [npm](https://www.npmjs.com/)\n\n```sh\n$ npm i parse-glob --save\n```\n\n* parses 1,000+ glob patterns in 29ms (2.3 GHz Intel Core i7)\n* Extensive [unit tests](./test.js) (more than 1,000 lines), covering wildcards, globstars, character classes, brace patterns, extglobs, dotfiles and other complex patterns.\n\nSee the tests for [hundreds of examples](./test.js).\n\n## Usage\n\n```js\nvar parseGlob = require('parse-glob');\n```\n\n**Example**\n\n```js\nparseGlob('a/b/c/**/*.{yml,json}');\n```\n\n**Returns:**\n\n```js\n{ orig: 'a/b/c/**/*.{yml,json}',\n  is:\n   { glob: true,\n     negated: false,\n     extglob: false,\n     braces: true,\n     brackets: false,\n     globstar: true,\n     dotfile: false,\n     dotdir: false },\n  glob: '**/*.{yml,json}',\n  base: 'a/b/c',\n  path:\n   { dirname: 'a/b/c/**/',\n     basename: '*.{yml,json}',\n     filename: '*',\n     extname: '.{yml,json}',\n     ext: '{yml,json}' } }\n```\n\n## Properties\n\nThe object returned by parseGlob has the following properties:\n\n* `orig`: a copy of the original, unmodified glob pattern\n* `is`: an object with boolean information about the glob:\n  - `glob`: true if the pattern actually a glob pattern\n  - `negated`: true if it's a negation pattern (`!**/foo.js`)\n  - `extglob`: true if it has extglobs (`@(foo|bar)`)\n  - `braces`: true if it has braces (`{1..2}` or `.{txt,md}`)\n  - `brackets`: true if it has POSIX brackets (`[[:alpha:]]`)\n  - `globstar`: true if the pattern has a globstar (double star, `**`)\n  - `dotfile`: true if the pattern should match dotfiles\n  - `dotdir`: true if the pattern should match dot-directories (like `.git`)\n* `glob`: the glob pattern part of the string, if any\n* `base`: the non-glob part of the string, if any\n* `path`: file path segments\n  - `dirname`: directory\n  - `basename`: file name with extension\n  - `filename`: file name without extension\n  - `extname`: file extension with dot\n  - `ext`: file extension without dot\n\n## Related\n* [glob-base](https://www.npmjs.com/package/glob-base): Returns an object with the (non-glob) base path and the actual pattern. | [homepage](https://github.com/jonschlinkert/glob-base)\n* [glob-parent](https://www.npmjs.com/package/glob-parent): Strips glob magic from a string to provide the parent path | [homepage](https://github.com/es128/glob-parent)\n* [glob-path-regex](https://www.npmjs.com/package/glob-path-regex): Regular expression for matching the parts of glob pattern. | [homepage](https://github.com/regexps/glob-path-regex)\n* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern. | [homepage](https://github.com/jonschlinkert/is-glob)\n* [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… [more](https://www.npmjs.com/package/micromatch) | [homepage](https://github.com/jonschlinkert/micromatch)\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/parse-glob/issues/new).\n\n## Tests\n\nInstall dev dependencies:\n\n```sh\n$ npm i -d && npm test\n```\n\n## Author\n\n**Jon Schlinkert**\n\n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## License\n\nCopyright © 2014-2015 Jon Schlinkert\nReleased under the MIT license.\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on September 22, 2015._","repository":{"type":"git","url":"git+https://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":"MIT","versions":{"1.0.0":{"name":"parse-glob","description":"Parse a glob pattern into an object of path parts.","version":"1.0.0","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"7b11be52be45e2c82c596fa4a0c888faeaa60020","_id":"parse-glob@1.0.0","_shasum":"11c9229c33d29ab8f67ec47952c10c03c69de408","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"11c9229c33d29ab8f67ec47952c10c03c69de408","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-1.0.0.tgz","integrity":"sha512-+JnszTK4Sil72dpo+/ZZH9BQJgWHK5PJ9lIaklQs6sS5/VfSiN4CITCwMpmF0TbF7V39JagrIVb1CBG0cm54Uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsLmbj7dk4b4lxVxxK0dVtY1l63K56GvnBUjpWdUpKRAIhALIPsVgWtlSd2qfhsbgAyaY7Ph4bCERtgrcP1fypSIwo"}]}},"1.0.1":{"name":"parse-glob","description":"Parse a glob pattern into an object of path parts.","version":"1.0.1","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"341c6851b673aa06e831b9fb209a3e27fbc8b97b","_id":"parse-glob@1.0.1","_shasum":"0f19fed0d52cf3f7e77cea12828a051c01b4f0d9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"0f19fed0d52cf3f7e77cea12828a051c01b4f0d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-1.0.1.tgz","integrity":"sha512-nn+ilDLN0XZ4Ql4spxDyE58o6AAxWTzXPbbfVonnkeqyvSJOlMbiFuWRz0NmoZ3G0ac7EeVA6NXsJGtWieenfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDw+3mG30cGohJVj/9wj8h8GHxrKLpsNXYHwgyX9HncZAIhALbiNYhbFL2f1bACzQ/UmzCcZJpMVvkNgj00HcPf07ut"}]}},"1.0.2":{"name":"parse-glob","description":"Parse a glob pattern into an object of path parts.","version":"1.0.2","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"8328f0a777ac0e252ba01e5e6ecf0ab28c276374","_id":"parse-glob@1.0.2","_shasum":"514186394015fc977e3e93bc77ed7533332f57e0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"514186394015fc977e3e93bc77ed7533332f57e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-1.0.2.tgz","integrity":"sha512-TqfBRQeO9LpX8CZzUZfL53xnOLk7KJx8iPINSccqq/jriDDLskOZnn3rVMzSL6g1YLkddH+2rlTP6zN1t5nRag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAX6FD5FQN/UFUkH3PprLorbd+o8elUNQutusOviL9JUAiEAqTONefZeVed1HprWMziOwslf2dIGky7FBreaJTiSB5c="}]}},"1.1.0":{"name":"parse-glob","description":"Parse a glob pattern into an object of path parts.","version":"1.1.0","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"57042354fca6e85fd85dd8cf4b6736cdc74c8313","_id":"parse-glob@1.1.0","_shasum":"d5f9d34798035b1d73f7c2a554020efefc8d3a8d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"d5f9d34798035b1d73f7c2a554020efefc8d3a8d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-1.1.0.tgz","integrity":"sha512-CPaefQ5f1+N+mwnAwm4ztraSbzIIEsNVa4btyVTa29nF8prt+lPWyt7kmum9m/xCo83Bs+SzC5XIKl/xUuzAGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBVdTtMa0+lEoKx8FRCr2+Q7LjYLdRkdSwLuuyuGeE+OAiEA4/4aBwe8QONkrs/FnHfHzlMIhoiUswM4YJOFMb2s5Mw="}]}},"1.2.0":{"name":"parse-glob","description":"Parse a glob pattern into an object of path parts.","version":"1.2.0","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"1455978abcb90ec7d552cfde0fcc002481d17d1e","_id":"parse-glob@1.2.0","_shasum":"6cf58b17917d1f53714437f3e0586e32556bfc6c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"6cf58b17917d1f53714437f3e0586e32556bfc6c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-1.2.0.tgz","integrity":"sha512-jN9R0s9cWv3ouAtgq+3TjxQSVp34TknDprdyJ5QluB5b+Do0Ru8+Urrfin+aj4vfWSEIMbp3cPlbo9KUkI3NxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGygUfZYuQmNaIBJPWfAwv76KI2pXFq0M81F0FYhYQFUAiEA1gMwakJoKG1sR4QgD2XfP/fpZw9PCqBxy+akxs7Jrqc="}]}},"2.0.0":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"2.0.0","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"60918796b4af131f91541b0e22c9f527c273df35","_id":"parse-glob@2.0.0","_shasum":"a1d65c614360179f3b9c494833ec90efe714d5a0","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"a1d65c614360179f3b9c494833ec90efe714d5a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-2.0.0.tgz","integrity":"sha512-JABqKdGt/awRGoWIix3DHMpc5EzV9IJRK2moc7JDSa2V4SJL0DVMeQuAbIu8eKB/uursU4R+9oK2xK8VIQiXog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFqutXpVs2TvcB3nVm7FbXrl1C5LQZx8LeLDtEFcsJThAiEA2LNUdQKiFL3iignozLo0Ela4qQwfhNfT7MRdhuXokLU="}]}},"2.0.1":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"2.0.1","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"mocha":"*"},"keywords":[],"gitHead":"f09e88ae65850e047ca7caa28ee304eccab319da","_id":"parse-glob@2.0.1","_shasum":"07495f6b0e548bec62a6442d44bf494ad2ac84af","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"07495f6b0e548bec62a6442d44bf494ad2ac84af","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-2.0.1.tgz","integrity":"sha512-36UebUuUuxskxhdqxCMGCqM+1KxR1FTrtx1Wjpqx+3XkGmpviBh01YGTaL36kojz4YgWcsoMmzzUp2ZiCypO4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEwn8gJlnciNwrrWFwQVIyI2MqGsMLkzzzS8FUfydzXsAiBj7WwQGS56gY/nq2c2JSw//W1K7RdUIVSLlcSXbehtbg=="}]}},"2.1.0":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"2.1.0","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"glob-base":"^0.1.0","glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"lodash":"^3.3.1","mocha":"*"},"gitHead":"6f478f9e37c12454553274060b112541f24dad5e","_id":"parse-glob@2.1.0","_shasum":"2439991c30cbaafff8bb3f0bd654267cd0cd9177","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"2439991c30cbaafff8bb3f0bd654267cd0cd9177","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-2.1.0.tgz","integrity":"sha512-aSdKtzNdbW8rGoaXT4yhk0crR80O7y380jXrKutHSiDEZaMhUFWxUpJYyhzl118GsuvJsaujjLublhoSCzV5gQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDcD7hzKbnLOOY+6Uul5wJASnTPY6k+pP3B85d3IYtCUAiEArntVRltmG3RKLNFyJhH6yVUyxHw8u/aGc20tkB5m3v8="}]}},"2.1.1":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"2.1.1","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js"},"dependencies":{"glob-base":"^0.1.0","glob-path-regex":"^1.0.0","is-glob":"^1.1.0"},"devDependencies":{"browserify":"^9.0.3","lodash":"^3.3.1","mocha":"*"},"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"gitHead":"0cb22a21c28b8427b7b77c2537c7d9faa81615d4","_id":"parse-glob@2.1.1","_shasum":"5b1368bae767a22b135a2b50046b34f4eef907f6","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"5b1368bae767a22b135a2b50046b34f4eef907f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-2.1.1.tgz","integrity":"sha512-HfktnHihQVy5f1wX9Kcg433LxgrahVfvdrC6t25hWxYyjoQ01WZtmCHxYCMPBU9+hlyCcnP8erQ5CfXRnPVnNA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHoqDH16MiFT1LcwHAb+TvhlnHTv/KNjUkokMwQ7IV3mAiAnTg4l+TsHk0N75Se6PBvtWizG7sML1HpaQ+AMJ+2dqg=="}]}},"3.0.0":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"3.0.0","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js"},"dependencies":{"glob-base":"^0.2.0","is-dotfile":"^1.0.0","is-extglob":"^1.0.0","is-glob":"^1.1.3"},"devDependencies":{"browserify":"^9.0.3","lodash":"^3.3.1","mocha":"*"},"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"gitHead":"3a5a5bee37aa91da9d8ef757571e2579fd0f5a87","_id":"parse-glob@3.0.0","_shasum":"190a858ea70ccc6d74a32cf965feadd8fdd3bfe9","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"190a858ea70ccc6d74a32cf965feadd8fdd3bfe9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-3.0.0.tgz","integrity":"sha512-Sdy1j8ZW9WFKEbDpguHb+rO2Fru03y4Mq3WWyukdPC3M8o6uTvhxbyDdOqY6xmZCSXn7Bti+ZEFS3yDBIwZ6ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH5BW6JVpDzS9oxfRWhTaeX/SIqCox/O/rfHwGucoxB7AiEAmfByE7OmOow6coLMDK0mE7MpJsxmcXnmZR1Pg3V2ZV0="}]}},"3.0.1":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"3.0.1","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js"},"dependencies":{"glob-base":"^0.2.0","is-dotfile":"^1.0.0","is-extglob":"^1.0.0","is-glob":"^1.1.3"},"devDependencies":{"browserify":"^9.0.3","lodash":"^3.3.1","mocha":"*"},"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"gitHead":"6817278154aa74eab0cbfbba8e3ca5022b577f6a","_id":"parse-glob@3.0.1","_shasum":"6dc718c0265f41096e106bb9adb40d327b7ab588","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"6dc718c0265f41096e106bb9adb40d327b7ab588","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-3.0.1.tgz","integrity":"sha512-OQ3703m8+7FPRElY58jmukyAy9Qp0CB9bdKqKsd+izTOwz9GZ0v0ei8DydAFUMGVWtwJDfO8XtsvqkTbKi9kew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEMrpZj9/DUIu3Z7PkDvvOrM1I2fD7YdOYK8giGrfQhxAiAEWtDlITJl2xk3WXd1J8VwpS/ULka+ETKIdAwvEPNcdA=="}]}},"3.0.2":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"3.0.2","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js"},"dependencies":{"glob-base":"^0.2.0","is-dotfile":"^1.0.0","is-extglob":"^1.0.0","is-glob":"^1.1.3"},"devDependencies":{"browserify":"^9.0.3","lodash":"^3.3.1","mocha":"*"},"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"gitHead":"6817278154aa74eab0cbfbba8e3ca5022b577f6a","_id":"parse-glob@3.0.2","_shasum":"8f68833a1af801bbcbc1d0a09b79755d6b1198d9","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"8f68833a1af801bbcbc1d0a09b79755d6b1198d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-3.0.2.tgz","integrity":"sha512-fSAjBZfwj/l2f5L8lexZNhyZdSn5hFX7Nkk8/5lQlUlIVMTV6c2fzKvZ63CJtwmngspVU5Vpu6X3JdrKkej5iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDeAOZRQL/mMEK0+Qjh5SXnQagxPNILy9Zuf/boGdrBawIgDtvqLdDMSE+MmGs9iwANk9gr2h+URcl0m5JkPE+dfxM="}]}},"3.0.3":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"3.0.3","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/parse-glob/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js"},"dependencies":{"glob-base":"^0.3.0","is-dotfile":"^1.0.0","is-extglob":"^1.0.0","is-glob":"^2.0.0"},"devDependencies":{"browserify":"^9.0.3","lodash":"^3.3.1","mocha":"*"},"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"gitHead":"92b8feaeb9de86724171fcd839ba4bf911e9799b","_id":"parse-glob@3.0.3","_shasum":"b6830546ad8aeaa37d5f32f95f208079af5a6727","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"b6830546ad8aeaa37d5f32f95f208079af5a6727","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-3.0.3.tgz","integrity":"sha512-2ltI7cMmwAvLG+FQqQiQcC9QJMtS5TCsq3Qw7Qhe9N1Irc0R7ptgt8T/jJg1waUWxgdct8AXorvY6q8kFDhS2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICpdOIQrOTRHCzF6Zp4m+t2X8vXaylaU1jFpVvmudUn1AiEA113xHAedz7Ivkh31t6kpTS+iS90BFykjGZfiAleksGE="}]}},"3.0.4":{"name":"parse-glob","description":"Parse a glob pattern into an object of tokens.","version":"3.0.4","homepage":"https://github.com/jonschlinkert/parse-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/parse-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/parse-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","prepublish":"browserify -o browser.js -e index.js"},"dependencies":{"glob-base":"^0.3.0","is-dotfile":"^1.0.0","is-extglob":"^1.0.0","is-glob":"^2.0.0"},"devDependencies":{"browserify":"^9.0.3","lodash":"^3.3.1","mocha":"*"},"keywords":["glob","match","bash","expand","expansion","expression","file","files","filter","find","glob","globbing","globs","globstar","match","matcher","matches","matching","path","pattern","patterns","regex","regexp","regular","shell","wildcard"],"gitHead":"9bfccb63acdeb3b1ed62035b3adef0e5081d8fc6","_id":"parse-glob@3.0.4","_shasum":"b2c376cfb11f35513badd173ef0bb6e3a388391c","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"b2c376cfb11f35513badd173ef0bb6e3a388391c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/parse-glob/-/parse-glob-3.0.4.tgz","integrity":"sha512-FC5TeK0AwXzq3tUBFtH74naWkPQCEWs4K+xMxWZBlKDWu0bVHXGZa+KKqxKidd7xwhdZ19ZNuF2uO1M/r196HA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICFY17xcErSoJtL2W6l5olqLSxSydQlmJV5MS58+fmQJAiEAoM/4RUNxA5GEeAoqGdMUODf+UG7zj+wZMVtRDeWgybo="}]}}},"name":"parse-glob","time":{"modified":"2022-06-23T10:43:24.955Z","created":"2015-02-07T21:20:36.366Z","1.0.0":"2015-02-07T21:20:36.366Z","1.0.1":"2015-02-07T21:33:21.946Z","1.0.2":"2015-02-07T21:58:05.388Z","1.1.0":"2015-02-11T01:21:17.804Z","1.2.0":"2015-02-11T14:48:58.313Z","2.0.0":"2015-02-17T11:28:58.695Z","2.0.1":"2015-02-17T12:57:26.086Z","2.1.0":"2015-03-04T21:46:18.034Z","2.1.1":"2015-03-06T20:38:19.339Z","3.0.0":"2015-03-09T02:00:55.486Z","3.0.1":"2015-04-18T05:34:38.899Z","3.0.2":"2015-04-25T08:39:34.799Z","3.0.3":"2015-09-22T15:14:26.692Z","3.0.4":"2015-09-22T15:18:26.837Z"},"readmeFilename":"README.md","homepage":"https://github.com/jonschlinkert/parse-glob"}