package.json 690 B

123456789101112131415161718192021222324
  1. {
  2. "name": "autoprefixer",
  3. "version": "9.5.1",
  4. "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
  5. "keywords": ["autoprefixer", "css", "prefix", "postcss", "postcss-plugin"],
  6. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  7. "license": "MIT",
  8. "repository": "postcss/autoprefixer",
  9. "engines": {
  10. "node": ">=6.0.0"
  11. },
  12. "dependencies": {
  13. "browserslist": "^4.5.4",
  14. "caniuse-lite": "^1.0.30000957",
  15. "normalize-range": "^0.1.2",
  16. "num2fraction": "^1.2.2",
  17. "postcss": "^7.0.14",
  18. "postcss-value-parser": "^3.3.1"
  19. },
  20. "bin": {
  21. "autoprefixer": "./bin/autoprefixer"
  22. },
  23. "main": "lib/autoprefixer"
  24. }