package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "autoprefixer",
  3. "version": "10.4.20",
  4. "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
  5. "engines": {
  6. "node": "^10 || ^12 || >=14"
  7. },
  8. "keywords": [
  9. "autoprefixer",
  10. "css",
  11. "prefix",
  12. "postcss",
  13. "postcss-plugin"
  14. ],
  15. "main": "lib/autoprefixer.js",
  16. "bin": "bin/autoprefixer",
  17. "types": "lib/autoprefixer.d.ts",
  18. "funding": [
  19. {
  20. "type": "opencollective",
  21. "url": "https://opencollective.com/postcss/"
  22. },
  23. {
  24. "type": "tidelift",
  25. "url": "https://tidelift.com/funding/github/npm/autoprefixer"
  26. },
  27. {
  28. "type": "github",
  29. "url": "https://github.com/sponsors/ai"
  30. }
  31. ],
  32. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  33. "license": "MIT",
  34. "repository": "postcss/autoprefixer",
  35. "bugs": {
  36. "url": "https://github.com/postcss/autoprefixer/issues"
  37. },
  38. "peerDependencies": {
  39. "postcss": "^8.1.0"
  40. },
  41. "dependencies": {
  42. "browserslist": "^4.23.3",
  43. "caniuse-lite": "^1.0.30001646",
  44. "fraction.js": "^4.3.7",
  45. "normalize-range": "^0.1.2",
  46. "picocolors": "^1.0.1",
  47. "postcss-value-parser": "^4.2.0"
  48. }
  49. }