package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "postcss-reduce-transforms",
  3. "version": "5.0.2",
  4. "description": "Reduce transform functions with PostCSS.",
  5. "main": "dist/index.js",
  6. "files": [
  7. "LICENSE-MIT",
  8. "dist"
  9. ],
  10. "license": "MIT",
  11. "homepage": "https://github.com/cssnano/cssnano",
  12. "author": {
  13. "name": "Ben Briggs",
  14. "email": "beneb.info@gmail.com",
  15. "url": "http://beneb.info"
  16. },
  17. "repository": "cssnano/cssnano",
  18. "dependencies": {
  19. "postcss-value-parser": "^4.2.0"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/cssnano/cssnano/issues"
  23. },
  24. "engines": {
  25. "node": "^10 || ^12 || >=14.0"
  26. },
  27. "devDependencies": {
  28. "postcss": "^8.2.15"
  29. },
  30. "peerDependencies": {
  31. "postcss": "^8.2.15"
  32. },
  33. "scripts": {
  34. "prebuild": "rimraf dist",
  35. "build": "babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\""
  36. },
  37. "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"
  38. }