package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "sane",
  3. "version": "2.5.2",
  4. "description": "Sane aims to be fast, small, and reliable file system watcher.",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/amasad/sane"
  9. },
  10. "files": [
  11. "src",
  12. "index.js"
  13. ],
  14. "scripts": {
  15. "test": "npm run format && eslint src/ test/ index.js && mocha --bail test/test.js && mocha --bail test/utils-test.js",
  16. "test:debug": "mocha debug --bail",
  17. "format": "prettier --trailing-comma es5 --single-quote --write index.js 'src/**/*.js' 'test/**/*.js'"
  18. },
  19. "bin": "./src/cli.js",
  20. "keywords": [
  21. "watch",
  22. "file",
  23. "fswatcher",
  24. "watchfile",
  25. "fs",
  26. "watching"
  27. ],
  28. "author": "amasad",
  29. "license": "MIT",
  30. "dependencies": {
  31. "anymatch": "^2.0.0",
  32. "capture-exit": "^1.2.0",
  33. "exec-sh": "^0.2.0",
  34. "fb-watchman": "^2.0.0",
  35. "micromatch": "^3.1.4",
  36. "minimist": "^1.1.1",
  37. "walker": "~1.0.5",
  38. "watch": "~0.18.0"
  39. },
  40. "devDependencies": {
  41. "eslint": "^3.19.0",
  42. "mocha": "~1.17.1",
  43. "prettier": "^1.3.1",
  44. "rimraf": "~2.2.6",
  45. "tmp": "0.0.27"
  46. },
  47. "engines": {
  48. "node": ">=0.6.0"
  49. },
  50. "bugs": {
  51. "url": "https://github.com/amasad/sane/issues"
  52. },
  53. "homepage": "https://github.com/amasad/sane",
  54. "optionalDependencies": {
  55. "fsevents": "^1.2.3"
  56. }
  57. }