package.json 678 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "watch",
  3. "description": "Utilities for watching file trees.",
  4. "keywords": [
  5. "util",
  6. "utility",
  7. "fs",
  8. "files"
  9. ],
  10. "bin": {
  11. "watch": "./cli.js"
  12. },
  13. "version": "0.18.0",
  14. "homepage": "https://github.com/mikeal/watch",
  15. "bugs": {
  16. "url": "https://github.com/mikeal/watch/issues"
  17. },
  18. "license": "Apache-2.0",
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/mikeal/watch.git"
  22. },
  23. "author": "Mikeal Rogers <mikeal.rogers@gmail.com>",
  24. "directories": {
  25. "lib": "lib"
  26. },
  27. "engines": {
  28. "node": ">=0.1.95"
  29. },
  30. "main": "./main",
  31. "dependencies": {
  32. "exec-sh": "^0.2.0",
  33. "minimist": "^1.2.0"
  34. }
  35. }