package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "chokidar",
  3. "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.",
  4. "version": "2.0.4",
  5. "keywords": [
  6. "fs",
  7. "watch",
  8. "watchFile",
  9. "watcher",
  10. "watching",
  11. "file",
  12. "fsevents"
  13. ],
  14. "homepage": "https://github.com/paulmillr/chokidar",
  15. "author": "Paul Miller (http://paulmillr.com), Elan Shanker",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/paulmillr/chokidar.git"
  19. },
  20. "bugs": {
  21. "url": "http://github.com/paulmillr/chokidar/issues"
  22. },
  23. "license": "MIT",
  24. "scripts": {
  25. "test": "nyc mocha --exit",
  26. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  27. },
  28. "files": [
  29. "index.js",
  30. "lib/"
  31. ],
  32. "devDependencies": {
  33. "chai": "^3.2.0",
  34. "coveralls": "^3.0.1",
  35. "graceful-fs": "4.1.4",
  36. "mocha": "^5.2.0",
  37. "nyc": "^11.8.0",
  38. "rimraf": "^2.4.3",
  39. "sinon": "^1.10.3",
  40. "sinon-chai": "^2.6.0"
  41. },
  42. "optionalDependencies": {
  43. "fsevents": "^1.2.2"
  44. },
  45. "dependencies": {
  46. "anymatch": "^2.0.0",
  47. "async-each": "^1.0.0",
  48. "braces": "^2.3.0",
  49. "glob-parent": "^3.1.0",
  50. "inherits": "^2.0.1",
  51. "is-binary-path": "^1.0.0",
  52. "is-glob": "^4.0.0",
  53. "lodash.debounce": "^4.0.8",
  54. "normalize-path": "^2.1.1",
  55. "path-is-absolute": "^1.0.0",
  56. "readdirp": "^2.0.0",
  57. "upath": "^1.0.5"
  58. }
  59. }