package.json 869 B

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