package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "gulp-notify",
  3. "version": "4.0.0",
  4. "description": "gulp plugin to send messages based on Vinyl Files or Errors to Mac OS X, Linux or Windows using the node-notifier module. Fallbacks to Growl or simply logging",
  5. "keywords": [
  6. "gulpplugin",
  7. "notify",
  8. "gulp",
  9. "notification",
  10. "reporter",
  11. "windows notification",
  12. "mac notification",
  13. "notify-send",
  14. "notify-osd",
  15. "growl"
  16. ],
  17. "homepage": "https://github.com/mikaelbr/gulp-notify",
  18. "bugs": "https://github.com/mikaelbr/gulp-notify/issues",
  19. "author": {
  20. "name": "Mikael Brevik",
  21. "email": "mikaelbre@gmail.com",
  22. "url": "https://github.com/mikaelbr"
  23. },
  24. "main": "./index.js",
  25. "repository": {
  26. "type": "git",
  27. "url": "git://github.com/mikaelbr/gulp-notify.git"
  28. },
  29. "scripts": {
  30. "test": "mocha -R spec",
  31. "gulp": "gulp --gulpfile ./examples/gulpfile.js"
  32. },
  33. "dependencies": {
  34. "ansi-colors": "^4.1.1",
  35. "fancy-log": "^1.3.3",
  36. "lodash.template": "^4.5.0",
  37. "node-notifier": "^9.0.1",
  38. "node.extend": "^2.0.2",
  39. "plugin-error": "^1.0.1",
  40. "through2": "^4.0.2"
  41. },
  42. "devDependencies": {
  43. "gulp": "^4.0.2",
  44. "gulp-plumber": "^1.2.1",
  45. "mocha": "^8.3.2",
  46. "should": "^13.2.3",
  47. "vinyl": "^2.2.1"
  48. },
  49. "engines": {
  50. "node": ">=0.8.0",
  51. "npm": ">=1.2.10"
  52. },
  53. "license": "MIT"
  54. }