package.json 1.3 KB

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "cssnano-utils",
  3. "version": "3.1.0",
  4. "repository": "cssnano/cssnano",
  5. "main": "src/index.js",
  6. "types": "types/index.d.ts",
  7. "description": "Utility methods and plugin for cssnano projects",
  8. "homepage": "https://github.com/cssnano/cssnano",
  9. "bugs": {
  10. "url": "https://github.com/cssnano/cssnano/issues"
  11. },
  12. "engines": {
  13. "node": "^10 || ^12 || >=14.0"
  14. },
  15. "files": [
  16. "src",
  17. "LICENSE",
  18. "types"
  19. ],
  20. "license": "MIT",
  21. "devDependencies": {
  22. "postcss": "^8.2.15"
  23. },
  24. "peerDependencies": {
  25. "postcss": "^8.2.15"
  26. },
  27. "readme": "# cssnano-utils\n\nUtility methods and plugin for cssnano projects\n\n## List of methods and plugin(s)\n\n| **utility methods** | **description** |\n| ------------------- | ------------------------------------------------------------------------- |\n| `rawCache` | Postcss plugin to manage the raw value formatting for generated AST nodes |\n| `getArguments` | Get a list of arguments, separated by a comma. |\n| `sameParent` | Check that two PostCSS nodes share the same parent. |\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n"
  28. }