package.json 648 B

123456789101112131415161718192021
  1. {
  2. "name": "autoprefixer",
  3. "version": "8.6.5",
  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. "dependencies": {
  10. "browserslist": "^3.2.8",
  11. "caniuse-lite": "^1.0.30000864",
  12. "normalize-range": "^0.1.2",
  13. "num2fraction": "^1.2.2",
  14. "postcss": "^6.0.23",
  15. "postcss-value-parser": "^3.2.3"
  16. },
  17. "bin": {
  18. "autoprefixer": "./bin/autoprefixer"
  19. },
  20. "main": "lib/autoprefixer"
  21. }