package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "gulp-watch",
  3. "version": "5.0.0",
  4. "description": "Watch, that actually is an endless stream",
  5. "main": "index.js",
  6. "keywords": [
  7. "gulp",
  8. "watch",
  9. "gulpplugin"
  10. ],
  11. "scripts": {
  12. "test": "xo && mocha -r test/util/set-default-options -t 5000 -R spec test/test-*",
  13. "coverage": "istanbul cover node_modules/.bin/_mocha --report html -- -r test/util/set-default-options -R spec",
  14. "coveralls": "istanbul cover _mocha --report lcovonly -- -r test/util/set-default-options -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
  15. },
  16. "files": [
  17. "index.js"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/floatdrop/gulp-watch.git"
  22. },
  23. "author": "Vsevolod Strukchinsky",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/floatdrop/gulp-watch/issues"
  27. },
  28. "devDependencies": {
  29. "coveralls": "^2.7.0",
  30. "istanbul": "^0.3.0",
  31. "mocha": "^2",
  32. "mocha-lcov-reporter": "0.0.2",
  33. "proxyquire": "^1.0.1",
  34. "rimraf": "^2.2.8",
  35. "should": "~7",
  36. "sinon": "^1.9.1",
  37. "stream-assert": "^2.0.1",
  38. "strip-ansi": "^3.0.0",
  39. "xo": "^0.10.1"
  40. },
  41. "dependencies": {
  42. "anymatch": "^1.3.0",
  43. "chokidar": "^2.0.0",
  44. "glob-parent": "^3.0.1",
  45. "gulp-util": "^3.0.7",
  46. "object-assign": "^4.1.0",
  47. "path-is-absolute": "^1.0.1",
  48. "readable-stream": "^2.2.2",
  49. "slash": "^1.0.0",
  50. "vinyl": "^2.1.0",
  51. "vinyl-file": "^2.0.0"
  52. },
  53. "engine": "node >= 0.10"
  54. }