{"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"},{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"brian.woodward@gmail.com"}],"keywords":["absolute","file","filepath","glob","negate","negative","path","pattern","resolve","to"],"dist-tags":{"latest":"3.0.0"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","readme":"# to-absolute-glob [![NPM version](https://img.shields.io/npm/v/to-absolute-glob.svg?style=flat)](https://www.npmjs.com/package/to-absolute-glob) [![NPM downloads](https://img.shields.io/npm/dm/to-absolute-glob.svg?style=flat)](https://npmjs.org/package/to-absolute-glob) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/to-absolute-glob.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/to-absolute-glob) [![Windows Build Status](https://img.shields.io/appveyor/ci/jonschlinkert/to-absolute-glob.svg?style=flat&label=AppVeyor)](https://ci.appveyor.com/project/jonschlinkert/to-absolute-glob)\n\n> Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\nnpm install to-absolute-glob\n```\n\n\nOr install with [yarn](https://yarnpkg.com/):\n\n```sh\nyarn add to-absolute-glob\n```\n\n## Usage\n\n```js\nconst toAbsGlob = require('to-absolute-glob');\ntoAbsGlob('a/*.js');\n//=> '/dev/foo/a/*.js'\n```\n\n## Examples\n\nGiven the current project folder (cwd) is `/dev/foo/`:\n\n**makes a path absolute**\n\n```js\ntoAbsGlob('a');\n//=> '/dev/foo/a'\n```\n\n**makes a glob absolute**\n\n```js\ntoAbsGlob('a/*.js');\n//=> '/dev/foo/a/*.js'\n```\n\n**retains trailing slashes**\n\n```js\ntoAbsGlob('a/*/');\n//=> '/dev/foo/a/*/'\n```\n\n**retains trailing slashes with cwd**\n\n```js\ntoAbsGlob('./fixtures/whatsgoingon/*/', {cwd: __dirname});\n//=> '/dev/foo/'\n```\n\n**makes a negative glob absolute**\n\n```js\ntoAbsGlob('!a/*.js');\n//=> '!/dev/foo/a/*.js'\n```\n\n**from a cwd**\n\n```js\ntoAbsGlob('a/*.js', {cwd: 'foo'});\n//=> '/dev/foo/foo/a/*.js'\n```\n\n**makes a negative glob absolute from a cwd**\n\n```js\ntoAbsGlob('!a/*.js', {cwd: 'foo'});\n//=> '!/dev/foo/foo/a/*.js'\n```\n\n**from a root path**\n\n```js\ntoAbsGlob('/a/*.js', {root: 'baz'});\n//=> '/dev/foo/baz/a/*.js'\n```\n\n**from a root slash**\n\n```js\ntoAbsGlob('/a/*.js', {root: '/'});\n//=> '/dev/foo/a/*.js'\n```\n\n**from a negative root path**\n\n```js\ntoAbsGlob('!/a/*.js', {root: 'baz'});\n//=> '!/dev/foo/baz/a/*.js'\n```\n\n**from a negative root slash**\n\n```js\ntoAbsGlob('!/a/*.js', {root: '/'});\n//=> '!/dev/foo/a/*.js'\n```\n\n## About\n\n### Related projects\n\n* [has-glob](https://www.npmjs.com/package/has-glob): Returns `true` if an array has a glob pattern. | [homepage](https://github.com/jonschlinkert/has-glob \"Returns `true` if an array has a glob pattern.\")\n* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob \"Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet\")\n* [is-valid-glob](https://www.npmjs.com/package/is-valid-glob): Return true if a value is a valid glob pattern or patterns. | [homepage](https://github.com/jonschlinkert/is-valid-glob \"Return true if a value is a valid glob pattern or patterns.\")\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Contributors\n\n| **Commits** | **Contributor**<br/> |\n| --- | --- |\n| 16 | [doowb](https://github.com/doowb) |\n| 15 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 1 | [phated](https://github.com/phated) |\n| 1 | [erikkemperman](https://github.com/erikkemperman) |\n\n### Building docs\n\n_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_\n\nTo generate the readme and API documentation with [verb](https://github.com/verbose/verb):\n\n```sh\n$ npm install -g verb verb-generate-readme && verb\n```\n\n### Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm install -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 (c) [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT license](https://github.com/jonschlinkert/to-absolute-glob/blob/master/LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v3.0.0, on November 17, 2022._","repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","versions":{"0.1.0":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1"},"devDependencies":{"mocha":"*"},"keywords":["resolve","pattern","absolute","glob"],"verb":{"related":{"list":["is-glob","is-valid-glob","has-glob"]}},"gitHead":"42428d988edb8c0cd7d97fbc0622b9720dc57437","_id":"to-absolute-glob@0.1.0","_shasum":"e24acadac35f02b4d5905fae8acc8e333a15f67b","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"e24acadac35f02b4d5905fae8acc8e333a15f67b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-0.1.0.tgz","integrity":"sha512-N+xIX+ScEwgYrGZnm1jON6X7yCkzvTp3XPKbC5Z4zTxXmogu4DCnBh44GvL7tsofvlkxidDfOcaditZhc6Y6hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDt9MXvsBbk5+t4hefC2ArGDfwffoyaobuszNELHbj3gAIgcsR+LkHzH7pPZ8hv+JK9vojSwCVRLZAgv3NEhvbNjqA="}]},"directories":{}},"0.1.1":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1"},"devDependencies":{"mocha":"*"},"keywords":["resolve","pattern","absolute","glob"],"verb":{"related":{"list":["is-glob","is-valid-glob","has-glob"]}},"gitHead":"42428d988edb8c0cd7d97fbc0622b9720dc57437","_id":"to-absolute-glob@0.1.1","_shasum":"1cdfa472a9ef50c239ee66999b662ca0eb39937f","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"1cdfa472a9ef50c239ee66999b662ca0eb39937f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz","integrity":"sha512-Vvl5x6zNf9iVG1QTWeknmWrKzZxaeKfIDRibrZCR3b2V/2NlFJuD2HV7P7AVjaKLZNqLPHqyr0jGrW0fTcxCPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDETiRGgtBC+PRZlW5CMkEE0jLFia0NWuwD7M9isJwv4AiBfebzbcg04ffwU8FA/ZkC5GptayWFJLZMP7ywg/TXipA=="}]},"directories":{}},"1.0.0":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"1.0.0","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1"},"devDependencies":{"mocha":"^3.0.2"},"keywords":["absolute","glob","pattern","resolve","to"],"verb":{"related":{"list":["has-glob","is-glob","is-valid-glob"]}},"gitHead":"7345b75e317daa26a333da4f96d387912c6fcf9d","_id":"to-absolute-glob@1.0.0","_shasum":"45a67b6bed9e72c48a95af8bc7fe06581a7fb308","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"45a67b6bed9e72c48a95af8bc7fe06581a7fb308","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-1.0.0.tgz","integrity":"sha512-QrvyGkrHfhE5iy2XbtewTWVGAxvyhzmPMj++3qS+1k73awLSXbL0jT1Uc7Fvlp5LI2/VppFQB60DkG7454mNsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCYTzWpo6xIl4yJuxUgRaQMlCzPlWCesWPV5f0khPSzrQIhANhnI9swxsbP0GXDMuH/DigSMT9ts7H8iN+ZkcX9yAEk"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/to-absolute-glob-1.0.0.tgz_1473731001330_0.6241108372341841"},"directories":{}},"1.0.1":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"1.0.1","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1"},"devDependencies":{"gulp-format-md":"^0.1.10","mocha":"^3.0.2"},"keywords":["absolute","glob","pattern","resolve","to"],"verb":{"related":{"list":["has-glob","is-glob","is-valid-glob"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"reflinks":["verb","verb-generate-readme"]},"gitHead":"0ae451156d72257b968d364b043e8718528296b4","_id":"to-absolute-glob@1.0.1","_shasum":"62685b7c7ff601fed3570f80cddbfe60503bc4de","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"62685b7c7ff601fed3570f80cddbfe60503bc4de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-1.0.1.tgz","integrity":"sha512-Rt+Nz/ZrrwGZLWfjxx6etoBhia51U0HLVAR+HsZE5iOjwHC/MNU2SRMeCMEpAGAytNaJ6PFEeOOtUcKAgnazUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJlGv52PJObRBZJGJj+RSs/I6/lpGPu5fSaUs3HcegXgIgMjl+p147Dpde7oPD9ZLSCSsZGOD4+h929CJjexAKNPI="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/to-absolute-glob-1.0.1.tgz_1473860497894_0.8730693601537496"},"directories":{}},"1.1.0":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"1.1.0","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1","is-negated-glob":"^1.0.0"},"devDependencies":{"gulp-format-md":"^0.1.10","mocha":"^3.0.2"},"keywords":["absolute","glob","pattern","resolve","to"],"verb":{"related":{"list":["has-glob","is-glob","is-valid-glob"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"reflinks":["verb","verb-generate-readme"]},"gitHead":"7ff2fce346bd0a7b00c2e36506c74f31a45b2aaa","_id":"to-absolute-glob@1.1.0","_shasum":"c6f6f735e41395300841539b0618e02df0d30306","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"c6f6f735e41395300841539b0618e02df0d30306","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-1.1.0.tgz","integrity":"sha512-OWF3+OAtjsdbfqfWni7BMDUI3KYhLpdsUMbnx+F0ojuxJiB2fHE8uf659r1+58TXXPhyYWG8gpcr4KvkcU+nag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCk+0Yyk4jt11EPXjefDrrOiTyjgO7D0lVjM5vIIeoMiAIhAMdxpH9j2JxmVALY1oANJlPwBwXnj1GspemCYT26AxCv"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/to-absolute-glob-1.1.0.tgz_1474101936268_0.2230498839635402"},"directories":{}},"2.0.0":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"2.0.0","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1","is-absolute":"^0.2.5","is-negated-glob":"^1.0.0"},"devDependencies":{"gulp-format-md":"^0.1.10","mocha":"^3.0.2"},"keywords":["absolute","glob","pattern","resolve","to"],"verb":{"related":{"list":["has-glob","is-glob","is-valid-glob"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"reflinks":["verb","verb-generate-readme"]},"gitHead":"79d424c03ee5793447b261726414a9dddb7c58af","_id":"to-absolute-glob@2.0.0","_shasum":"6eaaf9892b02dd75369856439a2f86692004cb11","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.1.1","_npmUser":{"name":"anonymous","email":"brian.woodward@gmail.com"},"dist":{"shasum":"6eaaf9892b02dd75369856439a2f86692004cb11","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-2.0.0.tgz","integrity":"sha512-KfZLVaN2RGGOby6AlBKBR25ShztEEgd7W7DsbLtwib7qMuYVnL3xZq9auVNqEeG0nZUqNlLrQkZdb3H5wlGzOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+baQKDiskEf6WWh37PZfJZzBADvpvPYk9/eW2/YqQ3gIhAMJSiZgMlmg/cd76lGDJpwuFFMo1dEisAkrC3LkS/PJf"}]},"maintainers":[{"name":"anonymous","email":"brian.woodward@gmail.com"},{"name":"anonymous","email":"github@sellside.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/to-absolute-glob-2.0.0.tgz_1476735273617_0.03757163975387812"},"directories":{}},"2.0.1":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"2.0.1","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com","url":"https://twitter.com/BlaineBublitz"},{"name":"Brian Woodward","email":"brian.woodward@gmail.com","url":"https://github.com/doowb"},{"name":"Erik Kemperman","url":"https://github.com/erikkemperman"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"extend-shallow":"^2.0.1","is-absolute":"^0.2.5","is-negated-glob":"^1.0.0"},"devDependencies":{"gulp-format-md":"^0.1.11","mocha":"^3.0.2"},"keywords":["absolute","file","filepath","glob","negate","negative","path","pattern","resolve","to"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"related":{"list":["has-glob","is-glob","is-valid-glob"]},"reflinks":["verb","verb-generate-readme"]},"gitHead":"081c2153da90e2c77abff7a85d891611053cc335","_id":"to-absolute-glob@2.0.1","_shasum":"70c375805b9e3105e899ee8dbdd6a9aa108f407b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"brian.woodward@gmail.com"},{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"70c375805b9e3105e899ee8dbdd6a9aa108f407b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-2.0.1.tgz","integrity":"sha512-kbMvc3xdcw1FORDGpCFzYTWeaeFMfPAeS4Uhq5ul7VW3y3LViF9RfwGXKWh3MR3Z5+PKYvdYljlTjRUuM6yLQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAMT0G1xeP/vZ2as0HUpRzOmMt1ejuuoxtOnlCq9QkjkAiEAw3/H2UgdjCLNDfr+HvrvV9F2Ki7ahyadCij5NI+SBao="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/to-absolute-glob-2.0.1.tgz_1476743015838_0.15478942170739174"},"directories":{}},"2.0.2":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"2.0.2","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com","url":"https://twitter.com/BlaineBublitz"},{"name":"Brian Woodward","email":"brian.woodward@gmail.com","url":"https://github.com/doowb"},{"name":"Erik Kemperman","url":"https://github.com/erikkemperman"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"is-absolute":"^1.0.0","is-negated-glob":"^1.0.0"},"devDependencies":{"gulp-format-md":"^0.1.11","mocha":"^3.0.2"},"keywords":["absolute","file","filepath","glob","negate","negative","path","pattern","resolve","to"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"related":{"list":["has-glob","is-glob","is-valid-glob"]},"reflinks":["verb","verb-generate-readme"]},"gitHead":"5c698041f85268bc6e6934917040d0717233741f","_id":"to-absolute-glob@2.0.2","_shasum":"1865f43d9e74b0822db9f145b78cff7d0f7c849b","_from":".","_npmVersion":"2.15.1","_nodeVersion":"0.10.48","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"email":"blaine.bublitz@gmail.com","name":"anonymous"},{"email":"brian.woodward@gmail.com","name":"anonymous"},{"email":"github@sellside.com","name":"anonymous"}],"dist":{"shasum":"1865f43d9e74b0822db9f145b78cff7d0f7c849b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz","integrity":"sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE+IPox53Q9ZuiUFTexoHa70mP6vkOKIyuF2iLekqLK9AiEAgSeaXO7cckaVyijcUSDOPA9TNoiGmMXwICcNZTL7ZAc="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/to-absolute-glob-2.0.2.tgz_1513724859273_0.3958331998437643"},"directories":{}},"3.0.0":{"name":"to-absolute-glob","description":"Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.","version":"3.0.0","homepage":"https://github.com/jonschlinkert/to-absolute-glob","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com","url":"https://twitter.com/BlaineBublitz"},{"name":"Brian Woodward","email":"brian.woodward@gmail.com","url":"https://github.com/doowb"},{"name":"Erik Kemperman","url":"https://github.com/erikkemperman"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/to-absolute-glob.git"},"bugs":{"url":"https://github.com/jonschlinkert/to-absolute-glob/issues"},"license":"MIT","main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"is-absolute":"^1.0.0","is-negated-glob":"^1.0.0"},"devDependencies":{"gulp-format-md":"^2.0.0","mocha":"^10.1.0"},"keywords":["absolute","file","filepath","glob","negate","negative","path","pattern","resolve","to"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"related":{"list":["has-glob","is-glob","is-valid-glob"]},"reflinks":["verb","verb-generate-readme"]},"gitHead":"f346d01cf143e95fc117604c7f2e914efd905ccf","_id":"to-absolute-glob@3.0.0","_nodeVersion":"18.3.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-loO/XEWTRqpfcpI7+Jr2RR2Umaaozx1t6OSVWtMi0oy5F/Fxg3IC+D/TToDnxyAGs7uZBGT/6XmyDUxgsObJXA==","shasum":"d13663608718fd44bf68fa0f034abdd4fd157eca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/to-absolute-glob/-/to-absolute-glob-3.0.0.tgz","fileCount":4,"unpackedSize":9411,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICu3v3Vch/gTMXOQRV0lD0OoQOsFpABujst2FpeiKwvFAiBGcyJ6ha4gEmI6unhf9Cchd8LCefE8ZiWfKfXNl/OeWQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdtbDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmphmQ/+LIbs/KsNnkZHp0aVV3tBVZaJIMJ7huRFEaUC5raMG8QzodSI\r\ns9qnUboZJl4oV+UtbBhejrZlFwWhaHgZIfky8hkqdS6BVDSrSAibhvb3xQvX\r\nsXC+FG1SidGWBIzH5FFpuh+hBm/ahLZ8y/rzwXH6NsVzeSVuANvZbr6Fxk7M\r\nCpv86euUlzLenN0m1bfHWzOtAhb1lIhe/VG3CmNRgsAbg1Z2U18nD8clT6ol\r\nSWmUPEERub7KDgJ1mM2oL+aS1kbigYy7SiXHn93i2z+d11k9HZoXCe1Nxkes\r\noatiIFF+x+hGUt4iXva3LHOxdo85J8K/5N11Bg6Dsq+7QMWA6b4w3FCVVKQF\r\nudRjjsD4VaKNHdj9u3GsKcgcT8+qvJ8Pa/ymU48Qaam+GCxL90is4rR17Lfo\r\nhmSKVtdAagiK4ocZNqyVbkaFajmljP8JVJ9iM1LXZWdUmYrxS0Q5efcJJuab\r\njjOow+Zw5NXiMMlo+/wAUzGnsX6K3/s9tsgrqi1FL8Hi0k6hFLkLQosChVJN\r\n+S6squTQezMRKiluvkklb4ZaVFbC6HQThXGD4/3EQZ9jjyjulwYdqrO+mu0G\r\npvlzjlBbuE7MKq63YHEpDlNWh7OP+14jZYZlICHSW4c3XqVJixNhnWCHEx4w\r\n4AQVh1OXXBKH/qJsAy5KR7F0U3cj8iUhMfo=\r\n=e11J\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"},{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"brian.woodward@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/to-absolute-glob_3.0.0_1668732611354_0.4520149804690141"},"_hasShrinkwrap":false}},"name":"to-absolute-glob","time":{"modified":"2022-11-18T00:50:11.562Z","created":"2015-11-05T17:00:28.352Z","0.1.0":"2015-11-05T17:00:28.352Z","0.1.1":"2015-11-05T21:03:56.171Z","1.0.0":"2016-09-13T01:43:23.297Z","1.0.1":"2016-09-14T13:41:38.761Z","1.1.0":"2016-09-17T08:45:37.939Z","2.0.0":"2016-10-17T20:14:35.600Z","2.0.1":"2016-10-17T22:23:37.742Z","2.0.2":"2017-12-19T23:07:39.435Z","3.0.0":"2022-11-18T00:50:11.487Z"},"readmeFilename":"readme.md","contributors":[{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com","url":"https://twitter.com/BlaineBublitz"},{"name":"Brian Woodward","email":"brian.woodward@gmail.com","url":"https://github.com/doowb"},{"name":"Erik Kemperman","url":"https://github.com/erikkemperman"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"homepage":"https://github.com/jonschlinkert/to-absolute-glob"}