{"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"dist-tags":{"latest":"2.1.6","next":"4.0.0-rc.2"},"author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"description":"Optimise inline SVG with PostCSS.","readme":"# [postcss][postcss]-svgo\n\n> Optimise inline SVG with PostCSS.\n\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-svgo) do:\n\n```\nnpm install postcss-svgo --save\n```\n\n\n## Example\n\n### Input\n\n```css\nh1 {\n    background: url('data:image/svg+xml;charset=utf-8,<?xml version=\"1.0\" encoding=\"utf-8\"?><!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\"><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xml:space=\"preserve\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"yellow\" /></svg>');\n}\n\nh2 {\n    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iNDAiIGZpbGw9InllbGxvdyIgLz48IS0tdGVzdCBjb21tZW50LS0+PC9zdmc+');\n}\n```\n\n### Output\n\n```css\nh1 {\n    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"%23ff0\"/></svg>');\n}\n\nh2 {\n    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQwIiBmaWxsPSIjZmYwIi8+PC9zdmc+');\n}\n```\n\n\n## API\n\n### `svgo([options])`\n\nNote that postcss-svgo is an *asynchronous* processor. It cannot be used\nlike this:\n\n```js\nvar result = postcss([ svgo() ]).process(css).css;\nconsole.log(result);\n```\n\nInstead make sure your PostCSS runner uses the asynchronous API:\n\n```js\npostcss([ svgo() ]).process(css).then(function (result) {\n    console.log(result.css);\n});\n```\n\n#### options\n\n##### encode\n\nType: `boolean`\nDefault: `undefined`\n\nIf `true`, it will encode URL-unsafe characters such as `<`, `>` and `&`;\n`false` will decode these characters, and `undefined` will neither encode nor\ndecode the original input. Note that regardless of this setting, `#` will\nalways be URL-encoded.\n\n##### plugins\n\nOptionally, you can customise the output by specifying the `plugins` option. You\nwill need to provide the config in comma separated objects, like the example\nbelow. Note that you can either disable the plugin by setting it to `false`,\nor pass different options to change the default behaviour.\n\n```js\nvar postcss = require('postcss');\nvar svgo = require('postcss-svgo');\n\nvar opts = {\n    plugins: [{\n        removeDoctype: false\n    }, {\n        removeComments: false\n    }, {\n        cleanupNumericValues: {\n            floatPrecision: 2\n        }\n    }, {\n        convertColors: {\n            names2hex: false,\n            rgb2hex: false\n        }\n    }]\n};\n\npostcss([ svgo(opts) ]).process(css).then(function (result) {\n    console.log(result.css)\n});\n```\n\nYou can view the [full list of plugins here][plugins].\n\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/ben-eb/cssnano/blob/master/CONTRIBUTORS.md).\n\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n[plugins]: https://github.com/svg/svgo/tree/master/plugins\n","repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"users":{"suemcnab":true,"wvlvik":true,"zamkevich":true},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"license":"MIT","versions":{"1.0.0":{"name":"postcss-svgo","version":"1.0.0","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | faucet"},"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.6.2","babel-tape-runner":"^1.1.0","faucet":"0.0.1","pleeease-filters":"^1.0.1","tape":"^4.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"https://github.com/ben-eb/postcss-svgo"},"dependencies":{"async-replace":"^1.0.0","is-svg":"^1.1.1","postcss":"^4.1.11","svgo":"^0.5.2"},"gitHead":"9f68d30486c182ffd06d4f9ceadf67d62584dfcc","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@1.0.0","_shasum":"fcb3931b96964a47b45866d78ba059ee47743fd6","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"fcb3931b96964a47b45866d78ba059ee47743fd6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"postcss-svgo","version":"1.0.1","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | faucet"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.6.2","babel-tape-runner":"^1.1.0","faucet":"0.0.1","pleeease-filters":"^1.0.1","tape":"^4.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"https://github.com/ben-eb/postcss-svgo"},"dependencies":{"async-replace":"^1.0.0","is-svg":"^1.1.1","postcss":"^4.1.11","svgo":"^0.5.2"},"gitHead":"a4c196fe72a58fd1e213ca519c9a95d2aa942594","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@1.0.1","_shasum":"f9c41233e012d23cf1010558180c33e908f873b0","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"}],"dist":{"shasum":"f9c41233e012d23cf1010558180c33e908f873b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-1.0.1.tgz"},"directories":{}},"1.1.0":{"name":"postcss-svgo","version":"1.1.0","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | faucet"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.6.2","babel-tape-runner":"^1.1.0","faucet":"0.0.1","pleeease-filters":"^1.0.1","tape":"^4.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"async-replace":"^1.0.0","is-svg":"^1.1.1","postcss":"^4.1.11","svgo":"^0.5.2"},"gitHead":"e055a8030cd22ee955a0c0b5992e08d4f28d940b","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@1.1.0","_shasum":"ead7f084efd3ccc555c2601a78b119898618f45c","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"ead7f084efd3ccc555c2601a78b119898618f45c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-1.1.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"}],"directories":{}},"2.0.0":{"name":"postcss-svgo","version":"2.0.0","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"^1.2.0","pleeease-filters":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"async-replace":"^1.0.0","is-svg":"^1.1.1","postcss":"^5.0.2","svgo":"^0.5.6"},"gitHead":"914c4faf1c7a98a89c9fd1d8722dbe4de2528319","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.0.0","_shasum":"2b4737ee9b110eab9873863b4757a129d8d635aa","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"2b4737ee9b110eab9873863b4757a129d8d635aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.0.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"}],"directories":{}},"2.0.1":{"name":"postcss-svgo","version":"2.0.1","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"^1.2.0","pleeease-filters":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"async-replace":"^1.0.0","is-svg":"^1.1.1","postcss":"^5.0.2","svgo":"^0.5.6"},"gitHead":"46ed5b00205c163ff17145f0f3b098e50280f3bb","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.0.1","_shasum":"b903f005af655e7558ba8d63f7ff5b86aceacd9f","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"b903f005af655e7558ba8d63f7ff5b86aceacd9f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.0.1.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"}],"directories":{}},"2.0.2":{"name":"postcss-svgo","version":"2.0.2","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"^1.2.0","pleeease-filters":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"async-replace":"^1.0.0","is-svg":"^1.1.1","postcss":"^5.0.2","svgo":"^0.5.6"},"gitHead":"2ef898e7383331a93f59bd78f0aca22452fb32eb","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.0.2","_shasum":"7ec01eb40e2efb4ab66e64a8b244d712f61925b1","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"7ec01eb40e2efb4ab66e64a8b244d712f61925b1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.0.2.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"}],"directories":{}},"2.0.3":{"name":"postcss-svgo","version":"2.0.3","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"^1.2.0","pleeease-filters":"^2.0.0","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^1.1.1","postcss":"^5.0.2","postcss-value-parser":"^2.0.5","svgo":"^0.5.6"},"gitHead":"90bfd96679803b8b10a46282625c66586f307801","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.0.3","_shasum":"87a4774b5aed503316951b3141416893b13e6c59","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"87a4774b5aed503316951b3141416893b13e6c59","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.0.3.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.4":{"name":"postcss-svgo","version":"2.0.4","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"^1.2.0","pleeease-filters":"^2.0.0","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^1.1.1","postcss":"^5.0.2","postcss-value-parser":"^3.0.1","svgo":"^0.5.6"},"gitHead":"69792ff7bd65aaa96addc10f1784a2a4419df22e","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.0.4","_shasum":"20dd275b09e93e7c860adbd9d93d556d3b08c9e0","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"20dd275b09e93e7c860adbd9d93d556d3b08c9e0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.0.4.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.1.0":{"name":"postcss-svgo","version":"2.1.0","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"1.2.0","pleeease-filters":"^2.0.0","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^1.1.1","postcss":"^5.0.2","postcss-value-parser":"^3.0.1","svgo":"^0.5.6"},"gitHead":"458409a115def9a974a771ecfbf2561669a3aff6","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.0","_shasum":"cbb497cf60958c41bfc9de5efea81070e059d634","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"cbb497cf60958c41bfc9de5efea81070e059d634","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.1.1":{"name":"postcss-svgo","version":"2.1.1","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"babel src --out-dir dist --ignore /__tests__/","test-unformatted":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run test-unformatted | tap-spec"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel":"^5.8.21","babel-tape-runner":"1.2.0","pleeease-filters":"^2.0.0","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^1.1.1","postcss":"^5.0.2","postcss-value-parser":"^3.0.1","svgo":"^0.6.1"},"gitHead":"e8c383fcc17dfcd227fd2842f3ae306c6cacfcb3","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.1","_shasum":"dac5b375d092789d64bbfcabe9dc7486b8aa8ecd","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"dac5b375d092789d64bbfcabe9dc7486b8aa8ecd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.1.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.1.2":{"name":"postcss-svgo","version":"2.1.2","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"pretest":"eslint src","prepublish":"del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/","test":"nyc --reporter=text ava src/__tests__"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"ava":"^0.11.0","babel-cli":"^6.4.5","babel-core":"^6.4.5","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.3.13","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-0":"^6.3.13","coveralls":"^2.11.6","del-cli":"^0.2.0","eslint":"^1.10.3","nyc":"^5.6.0","pleeease-filters":"^2.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^1.1.1","postcss":"^5.0.14","postcss-value-parser":"^3.2.3","svgo":"^0.6.1"},"ava":{"require":"babel-core/register"},"gitHead":"fd96a8bf9348153d2a165a871bc754c99a234446","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.2","_shasum":"3bcfc081273ed7cb639114be9da5d0004f3f9aca","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"3bcfc081273ed7cb639114be9da5d0004f3f9aca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.2.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/postcss-svgo-2.1.2.tgz_1455278296370_0.1382175034377724"},"directories":{}},"2.1.3":{"name":"postcss-svgo","version":"2.1.3","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"pretest":"eslint src","prepublish":"del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/","report":"nyc report --reporter=html","test":"nyc --reporter=text ava src/__tests__"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"ava":"^0.14.0","babel-cli":"^6.4.5","babel-core":"^6.4.5","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.3.13","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-0":"^6.3.13","coveralls":"^2.11.6","del-cli":"^0.2.0","eslint":"^2.0.0","eslint-config-cssnano":"^2.0.0","nyc":"^6.0.0","pleeease-filters":"^3.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^2.0.0","postcss":"^5.0.14","postcss-value-parser":"^3.2.3","svgo":"^0.6.1"},"ava":{"require":"babel-core/register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"487c9f9786f263d03303ae79eccad04f13fa08ed","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.3","_shasum":"593dc4056d507969e4123a3f319c7ff045e6bf0c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"593dc4056d507969e4123a3f319c7ff045e6bf0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.3.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-svgo-2.1.3.tgz_1461321721725_0.12541857990436256"},"directories":{}},"2.1.4":{"name":"postcss-svgo","version":"2.1.4","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"contributorAdd":"all-contributors add","contributorGenerate":"all-contributors generate","pretest":"eslint src","prepublish":"del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/","report":"nyc report --reporter=html","test":"nyc --reporter=text ava src/__tests__","test-012":"nyc --reporter=text ava src/__tests__"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"all-contributors-cli":"^3.0.5","ava":"^0.15.0","babel-cli":"^6.4.5","babel-core":"^6.4.5","babel-plugin-add-module-exports":"^0.2.0","babel-preset-es2015":"^6.3.13","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-0":"^6.3.13","babel-register":"^6.9.0","coveralls":"^2.11.6","del-cli":"^0.2.0","eslint":"^3.0.0","eslint-config-cssnano":"^3.0.0","eslint-plugin-babel":"^3.3.0","eslint-plugin-import":"^1.10.2","nyc":"^7.0.0","pleeease-filters":"^3.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^2.0.0","postcss":"^5.0.14","postcss-value-parser":"^3.2.3","svgo":"^0.6.1"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"68bb1dd243149632080bbf4aa032085165e90bb7","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.4","_shasum":"ea335733dec53ff580b9f4324081cfeaae35cf3b","_from":".","_npmVersion":"3.10.2","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"ea335733dec53ff580b9f4324081cfeaae35cf3b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.4.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/postcss-svgo-2.1.4.tgz_1468272803407_0.08898314251564443"},"directories":{}},"2.1.5":{"name":"postcss-svgo","version":"2.1.5","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"contributorAdd":"all-contributors add","contributorGenerate":"all-contributors generate","pretest":"eslint src","prepublish":"del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/","report":"nyc report --reporter=html","test":"nyc --reporter=text ava src/__tests__","test-012":"nyc --reporter=text ava src/__tests__"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"all-contributors-cli":"^3.0.5","ava":"^0.16.0","babel-cli":"^6.4.5","babel-core":"^6.4.5","babel-plugin-add-module-exports":"^0.2.0","babel-preset-es2015":"^6.3.13","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-0":"^6.3.13","babel-register":"^6.9.0","coveralls":"^2.11.6","del-cli":"^0.2.0","eslint":"^3.0.0","eslint-config-cssnano":"^3.0.0","eslint-plugin-babel":"^3.3.0","eslint-plugin-import":"^1.10.2","nyc":"^8.0.0","pleeease-filters":"^3.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^2.0.0","postcss":"^5.0.14","postcss-value-parser":"^3.2.3","svgo":"^0.7.0"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"639e5cb9abeaafee3e5b81c60c5a8085ea39c42b","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.5","_shasum":"46fc0363f01bab6a36a9abb01c229fcc45363094","_from":".","_npmVersion":"3.10.2","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"46fc0363f01bab6a36a9abb01c229fcc45363094","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.5.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/postcss-svgo-2.1.5.tgz_1474202257444_0.543536662356928"},"directories":{}},"2.1.6":{"name":"postcss-svgo","version":"2.1.6","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"contributorAdd":"all-contributors add","contributorGenerate":"all-contributors generate","pretest":"eslint src","prepublish":"del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/","report":"nyc report --reporter=html","test":"nyc --reporter=text ava src/__tests__","test-012":"nyc --reporter=text ava src/__tests__"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"all-contributors-cli":"^3.0.5","ava":"^0.16.0","babel-cli":"^6.4.5","babel-core":"^6.4.5","babel-plugin-add-module-exports":"^0.2.0","babel-preset-es2015":"^6.3.13","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-0":"^6.3.13","babel-register":"^6.9.0","coveralls":"^2.11.6","del-cli":"^0.2.0","eslint":"^3.0.0","eslint-config-cssnano":"^3.0.0","eslint-plugin-babel":"^3.3.0","eslint-plugin-import":"^2.0.1","nyc":"^10.0.0","pleeease-filters":"^3.0.0"},"homepage":"https://github.com/ben-eb/postcss-svgo","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-svgo.git"},"dependencies":{"is-svg":"^2.0.0","postcss":"^5.0.14","postcss-value-parser":"^3.2.3","svgo":"^0.7.0"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"d65b837ba2baae3082f4ea331740bc9b7c9f00f0","bugs":{"url":"https://github.com/ben-eb/postcss-svgo/issues"},"_id":"postcss-svgo@2.1.6","_shasum":"b6df18aa613b666e133f08adb5219c2684ac108d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"b6df18aa613b666e133f08adb5219c2684ac108d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-2.1.6.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-svgo-2.1.6.tgz_1481987893902_0.42932285158894956"},"directories":{}},"4.0.0-rc.0":{"name":"postcss-svgo","version":"4.0.0-rc.0","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel-cli":"^6.0.0","cross-env":"^3.0.0","pleeease-filters":"^3.0.0"},"homepage":"https://github.com/ben-eb/cssnano","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"dependencies":{"is-svg":"^2.0.0","postcss":"^6.0.0","postcss-value-parser":"^3.0.0","svgo":"^0.7.0"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"engines":{"node":">=4"},"_id":"postcss-svgo@4.0.0-rc.0","_shasum":"cf0971d7422d97693144b413552d96716d622cee","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"cf0971d7422d97693144b413552d96716d622cee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-4.0.0-rc.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-svgo-4.0.0-rc.0.tgz_1496311193787_0.27554426970891654"},"directories":{}},"4.0.0-rc.2":{"name":"postcss-svgo","version":"4.0.0-rc.2","description":"Optimise inline SVG with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","minify","optimise","postcss","postcss-plugin","svg","svgo"],"license":"MIT","devDependencies":{"babel-cli":"^6.0.0","cross-env":"^3.0.0","pleeease-filters":"^3.0.0"},"homepage":"https://github.com/ben-eb/cssnano","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"dependencies":{"is-svg":"^2.0.0","postcss":"^6.0.0","postcss-value-parser":"^3.0.0","svgo":"^0.7.0"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"engines":{"node":">=4"},"_id":"postcss-svgo@4.0.0-rc.2","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"integrity":"sha512-EmdJr21moFRZFgXPuil8dofiH+8+3aPiTMQGwFCcmforWOAdP+xR4igmQbKaLeLpnevpiwG5lGj24JFIoPbHzw==","shasum":"c9a650e895bf6fcf517612d26331190ad696f30f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-svgo/-/postcss-svgo-4.0.0-rc.2.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-svgo-4.0.0-rc.2.tgz_1502049211835_0.8297382742166519"},"directories":{}}},"name":"postcss-svgo","time":{"modified":"2017-08-06T23:47:15.649Z","created":"2015-07-09T23:22:45.927Z","1.0.0":"2015-07-09T23:22:45.927Z","1.0.1":"2015-07-09T23:26:45.941Z","1.1.0":"2015-07-18T17:19:20.394Z","2.0.0":"2015-08-27T12:42:54.073Z","2.0.1":"2015-09-11T13:48:50.778Z","2.0.2":"2015-09-22T08:32:24.694Z","2.0.3":"2015-09-24T14:01:15.722Z","2.0.4":"2015-10-08T13:32:47.756Z","2.1.0":"2015-11-25T21:42:07.271Z","2.1.1":"2015-12-15T10:48:52.422Z","2.1.2":"2016-02-12T11:58:19.907Z","2.1.3":"2016-04-22T10:42:04.122Z","2.1.4":"2016-07-11T21:33:24.979Z","2.1.5":"2016-09-18T12:37:39.337Z","2.1.6":"2016-12-17T15:18:16.385Z","4.0.0-rc.0":"2017-06-01T09:59:54.776Z","4.0.0-rc.2":"2017-08-06T19:53:32.807Z"},"readmeFilename":"README.md","homepage":"https://github.com/ben-eb/cssnano"}