package.json 1.4 KB

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