package.json 848 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "postcss",
  3. "version": "7.0.36",
  4. "description": "Tool for transforming styles with JS plugins",
  5. "engines": {
  6. "node": ">=6.0.0"
  7. },
  8. "keywords": [
  9. "css",
  10. "postcss",
  11. "rework",
  12. "preprocessor",
  13. "parser",
  14. "source map",
  15. "transform",
  16. "manipulation",
  17. "transpiler"
  18. ],
  19. "funding": {
  20. "type": "opencollective",
  21. "url": "https://opencollective.com/postcss/"
  22. },
  23. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  24. "license": "MIT",
  25. "homepage": "https://postcss.org/",
  26. "repository": "postcss/postcss",
  27. "dependencies": {
  28. "chalk": "^2.4.2",
  29. "source-map": "^0.6.1",
  30. "supports-color": "^6.1.0"
  31. },
  32. "main": "lib/postcss",
  33. "types": "lib/postcss.d.ts",
  34. "browser": {
  35. "./lib/terminal-highlight": false,
  36. "supports-color": false,
  37. "chalk": false,
  38. "fs": false
  39. }
  40. }