package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "gulp-plumber",
  3. "version": "1.2.1",
  4. "description": "Prevent pipe breaking caused by errors from gulp plugins",
  5. "keywords": [
  6. "gulpplugin"
  7. ],
  8. "homepage": "https://github.com/floatdrop/gulp-plumber",
  9. "bugs": "https://github.com/floatdrop/gulp-plumber/issues",
  10. "author": {
  11. "name": "Vsevolod Strukchinsky",
  12. "email": "floatdrop@gmail.com",
  13. "url": "https://github.com/floatdrop"
  14. },
  15. "main": "./index.js",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/floatdrop/gulp-plumber.git"
  19. },
  20. "scripts": {
  21. "test": "xo && mocha -R spec"
  22. },
  23. "dependencies": {
  24. "chalk": "^1.1.3",
  25. "fancy-log": "^1.3.2",
  26. "plugin-error": "^0.1.2",
  27. "through2": "^2.0.3"
  28. },
  29. "devDependencies": {
  30. "coveralls": "^2.11.6",
  31. "event-stream": "3.3.4",
  32. "gulp": "^3.9.1",
  33. "istanbul": "^0.4.2",
  34. "mocha": "^2.4.5",
  35. "mocha-lcov-reporter": "^1.0.0",
  36. "should": "^8.2.2",
  37. "through": "^2.3.8",
  38. "xo": "^0.12.1"
  39. },
  40. "engines": {
  41. "node": ">=0.10",
  42. "npm": ">=1.2.10"
  43. },
  44. "xo": {
  45. "ignore": [
  46. "test/**"
  47. ]
  48. },
  49. "license": "MIT"
  50. }