package.json 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "gulp-autoprefixer",
  3. "version": "5.0.0",
  4. "description": "Prefix CSS",
  5. "license": "MIT",
  6. "repository": "sindresorhus/gulp-autoprefixer",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4.5"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "gulpplugin",
  23. "autoprefixer",
  24. "postcss",
  25. "css",
  26. "prefix",
  27. "prefixes",
  28. "stylesheet",
  29. "preprocess",
  30. "postcss-runner"
  31. ],
  32. "dependencies": {
  33. "autoprefixer": "^8.0.0",
  34. "fancy-log": "^1.3.2",
  35. "plugin-error": "^1.0.1",
  36. "postcss": "^6.0.1",
  37. "through2": "^2.0.0",
  38. "vinyl-sourcemaps-apply": "^0.2.0"
  39. },
  40. "devDependencies": {
  41. "ava": "*",
  42. "gulp-sourcemaps": "^2.6.0",
  43. "p-event": "^1.1.0",
  44. "vinyl": "^2.1.0",
  45. "xo": "*"
  46. }
  47. }