package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "postcss-reduce-transforms",
  3. "version": "5.1.0",
  4. "description": "Reduce transform functions with PostCSS.",
  5. "main": "src/index.js",
  6. "types": "types/index.d.ts",
  7. "files": [
  8. "LICENSE-MIT",
  9. "src",
  10. "types"
  11. ],
  12. "license": "MIT",
  13. "homepage": "https://github.com/cssnano/cssnano",
  14. "author": {
  15. "name": "Ben Briggs",
  16. "email": "beneb.info@gmail.com",
  17. "url": "http://beneb.info"
  18. },
  19. "repository": "cssnano/cssnano",
  20. "dependencies": {
  21. "postcss-value-parser": "^4.2.0"
  22. },
  23. "bugs": {
  24. "url": "https://github.com/cssnano/cssnano/issues"
  25. },
  26. "engines": {
  27. "node": "^10 || ^12 || >=14.0"
  28. },
  29. "devDependencies": {
  30. "postcss": "^8.2.15"
  31. },
  32. "peerDependencies": {
  33. "postcss": "^8.2.15"
  34. },
  35. "readme": "# [postcss][postcss]-reduce-transforms\n\n> Reduce transform functions with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-reduce-transforms) do:\n\n```\nnpm install postcss-reduce-transforms --save\n```\n\n## Example\n\nThis module will reduce transform functions where possible. For more examples,\nsee the [tests](src/__tests__/index.js).\n\n### Input\n\n```css\nh1 {\n transform: rotate3d(0, 0, 1, 20deg);\n}\n```\n\n### Output\n\n```css\nh1 {\n transform: rotate(20deg);\n}\n```\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n"
  36. }