{"maintainers":[{"email":"beneb.info@gmail.com","name":"anonymous"},{"email":"opensrc@ryanzim.com","name":"anonymous"}],"keywords":["css","postcss","postcss-plugin"],"dist-tags":{"latest":"3.0.1"},"author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"description":"Exclude/warn on duplicated PostCSS plugins.","readme":"# [postcss][postcss]-filter-plugins [![Build Status](https://travis-ci.org/postcss/postcss-filter-plugins.svg?branch=master)][ci]\n\n> Exclude/warn on duplicated PostCSS plugins.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-filter-plugins) do:\n\n```console\n$ npm install postcss-filter-plugins --save\n```\n\n## Example\n\nNote that this plugin does not actually transform your CSS; instead, it ensures\nthat plugins in the PostCSS instance are not duplicated. It is intended to be\nused by plugin packs such as [cssnano] or [cssnext].\n\n```js\nvar counter = postcss.plugin('counter', function () {\n    return function (css) {\n        css.eachDecl('foo', function (decl) {\n            let value = parseInt(decl.value, 10);\n            value += 1;\n            decl.value = String(value);\n        });\n    }\n});\n\nvar css = 'h1 { foo: 1 }';\nvar out = postcss([\n    filter(),\n    counter(),\n    counter()\n]).process(css).css;\n\nconsole.log(out);\n// => h1 { foo: 2 }\n// Note that you will get a PostCSS warning in the message registry\n```\n\n## API\n\n### filterPlugins([options])\n\n#### options\n\n##### direction\n\nType: `string`  \nDefault: `'both'`\n\nPass `'forward'`, `'backward'`, or `'both'` to customise the direction in which the\nplugin will look in the plugins array. See the [tests] for examples on how this\nworks.\n\n```js\npostcss([ filter({\n    direction: 'forward'\n}) ]).process(css).css);\n```\n\n##### exclude\n\nType: `array`  \nDefault: `[] (empty)`\n\nPlugins that should be excluded from the filter. Pass an array of plugin names.\n\n```js\npostcss([ filter({\n    exclude: ['postcss-cssstats']\n}) ]).process(css).css);\n```\n\n##### silent\n\nType: `boolean`  \nDefault: `false`\n\nSet this to true to disable the plugin from emitting any PostCSS warnings.\n\n```js\npostcss([ filter({\n    silent: true\n}) ]).process(css).css);\n```\n\n##### template\n\nType: `function`  \nDefault: `format function`\n\nThis function will be passed each PostCSS plugin object. You are expected to\nreturn a string from each call, which is then used to warn the user about her\nduplicated plugins.\n\n```js\npostcss([ filter({\n    template: function (plugin) {\n        return 'Duplicate plugin found: ' + plugin.postcssPlugin;\n    }\n}) ]).process(css).css);\n```\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nThanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n| [<img src=\"https://avatars.githubusercontent.com/u/1282980?v=3\" width=\"100px;\"/><br /><sub>Ben Briggs</sub>](http://beneb.info)<br />[💻](https://github.com/postcss/postcss-filter-plugins/commits?author=ben-eb) [📖](https://github.com/postcss/postcss-filter-plugins/commits?author=ben-eb) 👀 [⚠️](https://github.com/postcss/postcss-filter-plugins/commits?author=ben-eb) | [<img src=\"https://avatars.githubusercontent.com/u/157534?v=3\" width=\"100px;\"/><br /><sub>Maxime Thirouin</sub>](https://moox.io/)<br />[📖](https://github.com/postcss/postcss-filter-plugins/commits?author=MoOx) | [<img src=\"https://avatars.githubusercontent.com/u/373545?v=3\" width=\"100px;\"/><br /><sub>Andreas Lind</sub>](https://github.com/papandreou)<br />[💻](https://github.com/postcss/postcss-filter-plugins/commits?author=papandreou) |\n| :---: | :---: | :---: |\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification.\nContributions of any kind welcome!\n\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[ci]:      https://travis-ci.org/postcss/postcss-filter-plugins\n[cssnano]: http://cssnano.co\n[cssnext]: http://cssnext.io\n[postcss]: https://github.com/postcss/postcss\n[tests]:   src/__tests__\n","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"license":"MIT","versions":{"1.0.0":{"name":"postcss-filter-plugins","version":"1.0.0","description":"Exclude/warn on duplicated PostCSS plugins.","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","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"babel":"^5.6.2","babel-tape-runner":"^1.1.0","faucet":"0.0.1","postcss-minify-font-weight":"^1.0.1","tape":"^4.0.0"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^4.1.11","uniqid":"^1.0.0"},"gitHead":"a34603768aea030c147445490214c2269e50d2a4","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@1.0.0","_shasum":"bfd3aef839435a8b19b1fb3111c159a993be38b4","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"anonymous","email":"beneb.info@gmail.com"},"dist":{"shasum":"bfd3aef839435a8b19b1fb3111c159a993be38b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-1.0.0.tgz","integrity":"sha512-z/N8pCT5wz5l3CLkBhNIwmKK3NCCP3bAGygHpVDkDc10ZNxPnvCtnIwc0hDteg5DYpPMThjHl3fYttDcvGR6Bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF1pShT1C6DbnrV3JyYkbXYB4h1BlEpg+QmdWLzpiZ8+AiEAhhbEeDNhXL+y4ymgdPkjN2aWPmOxmtNiVlAcldpAFZ0="}]},"maintainers":[{"name":"anonymous","email":"beneb.info@gmail.com"}],"directories":{}},"1.0.1":{"name":"postcss-filter-plugins","version":"1.0.1","description":"Exclude/warn on duplicated PostCSS plugins.","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","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"babel":"^5.6.2","babel-tape-runner":"^1.1.0","postcss-minify-font-weight":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.0.0"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^4.1.11","uniqid":"^1.0.0"},"gitHead":"1d66b8093e19ed181d5484fc2fd9e0f913962e01","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@1.0.1","_shasum":"27f8279d5efab7aa3c17098813986b4b9d1d50e2","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"anonymous","email":"beneb.info@gmail.com"},"dist":{"shasum":"27f8279d5efab7aa3c17098813986b4b9d1d50e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-1.0.1.tgz","integrity":"sha512-frP9Wq2HZhC6EYLl0e7AJb4GfscxJknnHb9AvTiypicPFinC/tTwKtr7Fy2Oij0BBhMcJL4WnVFSMs16/ZD2xA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDoTjWALdIfDwxYprZjRxBKuonPbEIAXDpNxYgGgjPEmAiATfg4YKb11Od4PrvvMKkpT+eryGdtpu9hLpa3iMK16Cw=="}]},"maintainers":[{"name":"anonymous","email":"beneb.info@gmail.com"}],"directories":{}},"2.0.0":{"name":"postcss-filter-plugins","version":"2.0.0","description":"Exclude/warn on duplicated PostCSS plugins.","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","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","postcss-minify-font-weight":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^5.0.4","uniqid":"^1.0.0"},"gitHead":"4d3e4460e36a6f655271c95d0140e53d573b8c69","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@2.0.0","_shasum":"acce5d18c40e51be598911b6eca8b54d9e5bdedf","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"anonymous","email":"beneb.info@gmail.com"},"dist":{"shasum":"acce5d18c40e51be598911b6eca8b54d9e5bdedf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-2.0.0.tgz","integrity":"sha512-m2DoRKW/gr7PEibRXCwIFWtTq7l67fZmH63iq5C9yvnmZWfEjLoOU+d/11MdY1VjSGWoV8esr3uC/MR+kN8lhg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1ipdGjvzFffpI8gUNMycDHYUkVHBS5XXVts/DWQw2hgIgGn/bV+NKEd722nOZRdvYJrMkfM4Z8L3rJo96oB2s0V8="}]},"maintainers":[{"name":"anonymous","email":"beneb.info@gmail.com"}],"directories":{}},"2.0.1":{"name":"postcss-filter-plugins","version":"2.0.1","description":"Exclude/warn on duplicated PostCSS plugins.","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__/","test":"ava src/__tests__/","test-012":"ava src/__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","postcss","postcss-plugin"],"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","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"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^5.0.4","uniqid":"^3.0.0"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"fa8d3bed72e3a7ac51cd20e0ee9e72fa52d85870","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@2.0.1","_shasum":"7cd4fb8012ec182505896b79f45a1da22ed41924","_from":".","_npmVersion":"3.10.2","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"beneb.info@gmail.com"},"dist":{"shasum":"7cd4fb8012ec182505896b79f45a1da22ed41924","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-2.0.1.tgz","integrity":"sha512-UU7sdSHx4P8zT62M8SXKfkGNPsfrCRVgJ91WV3lq4RItJBKAf3t3t07d70/QKaJjPBOohCmwYNciHTTGPE6uDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyBvLZQmxdQ/LvvnQdvAhyiIillWvRvz/px1DUoLeLyQIhAP5en6Pv7PZTLhLHcWWI4D8qGjW87uYEvpj6DyHAq7sA"}]},"maintainers":[{"name":"anonymous","email":"beneb.info@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-filter-plugins-2.0.1.tgz_1468334209092_0.9331400454975665"},"directories":{}},"2.0.2":{"name":"postcss-filter-plugins","version":"2.0.2","description":"Exclude/warn on duplicated PostCSS plugins.","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__/","test":"ava src/__tests__/","test-012":"ava src/__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","postcss","postcss-plugin"],"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","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"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^5.0.4","uniqid":"^4.0.0"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"1e5d52336e0e5fbf8b25815eadeeefde80803b2e","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@2.0.2","_shasum":"6d85862534d735ac420e4a85806e1f5d4286d84c","_from":".","_npmVersion":"3.10.2","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"beneb.info@gmail.com"},"dist":{"shasum":"6d85862534d735ac420e4a85806e1f5d4286d84c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz","integrity":"sha512-tD/LpXw5VuGpLuWVLYd7lGQ4phLOUzJjw1gqRDojgxTACNIAXlD3M9KvdgGSpZ3yfMbyYly0VZmyCVT/c9k0wg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYYHoD8RYR+vxTKChRBnZT/5fx+7mjKZ8rWI8hdmfMLwIgODKF5Jnp7Xy6jouMckFi7mZjWCE9aagfrJiXGJc3TvU="}]},"maintainers":[{"name":"anonymous","email":"beneb.info@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-filter-plugins-2.0.2.tgz_1475512119439_0.8767011414747685"},"directories":{}},"3.0.0":{"name":"postcss-filter-plugins","version":"3.0.0","description":"Exclude/warn on duplicated PostCSS plugins.","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__/","test":"ava src/__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","postcss","postcss-plugin"],"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","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"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^6.0.14","uniqid":"^4.0.0"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"5e35eb18227b711d2b8a0375179b362cdfcd552c","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@3.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"integrity":"sha512-a4haoA7b6M7OgXrVqLEWdgX8u/NUKVUpmzuNsmP1RCNt3V931kW2sy1mdJhjGEy/U0g+u/vXlDpFycbg/Qylng==","shasum":"0bef36c239b7073eb48ef51fe720571dae73bcd1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-3.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQOzKJUkt+WiP32fiZw/HHP4Gbgt1EeY47IZBv0ywa3QIgVDMvDgek3gH3HbAH1af7K5PjR9qjEbAp3vv1NpcdwX8="}]},"maintainers":[{"email":"opensrc@ryanzim.com","name":"anonymous"},{"email":"beneb.info@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-filter-plugins-3.0.0.tgz_1515523356422_0.7053887881338596"},"directories":{}},"3.0.1":{"name":"postcss-filter-plugins","version":"3.0.1","description":"Exclude/warn on duplicated PostCSS plugins.","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__/","test":"ava src/__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","postcss","postcss-plugin"],"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","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"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^6.0.14"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"6d9bef76f149d51dfcc8ad8c87f20d9fb20a3cf8","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@3.0.1","_npmVersion":"5.8.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"integrity":"sha512-tRKbW4wWBEkSSFuJtamV2wkiV9rj6Yy7P3Y13+zaynlPEEZt8EgYKn3y/RBpMeIhNmHXFlSdzofml65hD5OafA==","shasum":"9d226e946d56542ab7c26123053459a331df545d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-3.0.1.tgz","fileCount":5,"unpackedSize":10006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/uReCRA9TVsSAnZWagAAmlwP/32jXtRRze0SSTG3AU4G\ndJdSDIy+CywsglrxNRcRJeHLK+mZ7u49zOeX4WYtEQweCmpv4xFbz7FNwDH9\n5tonDia8pi1XV/yipF20PazIY9aUqTi10Bv44bn8HEyujvrSdnrZ4if7kw5R\nmq2h6KxoDe6uKr+6pAcXXq1R52hiqmYLug1M64Y3Qw4m3OsODFaIty/yJoEN\nM/sLPbEf6xb757+oXs3hTU/uf5sQTJXgkVAnPYNMldNculgXmYFMoSLiqWX0\nEuQp098i94sEelvknxoKv/ikNRh6mlnXGp0SvY0l4edwrtBkcpZD/qiX8Hza\nfuPH+q4T8nqBYxGp8OA28vESpEqDt4g4c9spPZcgwA1ZVSl8WZCI5jXsWvBj\nENcIP6w9gXuns3/u07ZF0Y/3Dy7V2IhSPDZEpPKsia8qh7Fv4Y2jklj5zWtc\npLakuzbkPMJuXGBl4wQ8HGc0CAEgyLBE2gIb70diYDK4WLsPkpJtUpwufUnQ\nmArhsaRJRcIRD8j2IGtG896++1QHjkZD4MI3l8dWdi+gMgJsiINa1CQ6YBRV\nlZscXQKIi3b8b5DHwRM0Zw9HgZ2CjNnwyilYJpRI1RMUxH4Yf9lbKYL08NYu\nAPhWL6YGyt09g7OQfR0Fx48xrKUDxHrlvsteTy+ME3oSStbj80ge+2G4nc/X\nlil5\r\n=UGGH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGzDQIGHvQqni1CZWPWQSRRrwXvywsNE73lV6fQuSqDiAiAzQpw8Rz+duoOLmaTuJ/b7cLhe18W8biBX8we0vgyvCA=="}]},"maintainers":[{"email":"beneb.info@gmail.com","name":"anonymous"},{"email":"opensrc@ryanzim.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-filter-plugins_3.0.1_1526654045725_0.07383593391130217"},"_hasShrinkwrap":false},"2.0.3":{"name":"postcss-filter-plugins","version":"2.0.3","description":"Exclude/warn on duplicated PostCSS plugins.","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__/","test":"ava src/__tests__/","test-012":"ava src/__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","postcss","postcss-plugin"],"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","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"},"homepage":"https://github.com/postcss/postcss-filter-plugins","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-filter-plugins.git"},"dependencies":{"postcss":"^5.0.4"},"ava":{"require":"babel-register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"86501b247fc33dd1386033111aacbf3e43fa148b","bugs":{"url":"https://github.com/postcss/postcss-filter-plugins/issues"},"_id":"postcss-filter-plugins@2.0.3","_npmVersion":"5.8.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"opensrc@ryanzim.com"},"dist":{"integrity":"sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==","shasum":"82245fdf82337041645e477114d8e593aa18b8ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz","fileCount":5,"unpackedSize":9774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBCx6CRA9TVsSAnZWagAA9VcP/As265yt8mwFdMkmpPo0\n+LgD5a87nHFN6/DK0ZoX+l2vMWYko5JYkYAG3DRwNQ0uc3V3M81RWRaxul/U\n+mrLa2QCSRlxjxZklMp87SRRzBVKY+zQV1YoK4Sqxw2XaVWGbjSfd89eU78p\nbAVRZ8YAR23/qFpoy+eeYkEcVdYHS3axc7MYNMKInd/nFtot1TntZnNXV1QD\nmXPAKeg2UfhyaRmCAknDxOCcxIXGLOepShEy85wBLbtgJpfYFSzDsDWMcCUx\nIA5PeEgys2MfjQYehPNqwTOvKnB6VuGCEiP/AkcSrigPA5RX0OHSJuoBi0Xf\no9k0uMYrKj31mi/FHkmSAiZ1lOsGz/aMdq8fzl8aXI5uNfeoxJd5wlA7CncN\n15jiQcuB/cWLNmnFSPgDfPH4T6jW7rnjNnxTdThrg2egZhC6rbWkqKrmuQ98\nTkrWYrAq/CiFOVxYttfs1dr1pedR9B3X0ptyFqKhotd4g2qKmAJll3iY+rqf\nNd8np9o2Qfp+TvEpGwuPojPXLgk1Jf+pdiAMcmQ0XgSRmZe4qctu0rW1eoc8\nu2t3y44FK+vhpORpQyuk0DK8bLNIzYPMO9eKT3Nfww1pclAOXG82gZVYpE5t\nalw3uJrnjlSY08ud415YOquRfYc3DN4i7MNywfnuwgiUzUaIqXwA6f5DsoZC\n29cx\r\n=lY3s\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFx6xXImI34mgIzRXtduKhqgYc4dfWw9y/URXWublHvZAiAyfsQkruuPCDgOhSVc5/A/15kYhzJjg4vRANE2XE6ARg=="}]},"maintainers":[{"email":"beneb.info@gmail.com","name":"anonymous"},{"email":"opensrc@ryanzim.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-filter-plugins_2.0.3_1527000185761_0.20550265688270475"},"_hasShrinkwrap":false}},"name":"postcss-filter-plugins","time":{"modified":"2022-06-24T09:56:35.303Z","created":"2015-07-20T09:37:34.950Z","1.0.0":"2015-07-20T09:37:34.950Z","1.0.1":"2015-09-01T23:19:04.778Z","2.0.0":"2015-09-04T23:04:27.635Z","2.0.1":"2016-07-12T14:36:51.739Z","2.0.2":"2016-10-03T16:28:41.403Z","3.0.0":"2018-01-09T18:42:37.722Z","3.0.1":"2018-05-18T14:34:05.908Z","2.0.3":"2018-05-22T14:43:05.845Z"},"readmeFilename":"README.md","homepage":"https://github.com/postcss/postcss-filter-plugins"}