package.json 695 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "postcss-nested",
  3. "version": "6.2.0",
  4. "description": "PostCSS plugin to unwrap nested rules like how Sass does it",
  5. "keywords": [
  6. "postcss",
  7. "css",
  8. "postcss-plugin",
  9. "sass",
  10. "nested"
  11. ],
  12. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  13. "license": "MIT",
  14. "repository": "postcss/postcss-nested",
  15. "engines": {
  16. "node": ">=12.0"
  17. },
  18. "funding": [
  19. {
  20. "type": "opencollective",
  21. "url": "https://opencollective.com/postcss/"
  22. },
  23. {
  24. "type": "github",
  25. "url": "https://github.com/sponsors/ai"
  26. }
  27. ],
  28. "peerDependencies": {
  29. "postcss": "^8.2.14"
  30. },
  31. "dependencies": {
  32. "postcss-selector-parser": "^6.1.1"
  33. }
  34. }