package.json 1.5 KB

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "cssnano-utils",
  3. "version": "3.0.0",
  4. "repository": "cssnano/cssnano",
  5. "main": "dist/index.js",
  6. "description": "Utility methods and plugin for cssnano projects",
  7. "homepage": "https://github.com/cssnano/cssnano",
  8. "bugs": {
  9. "url": "https://github.com/cssnano/cssnano/issues"
  10. },
  11. "engines": {
  12. "node": "^10 || ^12 || >=14.0"
  13. },
  14. "files": [
  15. "dist"
  16. ],
  17. "license": "MIT",
  18. "devDependencies": {
  19. "postcss": "^8.2.15"
  20. },
  21. "peerDependencies": {
  22. "postcss": "^8.2.15"
  23. },
  24. "scripts": {
  25. "prebuild": "rimraf dist",
  26. "build": "babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\""
  27. },
  28. "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| `getMatch` | Convert a list of keywords into a single keyword match. |\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"
  29. }