package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "glob-watcher",
  3. "version": "5.0.5",
  4. "description": "Watch globs and execute a function upon change, with intelligent defaults for debouncing and queueing.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [],
  7. "repository": "gulpjs/glob-watcher",
  8. "license": "MIT",
  9. "engines": {
  10. "node": ">= 0.10"
  11. },
  12. "main": "index.js",
  13. "files": [
  14. "index.js"
  15. ],
  16. "scripts": {
  17. "lint": "eslint .",
  18. "pretest": "npm run lint",
  19. "test": "mocha --async-only",
  20. "cover": "istanbul cover _mocha --report lcovonly",
  21. "coveralls": "npm run cover && istanbul-coveralls"
  22. },
  23. "dependencies": {
  24. "anymatch": "^2.0.0",
  25. "async-done": "^1.2.0",
  26. "chokidar": "^2.0.0",
  27. "is-negated-glob": "^1.0.0",
  28. "just-debounce": "^1.0.0",
  29. "normalize-path": "^3.0.0",
  30. "object.defaults": "^1.1.0"
  31. },
  32. "devDependencies": {
  33. "coveralls": "^2.11.2",
  34. "eslint": "^2.13.1",
  35. "eslint-config-gulp": "^3.0.1",
  36. "expect": "^1.16.0",
  37. "istanbul": "^0.4.0",
  38. "istanbul-coveralls": "^1.0.1",
  39. "mocha": "^2.0.0",
  40. "mocha-lcov-reporter": "^1.2.0",
  41. "rimraf": "^2.6.1",
  42. "through2": "^2.0.1"
  43. },
  44. "keywords": [
  45. "watch",
  46. "glob",
  47. "async",
  48. "queue",
  49. "debounce",
  50. "callback"
  51. ]
  52. }