{"maintainers":[{"name":"anonymous","email":"npm@moox.io"},{"name":"anonymous","email":"mail@ssav.me"}],"keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"dist-tags":{"latest":"10.1.3","beta":"9.0.0"},"author":{"name":"Maxime Thirouin"},"description":"PostCSS plugin to rebase or inline on url().","readme":"# postcss-url\n\n[![Travis Build Status](https://img.shields.io/travis/postcss/postcss-url/master.svg?label=unix%20build)](https://travis-ci.org/postcss/postcss-url)\n[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/MoOx/postcss-url/master.svg?label=windows%20build)](https://ci.appveyor.com/project/MoOx/postcss-url)\n[![dependencies Status](https://david-dm.org/postcss/postcss-url/status.svg)](https://david-dm.org/postcss/postcss-url)\n[![devDependencies Status](https://david-dm.org/postcss/postcss-url/dev-status.svg)](https://david-dm.org/postcss/postcss-url?type=dev)\n\n> [PostCSS](https://github.com/postcss/postcss) plugin to rebase, inline or copy on url().\n\n## Installation\n\n```console\n$ npm install postcss postcss-url\n```\n\n## Basic example - rebase\n\n```js\n// dependencies\nconst fs = require(\"fs\")\nconst postcss = require(\"postcss\")\nconst url = require(\"postcss-url\")\n\n// css to be processed\nconst css = fs.readFileSync(\"input.css\", \"utf8\")\n\n// process css\nconst output = postcss()\n  .use(url({\n    url: \"rebase\"\n  }))\n  .process(css, {\n    from: \"src/stylesheet/index.css\",\n    to: \"dist/index.css\"\n  })\n```\nbefore:\n```css\n.element {\n    background: url('images/sprite.png');\n}\n```\nafter:\n```css\n.element {\n    /* rebasing path by new destination */\n    background: url('../src/stylesheet/images/sprite.png');\n}\n```\n\n\n## Inline\n```js\n// postcss-url options\nconst options = {\n    url: 'inline'\n};\n\npostcss()\n  .use(url(options))\n  .process(css, {\n    from: \"src/stylesheet/index.css\",\n    to: \"dist/index.css\"\n  })\n```\nbefore:\n```css\n.element {\n    background: url('/images/sprite.png');\n    filter: url('/images/circle.svg');\n}\n```\nafter:\n```css\n.element {\n    /* inlined png as base64 */\n    background: url('data:image/png;base64,R0lGODlhAQABAJH/AP///wAAAP///wAAACH/C0FET0JFOklSMS4');\n    /* inlined svg as encodeURIComponent */\n    filter: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%2F%3E');\n}\n```\n\n## Copy\n```js\n// postcss-url options\nconst options = {\n    url: 'copy',\n    // base path to search assets from\n    basePath: path.resolve('node_modules/bootstrap'),\n    // dir to copy assets\n    assetsPath: 'img',\n    // using hash names for assets (generates from asset content)\n    useHash: true\n};\n\npostcss()\n  .use(url(options))\n  .process(css, {\n    from: \"src/stylesheet/index.css\",\n    to: \"dist/index.css\"\n  })\n```\nbefore:\n```css\n.element {\n    background: url('/images/sprite.png');\n}\n```\nafter:\n```css\n.element {\n    /* copy 'sprite.png' from 'node_modules/bootstrap/images/' to 'dist/img/' */\n    /* and rename it by hash function */\n    background: url('img/a2ds3kfu.png');\n}\n```\n\n### Multiple options\n\nprocess first matched option by default.\n```multi: true``` in `custom` will processing with other options\n\n```js\nconst options = [\n    { filter: '**/assets/copy/*.png', url: 'copy', assetsPath: 'img', useHash: true },\n    { filter: '**/assets/inline/*.svg', url: 'inline' },\n    { filter: '**/assets/**/*.gif', url: 'rebase' },\n    // using custom function to build url\n    { filter: 'cdn/**/*', url: (asset) => `https://cdn.url/${asset.url}` }\n];\n\npostcss().use(url(options))\n```\n\nCheckout [tests](test) for examples.\n\n### Options combinations\n\n* `rebase` - _default_\n  * `assetsPath` - directory to copy assets (relative to `to` or absolute)\n* `inline`\n  * `basePath` - path or array of paths to search assets (relative to `from`, or absolute)\n  * `encodeType` - `base64`, `encodeURI`, `encodeURIComponent`\n  * `includeUriFragment` - include the fragment identifer at the end of the URI\n  * `maxSize` - file size in kbytes\n  * `fallback` - `copy`, `rebase` or custom function for files > `maxSize`\n  * `ignoreFragmentWarning` - do not warn when an SVG URL with a fragment is inlined\n  * `optimizeSvgEncode` - reduce size of inlined svg (IE9+, Android 3+)\n* `copy`\n    * `basePath` - path or array of paths to search assets (relative to `from`, or absolute)\n    * `assetsPath` - directory to copy assets (relative to `to` or absolute)\n    * `useHash` - use filehash(xxhash) for naming\n    * `hashOptions` - options for hash function\n* `custom {Function}`\n    * `multi` - processing with other options\n\n### Options list\n\n#### `url`\n##### `rebase` - _(default)_\nAllow you to fix `url()` according to postcss `to` and/or `from` options (rebase to `to` first if available, otherwise `from` or `process.cwd()`).\n##### `inline` \nAllow you to inline assets using base64 encoding. Can use postcss `from` option to find ressources.\n##### `copy`\nAllow you to copy and rebase assets according to postcss `to`, `assetsPath` and `from` options (`assetsPath` is relative to the option `to`).\n##### `url: {Function}`\nCustom transform function. Takes following arguments:\n* `asset`\n  * `url` - original url\n  * `pathname` - url pathname (url without search or hash)\n  * `absolutePath` - absolute path to asset\n  * `relativePath` - current relative path to asset\n  * `search` - _search_ from `url`, ex. `?query=1` from `./image.png?query=1`\n  * `hash` - _hash_ from `url`, ex. `#spriteLink` from `../asset.svg#spriteLink`\n* `dir`\n  * `from` - postcss option from\n  * `to` - postcss option to\n  * `file` - decl file path\n* `options` - postcss-url matched options\n* `decl` - related postcss declaration object\n* `warn` - wrapped function `result.warn` for current `decl`\n* `result` – postcss result object\n\nAnd should return the transformed url.\nYou can use this option to adjust urls for CDN.\n\n#### `maxSize`\n\nSpecify the maximum file size to inline (in kbytes)\n\n#### `ignoreFragmentWarning`\n_(default: `false`)_\n\nDo not warn when an SVG URL with a fragment is inlined.\nPostCSS-URL does not support partial inlining.  The entire SVG file will be inlined.  By default a warning will be issued when this occurs.\n\n**NOTE:** Only files less than the maximum size will be inlined.\n\n#### `filter`\n\nA regular expression e.g. `/\\.svg$/`, a [minimatch string](https://github.com/isaacs/minimatch) e.g. `'**/*.svg'` or a custom filter function to determine wether a file should be inlined.\n\n#### `fallback`\n\nThe url fallback method to use if max size is exceeded or url contains a hash.\nCustom transform functions are supported.\n\n#### `includeUriFragment`\n_(default: `false`)_\n\nSpecifies whether the URL's fragment identifer value, if present, will be added\nto the inlined data URI.\n\n#### `basePath`\n\nSpecify the base path or list of base paths where to search images from\n\n#### `assetsPath`\n\n_(default: `false`)_\n\nIf you specify an `assetsPath`, the assets files will be copied in that\ndestination\n\n#### `useHash`\n\n_(default: `false`)_\n\nIf set to `true` the copy method is going to rename the path of the files by a hash name\n\n#### `hashOptions`\n\n##### `method`\n\n_(default: `xxhash32`)_\n\nHash method `xxhash32|xxhash64` or custom function (accept file buffer)\n##### `shrink`\n\n_(default: `8`)_\n\nResult hash shrink count\n##### `append`\n\n_(default: `false`)_\n\nPrepend the original filename in resulting filename\n\n---\n\n## Contributing\n\nWork on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature.\n\n```console\n$ git clone https://github.com/postcss/postcss-url.git\n$ git checkout -b patch-1\n$ npm install\n$ npm test\n```\n\n## [Changelog](CHANGELOG.md)\n\n## [License](LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"users":{"ironclad.soul":true,"aristov":true},"bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"license":"MIT","versions":{"1.0.0":{"name":"postcss-url","version":"1.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.0","postcss":"^2.2.1","postcss-import":"^1.0.0","tap-colorize":"^1.2.0","tape":"^2.14.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize"},"gitHead":"b9fc42bf16af9f293b27857381bb1cd25f9c7ac2","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.0.0","_shasum":"25f7ca7a4c1c989f5c5d9418f1857d5e658f38c6","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"25f7ca7a4c1c989f5c5d9418f1857d5e658f38c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.0.0.tgz","integrity":"sha512-1ZAU1PEecGIER3tXJkB3gwO/Ut87PU6kiKR1Jbw/Ikvt7s6lKQPRMiJNLlebWKoQNvFvbrL3SDDTc4GQPfARgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrWplnAQwVYTAi6MeKmS75Cc04cJWnC30aGTAwY378CQIhALaR1MWYVrBORpFC2otCMaZ4ZEV9gt/4Eh5EUEkMFU5G"}]},"directories":{}},"1.0.1":{"name":"postcss-url","version":"1.0.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^2.2.5","postcss-import":"^1.0.2","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && npm run standalone && tape test"},"gitHead":"0de60ae281400a8665293687f9a51f2bbc2ee827","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.0.1","_shasum":"4c3fd7a63ccb6bc3f49cee5b9b559481d98ca035","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.32","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"4c3fd7a63ccb6bc3f49cee5b9b559481d98ca035","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.0.1.tgz","integrity":"sha512-yr2AqRca/2OywvwjIU1aHT4BF/kRPbqrPGrLxyARs+jq9hcPBPndy5q0bIUrNMyUsPlrAAbU4mjcXWMxP3hGqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE2s2cYewjkhaN/N4HSaUNQk702wCiqIExv+V28OAgTXAiAEl5Kpm1pm13bya1N2faVtyMLC93O1G3Xz1gd8BmWi3g=="}]},"directories":{}},"1.0.2":{"name":"postcss-url","version":"1.0.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^2.2.5","postcss-import":"^1.0.2","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && npm run standalone && tape test"},"gitHead":"c8f3712736c83a7f4a2c3a72f574504930b81021","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.0.2","_shasum":"696b876b6601e4a5bcaeccf851cf6e6774eb5682","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"696b876b6601e4a5bcaeccf851cf6e6774eb5682","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.0.2.tgz","integrity":"sha512-h7kefTa0mcQaxIeSzVfVlnutzBxTdDCJvfdCZQFWmMK7coyCeiWAdyszi9Hn/fEA3LZVzMtcqQg6zV7k1xvdgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICLY0hYum9X2Y+myJcfUyYvBDk4EDOexcPU52mA0MOztAiBOGQFieer2wsI5iNzs3NbbPJjR1eFar8otUIs9f+2roQ=="}]},"directories":{}},"1.1.0":{"name":"postcss-url","version":"1.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^2.2.5","postcss-import":"^1.0.2","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && npm run standalone && tape test"},"gitHead":"c2a014f8b50f9f990d546acfa42eda418907df77","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.1.0","_shasum":"61c1252265791c8dfd39d532e36ed89f7b9e7545","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"61c1252265791c8dfd39d532e36ed89f7b9e7545","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.1.0.tgz","integrity":"sha512-SablI0yqKXun7emKcetyqLFFwLlaLOts7GSSY26L2GOHToY9Dueodn2DEV0X7VzIsCFu1vh+FDiObdO5lijMvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDWPV7xXVURN2N+XDKb8Kb0ULYyAy8Mn09zfg9NOlaL7wIgH1M6w6Fk50f/YUY/30mRhok7qYR/Z/AtwX9VYTWAva0="}]},"directories":{}},"1.1.1":{"name":"postcss-url","version":"1.1.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^2.2.5","postcss-import":"^1.0.2","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && npm run standalone && tape test"},"gitHead":"d2b2258267c318d387fdfef859e28f55f6019789","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.1.1","_shasum":"14df8cdc66264254311534894706d6f1e63b5384","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"14df8cdc66264254311534894706d6f1e63b5384","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.1.1.tgz","integrity":"sha512-SW8m6ESRra3dkWsI7Ccxn5hoFGRmr4sNp877iAIE8oWNYTIwqNk1uq9LohKd2qg9jXlZ0RBBOLq9xS/vMPN8UQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAqq89N0m42yKjMAlodbRV5U2aFCYhwAgMpB55u7WlMzAiAjcSmErlm0NNiHiwWat5Q2CWJDS/yt7apivXJPhPGnuA=="}]},"directories":{}},"1.1.2":{"name":"postcss-url","version":"1.1.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^2.2.5","postcss-import":"^1.0.2","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && npm run standalone && tape test"},"gitHead":"1746c7c93e2650aff21e591242eae09513fbaec9","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.1.2","_shasum":"c8c50b70c2e2740f5e90351916fe36042083ebfd","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"c8c50b70c2e2740f5e90351916fe36042083ebfd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.1.2.tgz","integrity":"sha512-6HzRnLwVSstAPRFydmknDbyCbIHl2OzDFWo+Fjn8ym0qLiaLCL4QX9YPnl8+EU2EG304xcmJoC5tGCuUhz0WWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwSe8zQcO292qCLs/8S+DfmGUHrN0DJl9DtlFrUwnAwgIhAMUiq7z2/KUtTev/sYUbspVOzteYJAq8gtcFdfpKY70j"}]},"directories":{}},"1.1.3":{"name":"postcss-url","version":"1.1.3","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"21ee0c831e2bc82b848b6cca475c04e029d72712","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.1.3","_shasum":"edd1ef5299786da775f5ffbeba4e47574a1bcc77","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"edd1ef5299786da775f5ffbeba4e47574a1bcc77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.1.3.tgz","integrity":"sha512-uRuE5YS1RbzqFhqbyeYfpe5D9KXxLAaV++qsgZdMaaGCeHYhFtPd0RE/2HYRjNP7mONU886HUD3D+1MYXEPiIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGHtx+LQADaKN/Tm47N1H8tz0Un4mdAs4gkpBJP2ZiSgIgQGRH2kutLqb2bdoxjqSxoqMx663EVzXO1yyV0lJuc7A="}]},"directories":{}},"1.2.0":{"name":"postcss-url","version":"1.2.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"b9062e71812b9a20fab90cb6be12f835c05332d4","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.2.0","_shasum":"24962a3ce671b7ec546cfcaa5aad9e3cf75ace65","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"24962a3ce671b7ec546cfcaa5aad9e3cf75ace65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.2.0.tgz","integrity":"sha512-EN4zOt29d6mKsPQKAmbF4R4b+f9kTrm180QjSdTepdUIjg1odKQsD0CNz/VqC6kTSsCseR1qAXRSoauVlOTg8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOS7iKMdibcVDMuSsAWABI+4f5SnPqzsu4oJ0LmRLICgIhAKovdED2GgfFDXWiNpDqOf95K9qAGqEyd2oYJTtxsQ9Y"}]},"directories":{}},"1.2.1":{"name":"postcss-url","version":"1.2.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"eea62f91f921a8376d1ba229832ed51a5a8bed8f","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.2.1","_shasum":"e47347d5015a6d31fbbaf8ac8d0d23019079fa3a","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.10.33","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"e47347d5015a6d31fbbaf8ac8d0d23019079fa3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.2.1.tgz","integrity":"sha512-LkY2O1St0aOt8Fvi9Uu+Wsl7cZS44VAkp8fXGM0JDvEE99z31vvogzSdqWWt2HRVef47EPS41S4U2tSNGUHGeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0C5eKckaRtDpTiahxn2Pdy0ZtIOLqNE3LkSu62S7q0AIhAIi6Fhh7NdH28ov8O08rE+803Je3+wY2s/JHIxwg+qVQ"}]},"directories":{}},"1.2.2":{"name":"postcss-url","version":"1.2.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"4b518d4c75103667b73997cfde5b223b237a0764","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.2.2","_shasum":"27edcdda554fbfef05e1426631e9fcaf976417ba","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"27edcdda554fbfef05e1426631e9fcaf976417ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.2.2.tgz","integrity":"sha512-8eJQfBqntP+2gRitfYt3tWZXIZQRq2dhHBvt50f1D3cQeAawoLsdsewMI1Ag5vIxwp7GBKH62mzu50/Ez3tweg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDw58X3ox6B0te1W6zwnpWFqiCoq1sWyi5GtREj3xxVmAiBlCPykt5y3VvhZcOZPlGDL9o4pOqn5Q/6WVn4b9E8vxQ=="}]},"directories":{}},"1.2.3":{"name":"postcss-url","version":"1.2.3","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"3e076f802b26013dfcbdf921f8996b15ba1a915b","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.2.3","_shasum":"ea08d67403505162250898c282b39376d0a6356a","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"ea08d67403505162250898c282b39376d0a6356a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.2.3.tgz","integrity":"sha512-RKk9iB7bGFmWMZUNEeLWGhf1tRS+Pgiy+QCNhx4iDFuw2NUOrTvcHb7Mdc6peTPUsrp5A2DoZItoR0kdhGG7BQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAQzaCYXLh7naofAvLergJHZ3V8o73YwNj2KI/Y+T2eaAiA2tCTYOSe+z/DKA6YJdtIQTEgkHR4f4KXUzEAg02MUkQ=="}]},"directories":{}},"1.3.0":{"name":"postcss-url","version":"1.3.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0","directory-encoder":"^0.6.1"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"8377d89682d1d7f011b092b1497328502510c93e","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.3.0","_shasum":"cbb7ff351cd24723c98883d151add95a4546c024","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"cbb7ff351cd24723c98883d151add95a4546c024","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.3.0.tgz","integrity":"sha512-gAQ0Hgb31IMFQh8bDe2W9qKpVXErXgXcz9LwMX7801vM3WEwEyTkmyfAjbQr23KjYbOWlXts4kYiz5YbFEEh/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQwkO102jmTcPKjJ6x9SmYJy0ThVGuzg66JlljGJ4u6AIhAN2idnuPNyhSbCuHZ5tIDUb0YHL02o2oBjnjSAccYvLI"}]},"directories":{}},"1.3.1":{"name":"postcss-url","version":"1.3.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1","directory-encoder":"^0.6.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-import":"^2.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"fc1dd2b69dcf0a36e4bcd3b4636a7c8080d51593","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@1.3.1","_shasum":"006deadb55307bf21c8ee6436864c2893535c13d","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"006deadb55307bf21c8ee6436864c2893535c13d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-1.3.1.tgz","integrity":"sha512-vhtZC/kn+NWY+OCO7j+JglL3CVqua6moDV1r/IXzVH0VDw0hMxKKNPIt28zHYQs6L65mxJ/eJF6SafyrgnSzTw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHuNFOo2OwQ+GJYY49k7LSgFbguYuM43dm8GKG8mlKpXAiA0VJuIL0Vfvgc/inxDt3N2o5Kr7htJcv1+fU0FMYhCmQ=="}]},"directories":{}},"2.0.0":{"name":"postcss-url","version":"2.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^4.0.2","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"531314cc74527dde9eebae8413c4c0a4990138e4","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@2.0.0","_shasum":"a0cbdd809d5ee611693d860fc3c3439807823031","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"a0cbdd809d5ee611693d860fc3c3439807823031","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-2.0.0.tgz","integrity":"sha512-BuZPRqFdi7NNkDS4Vgi5WOKazK58CojbbmRPk4af1e9FCFtt+dcisOfXMdtEaM3ycQB6OoNWPB1hRqOotRCAFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDBnvC6c+k4Ps0W8TRNxYI557ojmevWAYLZz376oMNIGAiEA+E0F+FWitpROsZdWpHvWQg+Ollc3Gko+T+Wyx1cKwLw="}]},"directories":{}},"2.0.1":{"name":"postcss-url","version":"2.0.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^4.0.2","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"c2e5d502157b8f40c2e5ad35af5e99b897188992","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@2.0.1","_shasum":"87509eda14f65aab7a7bc6bbee2cd75cde20ac68","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"87509eda14f65aab7a7bc6bbee2cd75cde20ac68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-2.0.1.tgz","integrity":"sha512-6wmNRk1u9jaHxsaCXAJWaxJGU5Y8SZPpxua4ut4fNUlIAR+tbRPgut/mXGcCzzI0PmSAEq63o2iAYk1xrz+qEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyU3H7aDlrWJjQANs9pgJN6GtPYvYI4AfSB5cdy44AngIhAJQJsbzNsPnWRBU7qN9Kio2WtrI/sxtm/TUi2uJp0Ug7"}]},"directories":{}},"2.0.2":{"name":"postcss-url","version":"2.0.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^4.0.2","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"f815c46bad4ad6f523e3042c2fe8238dfc72755b","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@2.0.2","_shasum":"062a4979786103c7e06cc8c9010e281b5c375b7e","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"062a4979786103c7e06cc8c9010e281b5c375b7e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-2.0.2.tgz","integrity":"sha512-B1No5HNEWTPNcCSYJmm8ntDcunYZmXzc8agTzlqxpcX28NivYD14F1mag7BkhHvkL/bvr9Qv4MAi64HaYUu2qQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHVrZocXu4rxFRzLF/tlFUhmxJPxm4b8cgNsMbCJQ7UdAiEAjMic0v+SNXiZhzJ58xxhGknXPS6FHo8iK2rjEXaJ8QM="}]},"directories":{}},"2.1.0":{"name":"postcss-url","version":"2.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^4.0.2","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude-path .gitignore","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"272e37d97730e2c3ccacf83e8f08b692417ae922","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@2.1.0","_shasum":"a0af43184763498fac064d08cc0c732e7bd41f2c","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"a0af43184763498fac064d08cc0c732e7bd41f2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-2.1.0.tgz","integrity":"sha512-dUySP6reHmaEViNlc4WkTcHl4vyCwjyNDvwxkLrznn7nIOac89F9cFtUYBkT1q7G2CGrLbRbLzjBmly5qq3I+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5PRxBfSQ8VU9ca/Qlrx0PhL4CRkfzE9sgvGx8vAOR8gIga8x+Mjq7nYCfjsv/Fq/xNc0s7LFqVckeYqUpltLfOvU="}]},"directories":{}},"2.1.1":{"name":"postcss-url","version":"2.1.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.18.0","postcss":"^4.0.2","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"a1ceade856d9d2dd972663d59e67f0e782365513","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@2.1.1","_shasum":"2656f7008769a73f5d3301b8e6809508420a43ed","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"2656f7008769a73f5d3301b8e6809508420a43ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-2.1.1.tgz","integrity":"sha512-q/uy94Rvoh9zd+nNzzaJSG36nzaJGbkCx/HB4TiV01JMct8SXjnigvxkx6UzylIbjqnScOpNGrt0+h73kq/ahg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG7nka4qJUkhkAchGgYTLOa/swkPJ4I4JStH9e4wu8iaAiEA5aYSLG4x2ZMeEAew4piGHaV2TgrpKy5H5jTmjBvNj3g="}]},"directories":{}},"3.0.0":{"name":"postcss-url","version":"3.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.18.0","postcss":"^4.1.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"8083503e6ee00404cfdd51be24672c0e9b00423f","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@3.0.0","_shasum":"014a4de3ddffc382505ece34b2744249ade8c626","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"014a4de3ddffc382505ece34b2744249ade8c626","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-3.0.0.tgz","integrity":"sha512-zCR3wogk8eb4To28XY9kplR4coLg6m3f9/Z0bUKmtWs5Ledj5hev+8BoQq5xtg/4u8R5cpVhejoeEuhx5cwxhA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNJwHJ9mLFKIJAxtxC3sqs2gxYtVJe6mt2tL55ZSiSBwIhAKCMwquvbgZ3yO01z8yv8N2dVEu7G012x3miiL27wtdX"}]},"directories":{}},"3.1.0":{"name":"postcss-url","version":"3.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.18.0","postcss":"^4.1.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"0999bf8e90fa2c4c9a088542013c90590e84668d","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@3.1.0","_shasum":"fd45376785060fc2202958e8141a7cad36bb0062","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"fd45376785060fc2202958e8141a7cad36bb0062","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-3.1.0.tgz","integrity":"sha512-hh8y1hzfSY4qc1By6/+00OQbHtEzlBnhtFd2/oSZCtSz7Z7Y0baUAv6SlNHcwSUq3N1qzwZNzYN/K6G//fdBpw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBwPN5rK0Sdx3xLZURNskbmcs9BzIMAbTnHrlQba0nCJAiBBaZ0RyXCNXKHK/c6O4DM/E0Mb4Oj/MX8ZHd6xRbQHJQ=="}]},"directories":{}},"3.2.0":{"name":"postcss-url","version":"3.2.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.18.0","postcss":"^4.1.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"e98eb99f4ace7345cbb7241e1b3811df07741cf9","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url","_id":"postcss-url@3.2.0","_shasum":"a1efe4cc32af10a46db4a8dbb76644f3c11a1386","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"a1efe4cc32af10a46db4a8dbb76644f3c11a1386","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-3.2.0.tgz","integrity":"sha512-6moMPJC/ZXAeel+YjUvv36Yjz5rHTVbj0RzzKJkyIppEx3gy/1WBKRkex9z+MnC8hl9D2IcVviVX5vGnTLUPxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXwJGMl1YtcD6v9NL2lKrISVMQDFM8g8lFDs2nRU1UlQIhAMQQsUAPylCE06DLjdO6P2O3kDg3Dkm15rc6jXA/Zc/N"}]},"directories":{}},"3.3.0":{"name":"postcss-url","version":"3.3.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^4.1.11","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.18.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"ecf6c9089e9a9b739304d516526fd185acee96d0","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@3.3.0","_shasum":"76140b3a2a8f7110bb0ed455cf08ece70cb738ef","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"76140b3a2a8f7110bb0ed455cf08ece70cb738ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-3.3.0.tgz","integrity":"sha512-YzWjNO6a6WtJT+bbhgmNicOreds9uVLH7HUBvV6xZvg+xJ/ijytuSx13EVBptFBF+f06PBSzI/ne12haLeJopQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICp7gfAd2eE/BvzeDINIA0fqkoWZeHU3UZ/lu8Sjf/+yAiEAwHsoTRRZVU4ijGdHjrbT3zV4LBaK0KoD/toS4FfMsRs="}]},"directories":{}},"3.3.1":{"name":"postcss-url","version":"3.3.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^4.1.11","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.23.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"178ef1d760f3a0978bd21eff9666c97796cf1d3c","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@3.3.1","_shasum":"5e99abf43f50f8c5cc2a4da883de0232daf3824e","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"5e99abf43f50f8c5cc2a4da883de0232daf3824e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-3.3.1.tgz","integrity":"sha512-HPb6h1k+L+bUg3GdZ54NEjv8zhp8sb5hm2d1V/KD/v1b5Wm0idoOTZzZZAgWjfasMI+iESkcyk4iHblsQNLJig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCNsMEj6DUUST3rMg8gf+sjyxmzKGrh8sS4CbMtrDz1sAIhAI04KKNOLk6XbugFNgRjMv2STItRSDQQ8xcS8ZOB2r1Y"}]},"directories":{}},"4.0.0":{"name":"postcss-url","version":"4.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^4.1.11","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.23.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"dbac3d791cc26df71981f2edec36ad6fd07abe8c","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@4.0.0","_shasum":"7043b1d6a83ac89a0600ccb0af6b8375b9f3923a","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"7043b1d6a83ac89a0600ccb0af6b8375b9f3923a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-4.0.0.tgz","integrity":"sha512-R/D5zyEV0Ik0LpahK557VgOg9E8AK+epcRBrGWAsfgMN+TL8RrkWFsQHbCQUXWoCmvWB0t2y2oUJLFcDjzFVSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDWeCC619SCaGre1sE46I8wyJoVsYvIsmBGaIN+51X0uAiEAz7rSaO9aT7b1qjnNggQUqmYCC7KriiRU61eVkqouuhY="}]},"directories":{}},"4.0.1":{"name":"postcss-url","version":"4.0.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugins","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"directory-encoder":"^0.6.1","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^4.1.11","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^0.23.0","postcss-import":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"2c6f11ecf7ee2a28533c076246f72d5b0fa833cf","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@4.0.1","_shasum":"5114415de5808b9ddfba84398a7e2464785c7811","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.1","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"5114415de5808b9ddfba84398a7e2464785c7811","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-4.0.1.tgz","integrity":"sha512-9rbY0C0turIw/Fdfw+0z8Kb7DITTa6YRrh+DjueG/QQGBIgBliPpM5WHiMyLBrfxCPl07exPeAykMPMxXBfpSA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA1ktCJlSydbnLTgYgvng572br+WXYdRXGadLufOnX4GAiEAqmuAEYP3SswyVP8ykkBHLkX3uqHLbgsZS3ov4s28XuE="}]},"directories":{}},"5.0.0":{"name":"postcss-url","version":"5.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["index.js"],"dependencies":{"directory-encoder":"^0.7.2","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^5.0.0","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^1.1.0","postcss-import":"^7.0.0","tape":"^4.0.3"},"scripts":{"test":"eslint . && tape test"},"gitHead":"8dafab20efcaef5394e7a653eb0fe2d879ba6dd7","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@5.0.0","_shasum":"fbcea7db0aadecb68bb19e817e4cee009d47e321","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.3.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"fbcea7db0aadecb68bb19e817e4cee009d47e321","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-5.0.0.tgz","integrity":"sha512-YCSQRRYlsm+wtFK5TM1Rm2AAYoEcAvCsKGtIReKQskRq15pAbtU3/JXmQ8DhyzMzbrzC+VbunUdzC2D16CYOJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBKhLx8krt48q5S+FSKaBRWubhbtQPa4C5nrnvSZLskaAiBi5Svd6N/5gQmhSgcKFQ3QiJSPhn8GVFxfrfQmWnvhYQ=="}]},"directories":{}},"5.0.1":{"name":"postcss-url","version":"5.0.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["index.js"],"dependencies":{"directory-encoder":"^0.7.2","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^5.0.0","reduce-function-call":"^1.0.1"},"devDependencies":{"eslint":"^1.1.0","postcss-import":"^7.0.0","tape":"^4.0.3"},"scripts":{"test":"eslint . && tape test"},"gitHead":"296c5c2343dffea734c7cec3fc2e965bb7f76573","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@5.0.1","_shasum":"eebaf816c2f8500a14fdba78dc24598465499430","_from":".","_npmVersion":"2.14.3","_nodeVersion":"3.3.1","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"eebaf816c2f8500a14fdba78dc24598465499430","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-5.0.1.tgz","integrity":"sha512-tCgHsoMyfiV8gGTUmPFKjv4xUmThrzeY5CSK1ErrBzrQItQXRaIMU253V00g/hv2TpHteuH/AymM3y26xBOL3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPyzENC4WMio3UtGuxrVW2NqVmdtFH4aQ2DqTMDQ3H7gIgYb1f1rdkN1yYgEwivByLOC1+xewQgxYYcTAfdGiyTK0="}]},"directories":{}},"5.0.2":{"name":"postcss-url","version":"5.0.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["index.js"],"dependencies":{"directory-encoder":"^0.7.2","js-base64":"^2.1.5","mime":"^1.2.11","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^5.0.0"},"devDependencies":{"eslint":"^1.1.0","postcss-import":"^7.0.0","tape":"^4.0.3"},"scripts":{"test":"eslint . && tape test"},"gitHead":"dc9dc1615e93b10d19c94fd24b66f7b873deca3c","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@5.0.2","_shasum":"32d399f894c00884e39c16edf9d0484ec1ff6f23","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"32d399f894c00884e39c16edf9d0484ec1ff6f23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-5.0.2.tgz","integrity":"sha512-6aLuIElUxwCvSuzq7NXGQIIDvlH8yRqv0PxvM0Db5D5t1FO7EBi/qedb6eC1uba/A3E3yt9ZxGzHvAlbB7qCXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICtFLHpGTHtmoAM3U1TQzHPQPVgj1etwrnJc9GJZ54PXAiEA7k1rxcYl0vufVV2WfzOuPth5+kNN1e8Dae2wG42b0aw="}]},"directories":{}},"5.1.0":{"name":"postcss-url","version":"5.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["index.js"],"dependencies":{"directory-encoder":"^0.7.2","js-base64":"^2.1.5","mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^5.0.0"},"devDependencies":{"eslint":"^1.10.3","eslint-config-i-am-meticulous":"^1.0.0","postcss-import":"^7.0.0","tape":"^4.0.3"},"scripts":{"lint":"eslint --fix .","tests":"tape test","test":"npm run lint && npm run tests"},"eslintConfig":{"extends":"eslint-config-i-am-meticulous","parser":"espree","rules":{"no-var":0}},"gitHead":"ecfb922c1d1aa13941b28dcfc371442da2febff7","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@5.1.0","_shasum":"78a003686fdf6be4dc17799679020a1afba4b007","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"78a003686fdf6be4dc17799679020a1afba4b007","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-5.1.0.tgz","integrity":"sha512-vktxtylC92mtwMp7HErW1zYeDR+1Tv3FTeHaCHWODsL5ATFE8tdjbQWEnUt8FDOUQvqlfZJStdkc0y/K+Rklsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEjo0j9QTha5MShn5ETeloTC/PQehn/aPXChL52U0td4AiEA2I64HLc5MmxeO/rAOQdwJmto0m8MhCRVSTfjNTizAHU="}]},"directories":{}},"5.1.1":{"name":"postcss-url","version":"5.1.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["index.js"],"dependencies":{"directory-encoder":"^0.7.2","js-base64":"^2.1.5","mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^5.0.0"},"devDependencies":{"eslint":"^1.10.3","eslint-config-i-am-meticulous":"^2.0.0","npmpub":"^3.0.1","postcss-import":"^7.0.0","tape":"^4.0.3"},"scripts":{"lint":"eslint --fix .","tests":"tape test","test":"npm run lint && npm run tests","release":"npmpub"},"eslintConfig":{"extends":"eslint-config-i-am-meticulous/es5"},"gitHead":"743190d1adc0a1467784962c5b31fcb3f926e6e1","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@5.1.1","_shasum":"125fea614f743a788c8dc63525c2e11bbcf5d91e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"125fea614f743a788c8dc63525c2e11bbcf5d91e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-5.1.1.tgz","integrity":"sha512-+lnuA2ILG5fXHqj+kTwqUIC9pTPl3vK8kHrR7CTBSqjKSJoEL0SbEQJSHIQXlRoxLJc9XPDue+1QtpTvNhUdUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICWa904+0fp8oyC06XXdkmLSIwKrolTtwUJl+6unAUQAAiB+QdVyuSnnZY5gINNW59wG/PI7RsOK8mXnarAggnAixw=="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/postcss-url-5.1.1.tgz_1454480922694_0.09676141571253538"},"directories":{}},"5.1.2":{"name":"postcss-url","version":"5.1.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"files":["index.js"],"dependencies":{"directory-encoder":"^0.7.2","js-base64":"^2.1.5","mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","path-is-absolute":"^1.0.0","postcss":"^5.0.0"},"devDependencies":{"eslint":"^1.10.3","eslint-config-i-am-meticulous":"^2.0.0","npmpub":"^3.0.1","postcss-import":"^7.0.0","tape":"^4.0.3"},"scripts":{"lint":"eslint --fix .","tests":"tape test","test":"npm run lint && npm run tests","release":"npmpub"},"eslintConfig":{"extends":"eslint-config-i-am-meticulous/es5"},"gitHead":"5e528eb42d6852c6becc3c82c9a0a381a48d0fb4","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@5.1.2","_shasum":"98b3165be8d592471cb0caadde2c0d1f832f133e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"m@moox.io"},"maintainers":[{"name":"anonymous","email":"m@moox.io"}],"dist":{"shasum":"98b3165be8d592471cb0caadde2c0d1f832f133e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-5.1.2.tgz","integrity":"sha512-peDhNpCrZlzH72knO4d9eCWPnRStleUv4N/C8HiPNpAHG4TAGBP0+YZrNII3kT4ZF6XJ9cn3qc+TRGNTmRM7Lg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBwhJwj2nfEOd2k7aLUMF3gBIWtPH+hWO2m1clmCmfrfAiBcZ4GX/53ioFmaEvbjnIL9gACreL36IuNXS6D3lrnyXw=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-url-5.1.2.tgz_1462132215873_0.18399095349013805"},"directories":{}},"6.0.0":{"name":"postcss-url","version":"6.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"edade41694a3e1702498177536c549ff1e8a7fe0","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.0.0","_shasum":"536c54c063a4a7a6f0534d149b3d65da0b6bd9ec","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"536c54c063a4a7a6f0534d149b3d65da0b6bd9ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.0.0.tgz","integrity":"sha512-r2YzcS6BMbMBPdtpo3LzHgtLTHftXybrmTqvlA8HOtI5vbTktMoPMN8IvJPAgaWhDLg4/GGiIv4Y0J2N+gm+aA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCk2/d1uXXj/29f1oHXVPea/sofzOhiNShAaMkGZ5XSCgIhANzLSAkqVEwVc30pZQMgxwETBxAbCNAS3Y6u1zFVuoiR"}]},"maintainers":[{"name":"anonymous","email":"m@moox.io"},{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-url-6.0.0.tgz_1491181637112_0.7740894644521177"},"directories":{}},"6.0.1":{"name":"postcss-url","version":"6.0.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"315075a3241ae218add8fa8c66a98d56ec32fca2","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.0.1","_shasum":"660e32c1944c594d942e3bd164d57c639c3ecf0e","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"660e32c1944c594d942e3bd164d57c639c3ecf0e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.0.1.tgz","integrity":"sha512-ydiYcY5FaxyTp55onWQngEl/bqxIM49Zg6IwiEOMHs52NfyQPMIHCrS/CAhUTxQ68kaXM28e+4xAsjyrNNdp8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjOXaHPG4nQgG/vKbZpABIyw3LALIswIJOQRjkB9YtoQIgEtlGN+uAIjEaD94y8xRrI31QdaOKOzz6kzfsk+t8q44="}]},"maintainers":[{"name":"anonymous","email":"m@moox.io"},{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/postcss-url-6.0.1.tgz_1491232144494_0.8163843038491905"},"directories":{}},"6.0.2":{"name":"postcss-url","version":"6.0.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"6355a0d82de2efd5d70c7257f0c25da1754463fc","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.0.2","_shasum":"58e96c05e64d2e409aba61147e1ab9e23cd790c9","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"58e96c05e64d2e409aba61147e1ab9e23cd790c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.0.2.tgz","integrity":"sha512-eIWYJBrzcacANpiixWxW+JtgW8emlNxeNmm8rdOavHqsLb+UV1O2rSVQfBvGNMXgIZb5H5c3JeOezuk7ytJNRQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDc1cZukG8Mb/j30D6yfG5FyucSi8BG/sUZI0uQghbVjgIgAViwtdDCC7HwD0Ql41twndkvZPq3/b21sky4R4TO1gg="}]},"maintainers":[{"name":"anonymous","email":"m@moox.io"},{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-url-6.0.2.tgz_1491316240250_0.6856161206960678"},"directories":{}},"6.0.3":{"name":"postcss-url","version":"6.0.3","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"25d73d0790eb50672f13e84c4c7ef2d8e374db82","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.0.3","_shasum":"d001075adfcc204dba839ee13f99339137ad92a0","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"d001075adfcc204dba839ee13f99339137ad92a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.0.3.tgz","integrity":"sha512-agvlNxY/JW9Yjru4CAFhCRPgmRXbSWmdHQZgV+bauMhApKvqewvBU523ujFByZ3Cy0Htdrbr3eSl8uN01KpsyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFJX1zH1FN7lbMoxDJi8sOwZTsqDc+DeZad9gFq+oNxZAiA6nTluqXbAM8gtCNCHpVagH7I/YSt4GQ8YfOZO2bQ8lQ=="}]},"maintainers":[{"name":"anonymous","email":"m@moox.io"},{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/postcss-url-6.0.3.tgz_1491323911964_0.33634536806494"},"directories":{}},"6.0.4":{"name":"postcss-url","version":"6.0.4","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"f8087589726c167cf657b8d2b87fce04dc974308","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.0.4","_shasum":"953157e41668117af9dfa4877c58056f0274b951","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"953157e41668117af9dfa4877c58056f0274b951","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.0.4.tgz","integrity":"sha512-45I/dkdY43nBxLu4cZyqHg0lfZ2anzCkywFGWnyuSs/6XqSkw07e61tKdkSU8qoYlwjaeFnW3GAfdcLrjB5eEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCW2PMyrnau6Eg8Zsj5Tvm+17fB5lJsBRUkdXmyKfrXFQIgCdZNVLUsR9ioYc99NBRDKU9P13Qk2M0jd03PkZW+8ws="}]},"maintainers":[{"name":"anonymous","email":"m@moox.io"},{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-url-6.0.4.tgz_1491509021565_0.5669349799863994"},"directories":{}},"6.1.0":{"name":"postcss-url","version":"6.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"126be4a8567eeb11040815ac612a0493a3cdae0d","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.1.0","_shasum":"17b777b2b66470ec15c8759a77841e7f0cd6b0d5","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"17b777b2b66470ec15c8759a77841e7f0cd6b0d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.1.0.tgz","integrity":"sha512-fKj5jTB5G3UWfoUt1PDJwawUpX4w31xgL1yZgAJ8Xviv14UdSxXVOPpxvAMP4O1suJJz/qwtv5XHHc+aVI3T4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBtZdtI6B1+liSLHnNxeDOqMMEltVCh17daIf1rL4KtdAiAiZYO9RimoVRZqgjkJ3NR3bGGBi5gqtl/CTPmlrtU3lA=="}]},"maintainers":[{"name":"anonymous","email":"m@moox.io"},{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/postcss-url-6.1.0.tgz_1494669720931_0.24870949564501643"},"directories":{}},"6.3.1":{"name":"postcss-url","version":"6.3.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^5.0.0","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^7.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"41a7bdf216cee1a17230592be8ccf95120be20ad","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@6.3.1","_shasum":"7fc6467db29ee013b7c6a5885ba1e6bf7cd43086","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"7fc6467db29ee013b7c6a5885ba1e6bf7cd43086","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-6.3.1.tgz","integrity":"sha512-Zfe0+nKfK4IchnaErlMOKeZnXPa6G/BqnoLxcaziyWwhsQuKQbOT9kuvipr1eOMHBpWW2tzIQEvuBlL5lMQUtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHinmFB2sjutrEiOjA1CaLPT5FpW0JTi1J8/55RLRDFqAiEA7QJdYvhsF6JMMU25JgOWTqs3tVAAyCdEmZeG+MTpxoA="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-6.3.1.tgz_1496655392685_0.8950107148848474"},"directories":{}},"7.0.0":{"name":"postcss-url","version":"7.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"0ef27e729eb8ca9fc46b2077abed8719227bd3c3","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.0.0","_shasum":"11c6a1103e527ae914c3bab48415273d027d9508","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"11c6a1103e527ae914c3bab48415273d027d9508","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.0.0.tgz","integrity":"sha512-MIfqaHjUxJVVUQ+RMhIi8v19OYo6ZjPlHzoSRoFgzUDgVv4ZGKSgbeMuEi0H4MAMPUpztOYw47jrk4yu03DT5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDL+NKX+fXKpBMZR1Iy+2oZs6pY0ILDNQMAZzPOPz8yEgIhAIauIK0IFDk9cK8v6KR5647EWwx5CzmnNzs6YeUEeEbE"}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.0.0.tgz_1496656206029_0.6486596395261586"},"directories":{}},"7.1.0":{"name":"postcss-url","version":"7.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"183517137296544e6c51541a74318f78256d45b2","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.1.0","_shasum":"a87edce0d030d221fa4716195f4e60455ab02283","_from":".","_npmVersion":"2.15.12","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"a87edce0d030d221fa4716195f4e60455ab02283","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.1.0.tgz","integrity":"sha512-bUncEBBM6PjuGhFujmXC5G+QISlK0y/NwayZTYRhvZ7dZfg7gYyUeHmnBcViAVBh3d+0BIPMVKa8O+vEW/xHwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH2VV31BltFtlkutf4NNRDEHcArjs6+pBXSOFXEaegZWAiBWTIjX/txVi2Udch9bWeOrJl1rGpwQEW4aj3EAKGQT1A=="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.1.0.tgz_1500447773098_0.30612650769762695"},"directories":{}},"7.1.1":{"name":"postcss-url","version":"7.1.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"975045b92e518850cb3dfe9c04a866a07ee41345","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.1.1","_shasum":"efcd010d152a1a6c7d6d4bdd5702c3879cc94375","_from":".","_npmVersion":"2.15.12","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"efcd010d152a1a6c7d6d4bdd5702c3879cc94375","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.1.1.tgz","integrity":"sha512-Uv0KLBBTsRc64pQp4hD+ZD+RF1OILVe+q18c/QBsRoKs3TzgUrppot1nIW2ouuZTgy2pK4FkeC/9CCHgflO9/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID1dgYp87SuQoXQXTvU3CKQ/IYGQKTeeAoGAa41AvsEcAiEAmFdyyufdBBz5ncbxK6AQ+W2WGHs732HdFhrY8bo5vUU="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.1.1.tgz_1500889838808_0.48255275771953166"},"directories":{}},"7.1.2":{"name":"postcss-url","version":"7.1.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"fb856e05b78d33358db9b25df25aa9bf621b353e","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.1.2","_shasum":"e04ae386af7ea6ef5df51c5b449d6b9502cd99b2","_from":".","_npmVersion":"2.15.12","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"shasum":"e04ae386af7ea6ef5df51c5b449d6b9502cd99b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.1.2.tgz","integrity":"sha512-B90VTVx1ZW1+AQa5eBO7jM8TrSXrBnjwOCCWBMBDp6i6E7Hw5fA9PH+tca3t24yQ8GN/LU1h9hYrb/ICSM/QtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH8evknN7OMUISBE1BJEqw+ThYJ7YhNTI8anCFY0X15tAiBIqmzfa/j2oRGgdX/CuVS/TSZhHtd/nx4k2icmLuLc9Q=="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.1.2.tgz_1502481350063_0.9161296582315117"},"directories":{}},"7.2.0":{"name":"postcss-url","version":"7.2.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.2.11","minimatch":"^3.0.0","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"e0438834a9bac64aff7e35f9e885c616c2a4a3c3","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.2.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-KhBNnKPNuh0uzqHNy4Njk5dyrdQHw6dD8IKkrlP10weruNwPST1kO9U0qpqi3fgYcSs8CyHSXxaOHS238ryrhQ==","shasum":"0bd2f5366c4f27d8dad19c41659875bbc6c50098","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCPF4Tv22k1oZPA/XwjOKY/bhzYmZMobITqW1F1aFpqhAIhAJnHwPm+UOzmlMLuABNXOcrS6ApoCI2CIAu6VDjdcoLq"}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.2.0.tgz_1510943356573_0.10015775077044964"},"directories":{}},"7.2.1":{"name":"postcss-url","version":"7.2.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.4.1","minimatch":"^3.0.4","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"9599922e7f0e412ecb7f3e5d9745b4058e35f65e","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.2.1","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-jycW2XYgU39SpA+MJOOP7Fe7I2NxiCq8rOXiG61NBoJ4vG/WFn2IhS18vGiphla4VTN3WoHJOBMMJz1n4h1VYQ==","shasum":"bf47ff1b5395538567cea19ef3241a70fb925f5c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5CMFFYuZw7daEjVtR7rvSKl/Exvc+GHSDGv88cNkyxwIhAO0cGV4JZg9zGmNZZ47QMrWJ06r1NoX3pVdzCarAjgN5"}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.2.1.tgz_1511114007405_0.006769499741494656"},"directories":{}},"7.3.0":{"name":"postcss-url","version":"7.3.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.4.1","minimatch":"^3.0.4","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"953ba4b0c70d86131c2c682c9b9e59e2103c177b","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.3.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-VBP6uf6iL3AZra23nkPkOEkS/5azj1xf/toRrjfkolfFEgg9Gyzg9UhJZeIsz12EGKZTNVeGbPa2XtaZm/iZvg==","shasum":"cf2f45e06743cf43cfea25309f81cbc003dc783f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.3.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0SgE34tnPR8aBRnLxAEne4y5bD3SDPJ9/gwLiBtgjZAIhAKc0A1K9HVmf2sVdqKl9rS3oe20OrlVyDN2jyS6fKa5F"}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url-7.3.0.tgz_1511646774862_0.19256188138388097"},"directories":{}},"7.3.1":{"name":"postcss-url","version":"7.3.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.4.1","minimatch":"^3.0.4","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"251a2c8836c1e809f0fd2059ccb85890e02b3c3e","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.3.1","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-Ya5KIjGptgz0OtrVYfi2UbLxVAZ6Emc4Of+Grx4Sf1deWlRpFwLr8FrtkUxfqh+XiZIVkXbjQrddE10ESpNmdA==","shasum":"b43ae0f0dae4cd06c831fa3aeac2d7a5b73754ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.3.1.tgz","fileCount":15,"unpackedSize":37096,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxxX/tbgq7beFJgzkSLQ2xqbwWGRVJG8P6uDu2+E2usAIgHidQ4QQnqbUv+xbqf7vAN6pZ5cIinPztUYqbkf0fqNU="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_7.3.1_1519592713114_0.18765464843960644"},"_hasShrinkwrap":false},"7.3.2":{"name":"postcss-url","version":"7.3.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"dependencies":{"mime":"^1.4.1","minimatch":"^3.0.4","mkdirp":"^0.5.0","postcss":"^6.0.1","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^3.5.0","eslint":"^3.16.1","mocha":"^3.2.0","npmpub":"^3.0.1","postcss-import":"^10.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"ea84a94ef977e6e6357d92ac5bd2e09f7c248d0a","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@7.3.2","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-QMV5mA+pCYZQcUEPQkmor9vcPQ2MT+Ipuu8qdi1gVxbNiIiErEGft+eny1ak19qALoBkccS5AHaCaCDzh7b9MA==","shasum":"5fea273807fb84b38c461c3c9a9e8abd235f7120","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-7.3.2.tgz","fileCount":15,"unpackedSize":37340,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJJfatXlMYxDOgrmNT9ASQI9vbd1aXxsKxjCeukQR3owIgaRoXZq2UW/ZsstHrIeH2wkgrl26zMw91L2wcfkXvjEw="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_7.3.2_1522784892005_0.7864847546389921"},"_hasShrinkwrap":false},"8.0.0":{"name":"postcss-url","version":"8.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","files":["src"],"engines":{"node":">=6.0.0"},"dependencies":{"mime":"^2.3.1","minimatch":"^3.0.4","mkdirp":"^0.5.0","postcss":"^7.0.2","xxhashjs":"^0.2.1"},"devDependencies":{"chai":"^4.1.2","eslint":"^5.3.0","mocha":"^5.2.0","npmpub":"^4.1.0","postcss-import":"^12.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"1a7496e341292620fdc00caaa10bf6e6bc7c5305","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@8.0.0","_npmVersion":"6.2.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-E2cbOQ5aii2zNHh8F6fk1cxls7QVFZjLPSrqvmiza8OuXLzIpErij8BDS5Y3STPfJgpIMNCPEr8JlKQWEoozUw==","shasum":"7b10059bd12929cdbb1971c60f61a0e5af86b4ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-8.0.0.tgz","fileCount":15,"unpackedSize":37648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbCsYCRA9TVsSAnZWagAAUscP/12iRptt65+h/wkWBDHl\n4s/r71u04uf1V66KMDjGhyotxg7wrb5xzVKPCMYzPOBg8hpYm+v+x1NyI8J2\nafb5VsejC+BbJpfkYm0bvHnEiGxx86H/+mp/n6pTfvt2ZJdcifwwI7maXryH\nWDhLGZDJJZi5pFObKk7pCnrAM8XF5OgD3lVtERAi17of0d/+poTH+Sf9f9aC\nn74MEuWVYgZObk2DBEy62DxrOlH4+NYyPbc3rCxjXUSA8wYAGDJIcjTXRlcD\nvBlHQTeTzTl3abosp93khIkNCb0Yt1b17idPtLo0R0BO4VgVnNwQWvb1O2d7\nvDRjSdjKizUT32JmYgAkd8R+wzLk5e7k6SeJZ3EHuDMP+ru+aLYZ9nOcjvwX\nKvSNIPKYVTPHpGcuWwsF3cjpmOaTU0ri+3Cgl0SBrVtybGRy73HfiqWzLzMn\nWWzqE+SapUecYmSQwvsh/Gx23XoxT8xOmFDt6aK5O2V0Lp8DhePAqnlvB2yj\n/JADAQuw1U0NhE5xQA2BMb81XhSj0K6OI8jMVvT4fWSO3sDJM8sZnXzCI4tc\nr4LhJXIGUCw/c/6AormDLg/hM0tOoCwkqv6QqA56vY2GoReD3KUAvQvQAfux\n+S8MaeL2nAvEkIkxvKoCQ6AdSRqhpYYXxHdBEQwh989UnIFcTEST5gHM3RMQ\nz41/\r\n=nvJ6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAVEnf8f5GAQQobjgew+NqgmznNJTufoa7ED1HQbabt6AiBQQs1YQN8ScwRW6iGKfbvtXD8zcPWDhUd0BvIY0R5z7w=="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_8.0.0_1533815575411_0.7826109659522837"},"_hasShrinkwrap":false},"9.0.0":{"name":"postcss-url","version":"9.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","engines":{"node":">=6.0.0"},"dependencies":{"mime":"2.3.1","minimatch":"3.0.4","mkdirp":"0.5.0","postcss":"7.0.2","xxhashjs":"0.2.1"},"devDependencies":{"chai":"4.1.2","eslint":"5.16.0","mocha":"5.2.0","npmpub":"4.1.0","postcss-import":"12.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"readme":"# postcss-url\n\n[![Travis Build Status](https://img.shields.io/travis/postcss/postcss-url/master.svg?label=unix%20build)](https://travis-ci.org/postcss/postcss-url)\n[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/MoOx/postcss-url/master.svg?label=windows%20build)](https://ci.appveyor.com/project/MoOx/postcss-url)\n[![dependencies Status](https://david-dm.org/postcss/postcss-url/status.svg)](https://david-dm.org/postcss/postcss-url)\n[![devDependencies Status](https://david-dm.org/postcss/postcss-url/dev-status.svg)](https://david-dm.org/postcss/postcss-url?type=dev)\n\n> [PostCSS](https://github.com/postcss/postcss) plugin to rebase, inline or copy on url().\n\n## Installation\n\n```console\n$ npm install postcss-url\n```\n\n## Basic example - rebase\n\n```js\n// dependencies\nconst fs = require(\"fs\")\nconst postcss = require(\"postcss\")\nconst url = require(\"postcss-url\")\n\n// css to be processed\nconst css = fs.readFileSync(\"input.css\", \"utf8\")\n\n// process css\nconst output = postcss()\n  .use(url({\n    url: \"rebase\"\n  }))\n  .process(css, {\n    from: \"src/stylesheet/index.css\",\n    to: \"dist/index.css\"\n  })\n```\nbefore:\n```css\n.element {\n    background: url('images/sprite.png');\n}\n```\nafter:\n```css\n.element {\n    /* rebasing path by new destination */\n    background: url('../src/stylesheet/images/sprite.png');\n}\n```\n\n\n## Inline\n```js\n// postcss-url options\nconst options = {\n    url: 'inline'\n};\n\npostcss()\n  .use(url(options))\n  .process(css, {\n    from: \"src/stylesheet/index.css\",\n    to: \"dist/index.css\"\n  })\n```\nbefore:\n```css\n.element {\n    background: url('/images/sprite.png');\n    filter: url('/images/circle.svg');\n}\n```\nafter:\n```css\n.element {\n    /* inlined png as base64 */\n    background: url('data:image/png;base64,R0lGODlhAQABAJH/AP///wAAAP///wAAACH/C0FET0JFOklSMS4');\n    /* inlined svg as encodeURIComponent */\n    filter: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%2F%3E');\n}\n```\n\n## Copy\n```js\n// postcss-url options\nconst options = {\n    url: 'copy',\n    // base path to search assets from\n    basePath: path.resolve('node_modules/bootstrap'),\n    // dir to copy assets\n    assetsPath: 'img',\n    // using hash names for assets (generates from asset content)\n    useHash: true\n};\n\npostcss()\n  .use(url(options))\n  .process(css, {\n    from: \"src/stylesheet/index.css\",\n    to: \"dist/index.css\"\n  })\n```\nbefore:\n```css\n.element {\n    background: url('/images/sprite.png');\n}\n```\nafter:\n```css\n.element {\n    /* copy 'sprite.png' from 'node_modules/bootstrap/images/' to 'dist/img/' */\n    /* and rename it by hash function */\n    background: url('img/a2ds3kfu.png');\n}\n```\n\n### Muiltiple options\n\nprocess first matched option by default.\n```multi: true``` in `custom` will processing with other options\n\n```js\nconst options = [\n    { filter: '**/assets/copy/*.png', url: 'copy', assetsPath: 'img', useHash: true },\n    { filter: '**/assets/inline/*.svg', url: 'inline' },\n    { filter: '**/assets/**/*.gif', url: 'rebase' },\n    // using custom function to build url\n    { filter: 'cdn/**/*', url: (asset) => `https://cdn.url/${asset.url}` }\n];\n\npostcss().use(url(options))\n```\n\nCheckout [tests](test) for examples.\n\n### Options combinations\n\n* `rebase` - _default_\n  * `assetsPath` - directory to copy assets (relative to `to` or absolute)\n* `inline`\n  * `basePath` - path or array of paths to search assets (relative to `from`, or absolute)\n  * `encodeType` - `base64`, `encodeURI`, `encodeURIComponent`\n  * `includeUriFragment` - include the fragment identifer at the end of the URI\n  * `maxSize` - file size in kbytes\n  * `fallback` - `copy`, `rebase` or custom function for files > `maxSize`\n  * `ignoreFragmentWarning` - do not warn when an SVG URL with a fragment is inlined\n  * `optimizeSvgEncode` - reduce size of inlined svg (IE9+, Android 3+)\n* `copy`\n    * `basePath` - path or array of paths to search assets (relative to `from`, or absolute)\n    * `assetsPath` - directory to copy assets (relative to `to` or absolute)\n    * `useHash` - use filehash(xxhash) for naming\n    * `hashOptions` - options for hash function\n* `custom {Function}`\n    * `multi` - processing with other options\n\n### Options list\n\n#### `url`\n##### `rebase` - _(default)_\nAllow you to fix `url()` according to postcss `to` and/or `from` options (rebase to `to` first if available, otherwise `from` or `process.cwd()`).\n##### `inline` \nAllow you to inline assets using base64 encoding. Can use postcss `from` option to find ressources.\n##### `copy`\nAllow you to copy and rebase assets according to postcss `to`, `assetsPath` and `from` options (`assetsPath` is relative to the option `to`).\n##### `url: {Function}`\nCustom transform function. Takes following arguments:\n* `asset`\n  * `url` - original url\n  * `pathname` - url pathname (url without search or hash)\n  * `absolutePath` - absolute path to asset\n  * `relativePath` - current relative path to asset\n  * `search` - _search_ from `url`, ex. `?query=1` from `./image.png?query=1`\n  * `hash` - _hash_ from `url`, ex. `#spriteLink` from `../asset.svg#spriteLink`\n* `dir`\n  * `from` - postcss option from\n  * `to` - postcss option to\n  * `file` - decl file path\n* `options` - postcss-url matched options\n* `decl` - related postcss declaration object\n* `warn` - wrapped function `result.warn` for current `decl`\n* `result` – postcss result object\n\nAnd should return the transformed url.\nYou can use this option to adjust urls for CDN.\n\n#### `maxSize`\n\nSpecify the maximum file size to inline (in kbytes)\n\n#### `ignoreFragmentWarning`\n_(default: `false`)_\n\nDo not warn when an SVG URL with a fragment is inlined.\nPostCSS-URL does not support partial inlining.  The entire SVG file will be inlined.  By default a warning will be issued when this occurs.\n\n**NOTE:** Only files less than the maximum size will be inlined.\n\n#### `filter`\n\nA regular expression e.g. `/\\.svg$/`, a [minimatch string](https://github.com/isaacs/minimatch) e.g. `'**/*.svg'` or a custom filter function to determine wether a file should be inlined.\n\n#### `fallback`\n\nThe url fallback method to use if max size is exceeded or url contains a hash.\nCustom transform functions are supported.\n\n#### `includeUriFragment`\n_(default: `false`)_\n\nSpecifies whether the URL's fragment identifer value, if present, will be added\nto the inlined data URI.\n\n#### `basePath`\n\nSpecify the base path or list of base paths where to search images from\n\n#### `assetsPath`\n\n_(default: `false`)_\n\nIf you specify an `assetsPath`, the assets files will be copied in that\ndestination\n\n#### `useHash`\n\n_(default: `false`)_\n\nIf set to `true` the copy method is going to rename the path of the files by a hash name\n\n#### `hashOptions`\n\n##### `method`\n\n_(default: `xxhash32`)_\n\nHash method `xxhash32|xxhash64` or custom function (accept file buffer)\n##### `shrink`\n\n_(default: `8`)_\n\nResult hash shrink count\n##### `append`\n\n_(default: `false`)_\n\nPrepend the original filename in resulting filename\n\n---\n\n## Contributing\n\nWork on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature.\n\n```console\n$ git clone https://github.com/postcss/postcss-url.git\n$ git checkout -b patch-1\n$ npm install\n$ npm test\n```\n\n## [Changelog](CHANGELOG.md)\n\n## [License](LICENSE)\n","readmeFilename":"README.md","gitHead":"90d71366d9e1e7fe7e6d8bd7d3fdf6ca0576dc6a","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@9.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.15.1","_npmUser":{"name":"anonymous","email":"sergcen@mail.ru"},"dist":{"integrity":"sha512-CIawaRPYL0YNMIrT+5Yj6ogDeBBFtfkEhZDFQl20Q+GkfzKD3k9B3fdbR3Y5V+qOjoOqPNKUU8wWyXKjJAKhsg==","shasum":"4e5ca0fd7afa0cdb4dd62f38cdd1fe9a3d7ab207","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-9.0.0.tgz","fileCount":15,"unpackedSize":40591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctkQACRA9TVsSAnZWagAAgO4QAJcrf+JwVwHXEcCaGJKs\nzmlqn0vX+35BaZ2fXBLkPdtAqODwOsjiurIdUf2e6AeC8jMyEhNqr1HyVH49\nbnUSq3y9/R3Gkt03nrSpWXbosQI+xb+pDtAH7rINk5KhlniHH7idwl30WvTQ\nP0Auj5a/y6uAVQzlSX/ZiuoXDbFtj6LZS7lH5GH5XtnewLj/wZgVwszCbN+8\n+7LmKKHkV/ETbsZqYNLzP404k2TOP1jlIMHzOlAmDhFx9bfHSbY7SFeEW4BN\nOkW2cK9nwwjgOYA7wVulEi9ecnbuyKm0RSRw3O23PAbdS6HbSmqs7Vjj89Ns\neuhmidX0YUoiwsXC6HIt5i/TD3xerryyh5wR0l0LyY9zzjJ1Oy9S/WejbPxx\nv1dsNxi2QTMX4PAsl8ixGDDgnHfdiLsEYat+7uzOz9ruchXiIjV+p64HcJrS\nrnD9d7EwqP1wqsfLDkO2fnE3PlWxLJMxoAx7lCEgniVvbeJ1ItUIahWKyl9E\nAPPiClMtHmBZmO0RtPAyuZT2AmAHg8CvdA/3+dnuKXA3PU1YF4pLf1F1W4WU\nT3Ei+iqHujaxWcfv62PXdTdxdGM8EGlcjVZFCianBoiHiHWC/3XRWQfSGP0s\n8OsEznEiRJIYB5ymBq7yxGROxHWBgz6nFMsU9n7zvejDOTMtooPTsNHL46fp\nsOF+\r\n=mL34\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEC5XRoS/JcY3HoLWdpyEsP92RkpvqwHFDx3l7RxnlRMAiEA3JZnxBsyP3Rh8z7sRhfiC10/p++v24p4glz7Nrmu3CI="}]},"maintainers":[{"name":"anonymous","email":"sergcen@mail.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_9.0.0_1555448831894_0.8417162750053795"},"_hasShrinkwrap":false},"10.0.0":{"name":"postcss-url","version":"10.0.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","engines":{"node":">=10"},"dependencies":{"mime":"2.3.1","minimatch":"3.0.4","mkdirp":"0.5.0","xxhashjs":"0.2.1"},"devDependencies":{"chai":"4.1.2","eslint":"5.16.0","mocha":"5.2.0","npmpub":"4.1.0","postcss":"8.1.2","postcss-import":"12.0.0"},"peerDependencies":{"postcss":"8.1.2"},"scripts":{"lint":"eslint --fix .","tests":"mocha","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"128d15432406f865fea94c3f5a7917bf31bfe4c1","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@10.0.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-xLQQYhvR6KiZKReNoJ4avPpueIE07bXcA+oE3e8dqQUv8DjwCn/LE9CajmC2TNQkqAJB9cVH4gO3oF6eae/hzQ==","shasum":"83ed0c400b735351048706983cf2c5c7b4441e0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-10.0.0.tgz","fileCount":15,"unpackedSize":40976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkzfECRA9TVsSAnZWagAACvkP/2Y4jHpYv0q5h5pXc/Gj\nFNj2cJ1ceiAvNuqpvzdEibMSQV/5FzeG4oKeevoLJsOBCDR+pF8iVtiIf4Xq\nWShF0Zxc5034NiGOVmTeFQPUoSnAw921OKoAKz2PC5GenfXm+CWPSUt0ootM\nQDEdvRk7zf/Sut5GP5+uOCm/CfuFPd6VD35BLmbOc2Qupu8b7etwQenDce+w\nka14wz1MpZ7MdIQYfuagkEhAE5bIyU1c86sKa75tgMZyJowjbNlDfhHPwwQ4\np/bnI7zrxDFw04hkJJ2rdNYP1Y8LZTpLYV79y6H9zrVpOoTPmRSKMAbXOMOI\nVtl94WYIwRoC8r9pDpku8YiuQzNeXLhhbKRKdB7CTVxp1Vl92EkiAFdUhZJM\nLBJirRFnulT2VpjBgzeVZ8OEOZ299kELSxWyhoKvXSvuWYQ9PkWmbUTrRV8o\nXcloVa5l+LFArdCq7PhIxSKugxIKBlTjGDW6a2HCmtKKLr3Np7PpFa7+GqYu\nlGKTPszoDXRSQYVjMIPa36/iw3jjb1w2NAHq5rTHuO4eGOcH5GC0A9/kUKOn\nqvP9o+dkVzidR5dbf248KqN7Ca0pcao+2tlVSYv3M++61f0qub6judRv6oNn\nALSbrfvv284ULh7i0McESxcj/K+J+UdptMz4C6KcdbeA3wAM2sxlzAUqQNjN\nu3f2\r\n=5H86\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8GXidFPVn6VINOHN01gTccEwOhy7J2ftlQv3Z0vCxeAIgIzSLO0YRNo7ob/s4Nzq4GEuLylFNFohguv7/YGYtFRU="}]},"maintainers":[{"name":"anonymous","email":"npm@moox.io"},{"name":"anonymous","email":"mail@ssav.me"}],"_npmUser":{"name":"anonymous","email":"mail@ssav.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_10.0.0_1603483588273_0.9285659248209666"},"_hasShrinkwrap":false},"10.1.0":{"name":"postcss-url","version":"10.1.0","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","engines":{"node":">=10"},"dependencies":{"make-dir":"3.1.0","mime":"2.3.1","minimatch":"3.0.4","xxhashjs":"0.2.1"},"devDependencies":{"chai":"4.1.2","eslint":"7.12.1","mocha":"8.2.1","npmpub":"5.0.0","postcss":"^8.1.2","postcss-import":"12.0.0"},"peerDependencies":{"postcss":"^8.1.2"},"scripts":{"lint":"eslint --fix .","tests":"mocha --recursive --require ./test/setup","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"2bdc63d37189ec3e7ac0b739db7811d7609c861b","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@10.1.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-udlfKhzFrLtI5VOnpK0/n4zQkX7At7Xk/eiNTJ47UNFuGJTKhxmQgSEyTaLPXceiAQmB/NiGrV0okYA9tsR9Lw==","shasum":"b64872ef15c6643e13928aa084c21023a36f0948","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-10.1.0.tgz","fileCount":15,"unpackedSize":40960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfos/2CRA9TVsSAnZWagAAF/QP/2Tgf1f7dM38EhE6Lzub\nJmPiE2DajCyOT9nQVtRLHNq/84Zu/2XxZoktt0xPwoV+wlzwAgHEfpuAsJfw\niPbCx8cl+qPnASy0GypMKMdYJSTVHwWnZjJUCpfGxeSMm3r0LegS2eg8Nb9i\nfHhfOzwfeey/UlSauHZBnU2khftw+s/jvPU4f/gGBzaFkClLsHN2V3/O2QOq\nE6ofV4RA+RPSZg8hGhm765nJdm3qxfaMwuM1sAFQDW1kMeNxhlkg2SvuDa8M\nqyz9srPBvSeotKwqZxvLMRG50mgwDjM+dNgAjLqPvwU3ZzXf9GTQB9QhnqHZ\ncakXwgsHurcIZLd6lUJrWBUyYWjtxV1Cf7gS/hvwW/SFNwchkISlUW8pJ115\nGBVmT6PjNj/lVHyuQaWueMtbWh3jr/6XkNWuQ/F9ZY3I8Tnzv/dqiFsm+v43\ngPccUeuw//pccDGNj5q1VM9WuW2goBeOGB86Xw3l8eeI0aLpeRljmAKMA737\n9NikpmUa5S6DM99yW3zPx7NE/RJX63Y8Y5QM0NLu+ZBAksL9NcCUgQ/tUfWe\nYb9oGp4/vTvQrT3RW+5u2nRNV0zLpJouTn36SD+RbPPwdruJEk0pgD4q1tIP\n0AI6KlUafX+jYR1Rwe2TkTP/Z97rFE4x5VoQKS77hckCJFnbCveED0Fb/L23\nT/sd\r\n=NyGH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFt6N+MsQ0z2EHlAuj5SJ7DM2GIhnP0G/YTo12PlDWGtAiAfsmVbo6CJRK3CpxYOx8FaMHC2983JhQBurZqx7UbSeA=="}]},"_npmUser":{"name":"anonymous","email":"mail@ssav.me"},"directories":{},"maintainers":[{"name":"anonymous","email":"npm@moox.io"},{"name":"anonymous","email":"mail@ssav.me"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_10.1.0_1604505590020_0.7666800667339289"},"_hasShrinkwrap":false},"10.1.1":{"name":"postcss-url","version":"10.1.1","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","engines":{"node":">=10"},"dependencies":{"make-dir":"3.1.0","mime":"2.4.6","minimatch":"3.0.4","xxhashjs":"0.2.2"},"devDependencies":{"chai":"4.1.2","eslint":"7.12.1","mocha":"8.2.1","npmpub":"5.0.0","postcss":"^8.0.0","postcss-import":"12.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha --recursive --require ./test/setup","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"3a44006bfbdd50423166914ac1bfafc990b25cd8","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@10.1.1","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-cYeRNcXUMiM1sr3UgHkY+zMuqhSmJaLeP3VOZWWqShBDMB10DlrK5KfciLK0LGr7xKDPP5nH7Q2odvDHQSrP9A==","shasum":"f58b4ec684a7b662c170357150eddcbc04cefa24","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-10.1.1.tgz","fileCount":15,"unpackedSize":41080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfv/MWCRA9TVsSAnZWagAAxNgP/2DFU1wovFZvkTEe9LT4\nP0Z/e2dCAZm5qDKvuLX/tmZJdA9S/awA3VZsZhWxCHt5ulGolwnIURy17OF4\n3dyiXpmsOKdOoTnT08OTuJVdUZBmOGRrG1flUL16Ha4LEsntF5o8CoSTT2gm\nSMx6u8XDhPyVRwajPestGQ3BTqHuTEME1sTu8KftPHpiZIXrRdbWDhYFdpKq\nFcuN4e6AQZ2o1Xh+kYyY/jIGOQlRLdosrO1vW4NQcrTbkYueYy6zVcJAZFHT\nsddRkXu9++h4/k5cKsgs5h+dRupjs89iQfZusmuxZtXYrwCcun2vH2/qBA9R\nvJh8NPBjgJ6RdMhWWAo49olk4GmCflG0XDYjhGQdXz00YGFs12xKJNfsvpnP\nt1F7RPfSTao6XITBIwNDqqRBexqJ5XTrzez1jqeSIuDQT5H1+cP8IyL1xwG5\neY//9pwrtJVcF3QcCjo4gqpVFQIMKhSV+eDKxX2BGAqmYLw5NlHFUqNpxEew\nVD2gPVJqivqQqQXpp97z9mZg4hZF4qgm+wbVg/3c1MxYVdN3gRBRgr3t1Vc2\n6fzqunGIcEDKLHXD4H8xW6pG3OnpDCqSJnBESFWMluXWd3nfkZZbSpDkp37C\nRNJ2mJz+d+0J6lv1OkoXlKwl2XAEA2kFdKN+pX/VoLeFUqROjiOxVWS+BoOZ\n8fib\r\n=MId2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGhy5G8FcvSYLCb1ZL/flGTjzw2XRhuRE9Ii23Mv55tgIhAL/x7m7ShaGX9iSlsYgVJXgrNmQWJdplV2c4ocgktNjj"}]},"_npmUser":{"name":"anonymous","email":"mail@ssav.me"},"directories":{},"maintainers":[{"name":"anonymous","email":"npm@moox.io"},{"name":"anonymous","email":"mail@ssav.me"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_10.1.1_1606415125950_0.5419082032012841"},"_hasShrinkwrap":false},"10.1.2":{"name":"postcss-url","version":"10.1.2","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","engines":{"node":">=10"},"dependencies":{"make-dir":"~3.1.0","mime":"~2.4.6","minimatch":"~3.0.4","xxhashjs":"~0.2.2"},"devDependencies":{"chai":"4.1.2","eslint":"7.12.1","mocha":"8.2.1","npmpub":"5.0.0","postcss":"^8.0.0","postcss-import":"12.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha --recursive --require ./test/setup","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"301e5729f317d0848f1356f50f49766c473dc332","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@10.1.2","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-5OA4lGCLEsWvsDjKc+v0G9uqNKxu4gq543nrlhTiko1u1Robd7q+7ZfGQD1O4h+Iohp3YSSpPz470w6CA6ARhQ==","shasum":"0bd77675ecdd7b32381ba586179e6718a83caaed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-10.1.2.tgz","fileCount":15,"unpackedSize":41180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgVJvyCRA9TVsSAnZWagAAAvgP/AsvXT4F3FkdPBj9TI7p\n9P4KJ63RcPNYFo/6ipP9bvJN+XJPZ4GZD590vTjz2CYddKe2WTVFdAZOExO/\nuyyqr8QTDcQ1+1pZHNOwUTRaiLLP4E5ArU+KOK1xd0o3kCT/R1eJbw9svBXD\n9QTHrdltk1dceUK4StCHDYd2KX+ZGvSDE+qha+QwDRRBDhfvZWjeVSvAFfpN\nNvkvaO3LsrOcMmjK3bj60yR5/i8YP+39GB+K9AJKaXPdpC2z9bStlLBZtf9D\n/mWRI2dPB6ivRpiC+VTER/oE6JFJrox2BOUiJKvwP4iWACK0eXgyEyxho8af\nQOWlFyzqUK1s7ctcnhhxHG3yXzJQY3wVPhMsH3irTPgsyvEBrbirB8mIZCdY\nlw37yA2eGNBDHSG/iBEp++ZK6aUJcJYbbM2QysiI+K7VE+OPZ7CT9W0ulQYu\n8wjvi7swdgkO3twRUG9/RFXwCY5Vl9oJMYXQcpaLT66MqPANRWIbqaFUJQki\nyU5MsENSIRicWxvPN2DdO5lz2J5OjdtH73mpxJf6KzhT5B+PFl01pvkckd1y\n2r0UZimnxhYbambb7DPCpWG4ymruT4vp6wkQ74jx83nZ6G3+ABJ/WJ3Cll10\nAb5HPAauUErjqCOqZu1fh9shDwnzZkLgUwy4ypJC1CdGhVHRE9WTERym6C/5\nTyUs\r\n=HlF0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFyprSJSLo3bgrGY57TCJXzy91T3rHuiL7A1HcLgDBKpAiB6V/cEAq3NQijvlzyfqZS0yt48VIZNbad81fFPyFeQ6g=="}]},"_npmUser":{"name":"anonymous","email":"mail@ssav.me"},"directories":{},"maintainers":[{"name":"anonymous","email":"npm@moox.io"},{"name":"anonymous","email":"mail@ssav.me"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_10.1.2_1616157681848_0.01886117037728252"},"_hasShrinkwrap":false},"10.1.3":{"name":"postcss-url","version":"10.1.3","description":"PostCSS plugin to rebase or inline on url().","keywords":["css","postcss","postcss-plugin","url","rebase","inline","base64","assets"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-url.git"},"main":"src/index.js","engines":{"node":">=10"},"dependencies":{"make-dir":"~3.1.0","mime":"~2.5.2","minimatch":"~3.0.4","xxhashjs":"~0.2.2"},"devDependencies":{"chai":"4.1.2","eslint":"7.12.1","mocha":"8.2.1","npmpub":"5.0.0","postcss":"^8.0.0","postcss-import":"12.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"scripts":{"lint":"eslint --fix .","tests":"mocha --recursive --require ./test/setup","test":"npm run lint && npm run tests","release":"npmpub"},"gitHead":"c2523fb55497ca9bce1df5e2df5a40b8e41ee66a","bugs":{"url":"https://github.com/postcss/postcss-url/issues"},"homepage":"https://github.com/postcss/postcss-url#readme","_id":"postcss-url@10.1.3","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==","shasum":"54120cc910309e2475ec05c2cfa8f8a2deafdf1e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/postcss-url/-/postcss-url-10.1.3.tgz","fileCount":15,"unpackedSize":41231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgVJ8MCRA9TVsSAnZWagAAIQgP/09MiLsHmA4WeEVeqK/1\n87abjsin3GGeeEHS8+wCIpwMZjpyoW+FY7QgsTgq4/z7vfzzm02w2c21+ZfB\na4gx+X72/zFSJi2Ow/G9AaPBQdldk2IhsDZ7EwPdEnukRw5bBuJOfWYPB+n+\ny8LvgkVOiotqvg5l9W2Nn/YTiGAQPCe7u7OAfv5PXEgf+bbi83t/SEXTqp7K\nkKIffGvVHXBtwa2pTUaJJX/iMpAwCGuh3vNCfgIEThpX5gzMHUFrIsKaSFN8\n17S06NWPRPTzmFc9mMonCF/rwvaLJLwb5XJMmj+T4mTTdCTinosenhmNskmI\nJuJs1C67FHCTCdKzcEDCqfL8SfzGFCustq1BUhcXdPAFU08a3m2VWZLFJnoj\nsv+ytapkBmZ3WLYcJBUAbcBOE+teJmD6NuD/P+iSgubDhgeE8UoYWIZJFybh\nm/JX0hzYglPE3zY9Uo1LhTe4/maSnx5QLF+v9qNK8CvQzaymAilcJM+0faKQ\nnR2+++2lAuAM6XlqxR0Y4cwXOnmadulwAkDrvFhf5s+nUyzhK+8XiFddcC0o\npdTIxjxBawFFFiOYUuEGLaJ4mUC4O/FFrpXD5Lh31B+WCtOAzoNgrDfr9jQP\nXkHm12oRfAj/EPlRUeswdS8mRTtd3xzEhAty+TM3yrtsrLw5tCnUPCHALr8W\niozN\r\n=K1p8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICBiM8vw+/UUeGoG0e0RL59kIOFq1IH+EQvEPar/eFYfAiEAitI0LkRxHMkYaAlWa4yt7ZHeBhTaqxUWuY88iXrsUv0="}]},"_npmUser":{"name":"anonymous","email":"mail@ssav.me"},"directories":{},"maintainers":[{"name":"anonymous","email":"npm@moox.io"},{"name":"anonymous","email":"mail@ssav.me"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-url_10.1.3_1616158475554_0.3411706514128874"},"_hasShrinkwrap":false}},"name":"postcss-url","time":{"modified":"2022-06-24T11:08:37.509Z","created":"2014-08-24T08:01:27.074Z","1.0.0":"2014-08-24T08:01:27.074Z","1.0.1":"2014-10-09T05:25:15.022Z","1.0.2":"2014-10-10T15:45:35.135Z","1.1.0":"2014-10-29T15:35:16.358Z","1.1.1":"2014-10-31T15:16:31.149Z","1.1.2":"2014-11-08T07:41:45.162Z","1.1.4":"2014-12-04T07:23:07.878Z","1.1.3":"2014-12-04T07:25:00.095Z","1.2.0":"2014-12-04T08:10:20.952Z","1.2.1":"2014-12-09T17:47:14.857Z","1.2.2":"2015-01-10T07:03:26.577Z","1.2.3":"2015-01-10T07:09:57.724Z","1.3.0":"2015-01-26T09:12:39.991Z","1.3.1":"2015-01-26T10:56:42.823Z","2.0.0":"2015-01-26T11:09:16.426Z","2.0.1":"2015-01-31T06:47:39.360Z","2.0.2":"2015-02-19T05:50:04.079Z","2.1.0":"2015-03-12T06:48:33.016Z","2.1.1":"2015-03-31T07:00:29.996Z","3.0.0":"2015-04-02T06:37:07.736Z","3.1.0":"2015-05-01T05:18:24.729Z","3.2.0":"2015-05-09T04:11:24.695Z","3.3.0":"2015-06-16T18:21:14.565Z","3.3.1":"2015-06-18T09:52:43.306Z","4.0.0":"2015-06-18T09:56:02.469Z","4.0.1":"2015-08-06T05:53:55.533Z","5.0.0":"2015-09-07T04:58:36.430Z","5.0.1":"2015-10-03T22:03:07.518Z","5.0.2":"2015-10-12T05:35:23.864Z","5.1.0":"2016-01-19T07:32:17.032Z","5.1.1":"2016-02-03T06:28:45.464Z","5.1.2":"2016-05-01T19:50:18.336Z","6.0.0":"2017-04-03T01:07:19.010Z","6.0.1":"2017-04-03T15:09:05.307Z","6.0.2":"2017-04-04T14:30:42.221Z","6.0.3":"2017-04-04T16:38:32.603Z","6.0.4":"2017-04-06T20:03:43.485Z","6.1.0":"2017-05-13T10:02:02.696Z","6.4.0":"2017-06-05T06:23:41.711Z","6.3.0":"2017-06-05T06:48:27.331Z","6.4.1":"2017-06-05T08:20:08.534Z","6.3.1":"2017-06-05T09:36:33.770Z","7.0.0":"2017-06-05T09:50:07.145Z","7.1.0":"2017-07-19T07:02:54.196Z","7.1.1":"2017-07-24T09:50:39.830Z","7.1.2":"2017-08-11T19:55:51.111Z","7.2.0":"2017-11-17T18:29:17.564Z","7.2.1":"2017-11-19T17:53:28.491Z","7.3.0":"2017-11-25T21:52:55.915Z","7.3.1":"2018-02-25T21:05:13.165Z","7.3.2":"2018-04-03T19:48:12.800Z","8.0.0":"2018-08-09T11:52:55.525Z","9.0.0":"2019-04-16T21:07:12.003Z","10.0.0":"2020-10-23T20:06:28.437Z","10.1.0":"2020-11-04T15:59:50.123Z","10.1.1":"2020-11-26T18:25:26.312Z","10.1.2":"2021-03-19T12:41:21.983Z","10.1.3":"2021-03-19T12:54:35.719Z"},"readmeFilename":"README.md","homepage":"https://github.com/postcss/postcss-url#readme"}