package.json 943 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "plugin-error",
  3. "description": "Error handling for vinyl plugins. Just an abstraction of what's in gulp-util with minor changes.",
  4. "version": "0.1.2",
  5. "homepage": "https://github.com/jonschlinkert/plugin-error",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/plugin-error.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/plugin-error/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "ansi-cyan": "^0.1.1",
  30. "ansi-red": "^0.1.1",
  31. "arr-diff": "^1.0.1",
  32. "arr-union": "^2.0.1",
  33. "extend-shallow": "^1.1.2"
  34. },
  35. "devDependencies": {
  36. "mocha": "*",
  37. "should": "*"
  38. },
  39. "keywords": [
  40. "error",
  41. "plugin"
  42. ]
  43. }