package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "postcss-discard-empty",
  3. "version": "5.1.1",
  4. "description": "Discard empty rules and values with PostCSS.",
  5. "main": "src/index.js",
  6. "types": "types/index.d.ts",
  7. "files": [
  8. "src",
  9. "LICENSE-MIT",
  10. "types"
  11. ],
  12. "keywords": [
  13. "compress",
  14. "css",
  15. "empty",
  16. "minify",
  17. "optimisation",
  18. "postcss",
  19. "postcss-plugin"
  20. ],
  21. "license": "MIT",
  22. "homepage": "https://github.com/cssnano/cssnano",
  23. "author": {
  24. "name": "Ben Briggs",
  25. "email": "beneb.info@gmail.com",
  26. "url": "http://beneb.info"
  27. },
  28. "repository": "cssnano/cssnano",
  29. "bugs": {
  30. "url": "https://github.com/cssnano/cssnano/issues"
  31. },
  32. "engines": {
  33. "node": "^10 || ^12 || >=14.0"
  34. },
  35. "devDependencies": {
  36. "postcss": "^8.2.15"
  37. },
  38. "peerDependencies": {
  39. "postcss": "^8.2.15"
  40. },
  41. "readme": "# [postcss][postcss]-discard-empty\n\n> Discard empty rules and values with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-discard-empty) do:\n\n```\nnpm install postcss-discard-empty --save\n```\n\n## Example\n\nFor more examples see the [tests](src/__tests__/index.js).\n\n### Input\n\n```css\n@font-face;\nh1 {}\n{color:blue}\nh2 {color:}\nh3 {color:red}\n```\n\n### Output\n\n```css\nh3 {color:red}\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/cssnano/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"
  42. }