Nenhuma descrição

package.json 994B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "grunt-autoprefixer",
  3. "version": "2.2.0",
  4. "description": "Parse CSS and add vendor-prefixed CSS properties using the Can I Use database. Based on Autoprefixer.",
  5. "author": {
  6. "name": "Dmitry Nikitenko",
  7. "email": "dima.nikitenko@gmail.com"
  8. },
  9. "repository": "nDmitry/grunt-autoprefixer",
  10. "license": "MIT",
  11. "engines": {
  12. "node": ">= 0.10.0"
  13. },
  14. "scripts": {
  15. "test": "grunt test"
  16. },
  17. "keywords": [
  18. "gruntplugin",
  19. "css",
  20. "postprocessor",
  21. "prefix",
  22. "autoprefixer"
  23. ],
  24. "files": [
  25. "tasks",
  26. "LICENSE"
  27. ],
  28. "dependencies": {
  29. "autoprefixer-core": "^5.0.0",
  30. "diff": "~1.2.1",
  31. "chalk": "~0.5.0"
  32. },
  33. "devDependencies": {
  34. "grunt": "~0.4.4",
  35. "grunt-contrib-jshint": "~0.10.0",
  36. "grunt-contrib-clean": "~0.6.0",
  37. "grunt-contrib-nodeunit": "~0.4.0",
  38. "grunt-contrib-copy": "~0.7.0",
  39. "load-grunt-tasks": "~2.0.0",
  40. "time-grunt": "~1.0.0"
  41. },
  42. "peerDependencies": {
  43. "grunt": "~0.4.2"
  44. }
  45. }