{"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"keywords":["css","comments","postcss","postcss-plugin"],"dist-tags":{"latest":"2.0.4","next":"4.0.0-rc.2"},"author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"description":"Discard comments in your CSS files with PostCSS.","readme":"# [postcss][postcss]-discard-comments\n\n> Discard comments in your CSS files with PostCSS.\n\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-discard-comments) do:\n\n```\nnpm install postcss-discard-comments --save\n```\n\n\n## Example\n\n### Input\n\n```css\nh1/* heading */{\n    margin: 0 auto\n}\n```\n\n### Output\n\n```css\nh1 {\n    margin: 0 auto\n}\n```\n\nThis module discards comments from your CSS files; by default, it will remove\nall regular comments (`/* comment */`) and preserve comments marked as important\n(`/*! important */`).\n\nNote that this module does not handle source map comments because they are not\navailable to it; PostCSS handles this internally, so if they are removed then\nyou will have to [configure source maps in PostCSS][maps].\n\n[maps]: https://github.com/postcss/postcss/blob/master/docs/source-maps.md\n\n\n## API\n\n### comments([options])\n\n#### options\n\n##### remove(function)\n\nType: `function`\nReturn: `boolean`\nVariable: `comment` contains a comment without `/**/`\n\nFor each comment, return true to remove, or false to keep the comment.\n\n```js\nfunction(comment) {}\n```\n\n```js\nvar css = '/* headings *//*@ h1 */h1{margin:0 auto}/*@ h2 */h2{color:red}';\nconsole.log(postcss(comments({\n    remove: function(comment) { return comment[0] == \"@\"; }\n})).process(css).css);\n//=> /* headings */h1{margin:0 auto}h2{color:red}\n```\n**NOTE:** If you use the `remove` function other options will not be available.\n\n##### removeAll\n\nType: `boolean`\nDefault: `false`\n\nRemove all comments marked as important.\n\n```js\nvar css = '/*! heading */h1{margin:0 auto}/*! heading 2 */h2{color:red}';\nconsole.log(postcss(comments({removeAll: true})).process(css).css);\n//=> h1{margin:0 auto}h2{color:red}\n```\n\n##### removeAllButFirst\n\nType: `boolean`\nDefault: `false`\n\nRemove all comments marked as important, but the first one.\n\n```js\nvar css = '/*! heading */h1{margin:0 auto}/*! heading 2 */h2{color:red}';\nconsole.log(postcss(comments({removeAllButFirst: true})).process(css).css);\n//=> /*! heading */h1{margin:0 auto}h2{color:red}\n```\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\n[postcss]: https://github.com/postcss/postcss\n","repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"users":{"imagion":true,"phritolay":true},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"license":"MIT","versions":{"1.0.0":{"name":"postcss-discard-comments","version":"1.0.0","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"therealbenbriggs@hotmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.0.6"},"gitHead":"7c00c02c09b6bfdc992de657fec9b301e4708cff","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.0.0","_shasum":"ab4bf79f3546849763853a8993374208b4a8b2a0","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"ab4bf79f3546849763853a8993374208b4a8b2a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"postcss-discard-comments","version":"1.0.1","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"therealbenbriggs@hotmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.0.6"},"gitHead":"baa4f806cffaede013f5a8eec05946656db5037b","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.0.1","_shasum":"da77720ec1cb376a6a6ebe378a360626580fb70a","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"da77720ec1cb376a6a6ebe378a360626580fb70a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"postcss-discard-comments","version":"1.0.2","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/commentRemover.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"therealbenbriggs@hotmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.0.6"},"gitHead":"fc8f6bbe80a783f46da3267722f8673bb8e99593","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.0.2","_shasum":"e05de0a3301b9f57add11cfeec181bf2606640d0","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"e05de0a3301b9f57add11cfeec181bf2606640d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.0.2.tgz"},"directories":{}},"1.1.0":{"name":"postcss-discard-comments","version":"1.1.0","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/commentRemover.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.1.2"},"gitHead":"2c75ee373658b9fc4605c8aedaaffcdee13d1d11","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.1.0","_shasum":"9c347df3f0548dbb1b46f492274157c7c55920f4","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"9c347df3f0548dbb1b46f492274157c7c55920f4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"postcss-discard-comments","version":"1.1.1","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/commentRemover.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.1.2"},"gitHead":"695695cc9b0dcb8c95ad0ad61be13f7ce53acc23","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.1.1","_shasum":"4d883256e8d24641e1e4ce9c862c41f6497bbc95","_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":"4d883256e8d24641e1e4ce9c862c41f6497bbc95","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"postcss-discard-comments","version":"1.1.2","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/commentRemover.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.1.2"},"gitHead":"cecc48379d69d61102b274451ef70fd2ae4e6f47","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.1.2","_shasum":"1179aa6cb8d50fdb536884abb570309bd222e8f1","_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":"1179aa6cb8d50fdb536884abb570309bd222e8f1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.1.2.tgz"},"directories":{}},"1.1.3":{"name":"postcss-discard-comments","version":"1.1.3","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/commentRemover.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugins"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.1.11"},"gitHead":"fb478d74860a1a8a2ca6bb5a7c04aac1ba210162","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.1.3","_shasum":"f5715ef3a95409c3f5f0e7762546c82f321be26b","_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":"f5715ef3a95409c3f5f0e7762546c82f321be26b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.1.3.tgz"},"directories":{}},"1.2.0":{"name":"postcss-discard-comments","version":"1.2.0","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/commentRemover.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.1.11"},"gitHead":"bb84a672718596661ac373083b574bb0f13cd6bb","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.2.0","_shasum":"191fb22daaab0ec3ee3753c66d2cb7311dc5b072","_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":"191fb22daaab0ec3ee3753c66d2cb7311dc5b072","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"postcss-discard-comments","version":"1.2.1","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"tap-spec":"^4.0.2","tape":"^4.1.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^4.1.16"},"gitHead":"8cc726f6d753047da89ea891db05b604ed18b330","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@1.2.1","_shasum":"851dca6b9354c0fb6316cb1a1048f6f5e3960ad0","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"851dca6b9354c0fb6316cb1a1048f6f5e3960ad0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-1.2.1.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.0":{"name":"postcss-discard-comments","version":"2.0.0","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"node-balanced":"0.0.14","postcss":"^5.0.4"},"gitHead":"7ba957da373a980ccbffde158a798fba43463ecd","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@2.0.0","_shasum":"9a0612fb951d88578b7a1584ec3f1d2a9bdbb1ef","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"9a0612fb951d88578b7a1584ec3f1d2a9bdbb1ef","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-2.0.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.1":{"name":"postcss-discard-comments","version":"2.0.1","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","files":["lib","index.js","LICENSE-MIT"],"scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"postcss-scss":"^0.1.2","tap-spec":"^4.1.0","tape":"^4.2.1"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"postcss":"^5.0.8"},"gitHead":"586aed2d7112ff4c613bd01145f467177af6f55d","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@2.0.1","_shasum":"7663efb5f0af9ddfbd6da43db53d9c750e710da8","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"7663efb5f0af9ddfbd6da43db53d9c750e710da8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-2.0.1.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.2":{"name":"postcss-discard-comments","version":"2.0.2","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","files":["lib","index.js","LICENSE-MIT"],"scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"postcss-scss":"^0.1.2","postcss-simple-vars":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.2.1"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"postcss":"^5.0.8"},"gitHead":"49fcfc7c5898a498ba0fee3fff70e746e8f38a70","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@2.0.2","_shasum":"9899744aad1321f9f13ffb8c6727606afeca50f8","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"9899744aad1321f9f13ffb8c6727606afeca50f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-2.0.2.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.3":{"name":"postcss-discard-comments","version":"2.0.3","description":"Discard comments in your CSS files with PostCSS.","main":"index.js","files":["lib","index.js","LICENSE-MIT"],"scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"postcss-scss":"^0.1.2","postcss-simple-vars":"^1.0.1","tap-spec":"^4.1.0","tape":"^4.2.1"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"postcss":"^5.0.8"},"gitHead":"0584f5efd2913eca578d582e1aeceeb8aa1cbb1d","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@2.0.3","_shasum":"59797a51747e05e2bec208f22d635a6983068b04","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"59797a51747e05e2bec208f22d635a6983068b04","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-2.0.3.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.4":{"name":"postcss-discard-comments","version":"2.0.4","description":"Discard comments in your CSS files with PostCSS.","main":"dist/index.js","files":["dist","LICENSE-MIT"],"scripts":{"pretest":"eslint src","prepublish":"del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/","test":"ava src/__tests__"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"ava":"^0.11.0","babel-cli":"^6.5.1","babel-core":"^6.5.1","babel-plugin-add-module-exports":"^0.1.2","babel-preset-es2015":"^6.5.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-0":"^6.5.0","del-cli":"^0.2.0","eslint":"^1.10.3","eslint-config-cssnano":"^1.0.0","postcss-scss":"^0.1.3","postcss-simple-vars":"^1.2.0"},"homepage":"https://github.com/ben-eb/postcss-discard-comments","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-discard-comments.git"},"dependencies":{"postcss":"^5.0.14"},"ava":{"require":"babel-core/register"},"eslintConfig":{"extends":"cssnano"},"gitHead":"e7f580afe8fe456078791bb5a439077aab92531c","bugs":{"url":"https://github.com/ben-eb/postcss-discard-comments/issues"},"_id":"postcss-discard-comments@2.0.4","_shasum":"befe89fafd5b3dace5ccce51b76b81514be00e3d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"befe89fafd5b3dace5ccce51b76b81514be00e3d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-2.0.4.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-discard-comments-2.0.4.tgz_1455123680319_0.3164093536324799"},"directories":{}},"4.0.0-rc.0":{"name":"postcss-discard-comments","version":"4.0.0-rc.0","description":"Discard comments in your CSS files with PostCSS.","main":"dist/index.js","files":["dist","LICENSE-MIT"],"scripts":{"prepublish":"cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"babel-cli":"^6.0.0","cross-env":"^3.0.0","postcss-scss":"^0.3.0","postcss-simple-vars":"^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":{"postcss":"^6.0.0"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"engines":{"node":">=4"},"_id":"postcss-discard-comments@4.0.0-rc.0","_shasum":"94e58f72567936865d3c2183c25dd4a8495419a7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"94e58f72567936865d3c2183c25dd4a8495419a7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-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-discard-comments-4.0.0-rc.0.tgz_1496311176875_0.035016571171581745"},"directories":{}},"4.0.0-rc.2":{"name":"postcss-discard-comments","version":"4.0.0-rc.2","description":"Discard comments in your CSS files with PostCSS.","main":"dist/index.js","files":["dist","LICENSE-MIT"],"scripts":{"prepublish":"cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"},"keywords":["css","comments","postcss","postcss-plugin"],"license":"MIT","devDependencies":{"babel-cli":"^6.0.0","cross-env":"^3.0.0","postcss-scss":"^0.3.0","postcss-simple-vars":"^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":{"postcss":"^6.0.0"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"engines":{"node":">=4"},"_id":"postcss-discard-comments@4.0.0-rc.2","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"integrity":"sha512-+b7iVctFqznZpfD0OEoGa8wH7gHovERBNRGAWuKaIBBt4q5+BTB+8g2u0UT/j1OHa/cLpNgfc9e3IGer1pVB7w==","shasum":"9874d406414f554d017e1a1c8938d9b1ff0f2aa9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/postcss-discard-comments/-/postcss-discard-comments-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-discard-comments-4.0.0-rc.2.tgz_1502049189338_0.8654709942638874"},"directories":{}}},"name":"postcss-discard-comments","time":{"modified":"2017-08-06T23:30:39.063Z","created":"2015-03-18T17:51:40.594Z","1.0.0":"2015-03-18T17:51:40.594Z","1.0.1":"2015-03-18T18:00:58.638Z","1.0.2":"2015-03-25T13:12:33.077Z","1.1.0":"2015-04-02T11:39:40.394Z","1.1.1":"2015-04-08T10:10:53.923Z","1.1.2":"2015-05-03T18:26:21.692Z","1.1.3":"2015-06-09T09:28:41.598Z","1.2.0":"2015-06-09T16:36:30.600Z","1.2.1":"2015-08-13T13:47:22.523Z","2.0.0":"2015-09-04T22:57:30.325Z","2.0.1":"2015-10-08T14:09:19.578Z","2.0.2":"2015-10-16T20:24:18.971Z","2.0.3":"2015-12-26T00:28:17.796Z","2.0.4":"2016-02-10T17:01:23.310Z","4.0.0-rc.0":"2017-06-01T09:59:37.916Z","4.0.0-rc.2":"2017-08-06T19:53:10.280Z"},"readmeFilename":"README.md","homepage":"https://github.com/ben-eb/cssnano"}