package.json 786 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "postcss-discard-comments",
  3. "version": "5.1.2",
  4. "description": "Discard comments in your CSS files 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. "css",
  14. "comments",
  15. "postcss",
  16. "postcss-plugin"
  17. ],
  18. "license": "MIT",
  19. "homepage": "https://github.com/cssnano/cssnano",
  20. "author": {
  21. "name": "Ben Briggs",
  22. "email": "beneb.info@gmail.com",
  23. "url": "http://beneb.info"
  24. },
  25. "repository": "cssnano/cssnano",
  26. "bugs": {
  27. "url": "https://github.com/cssnano/cssnano/issues"
  28. },
  29. "engines": {
  30. "node": "^10 || ^12 || >=14.0"
  31. },
  32. "devDependencies": {
  33. "postcss": "^8.2.15"
  34. },
  35. "peerDependencies": {
  36. "postcss": "^8.2.15"
  37. }
  38. }