package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "chokidar",
  3. "description": "Minimal and efficient cross-platform file watching library",
  4. "version": "3.5.2",
  5. "homepage": "https://github.com/paulmillr/chokidar",
  6. "author": "Paul Miller (https://paulmillr.com)",
  7. "contributors": [
  8. "Paul Miller (https://paulmillr.com)",
  9. "Elan Shanker"
  10. ],
  11. "engines": {
  12. "node": ">= 8.10.0"
  13. },
  14. "main": "index.js",
  15. "dependencies": {
  16. "anymatch": "~3.1.2",
  17. "braces": "~3.0.2",
  18. "glob-parent": "~5.1.2",
  19. "is-binary-path": "~2.1.0",
  20. "is-glob": "~4.0.1",
  21. "normalize-path": "~3.0.0",
  22. "readdirp": "~3.6.0"
  23. },
  24. "optionalDependencies": {
  25. "fsevents": "~2.3.2"
  26. },
  27. "devDependencies": {
  28. "@types/node": "^14",
  29. "chai": "^4.3",
  30. "dtslint": "^3.3.0",
  31. "eslint": "^7.0.0",
  32. "mocha": "^7.0.0",
  33. "nyc": "^15.0.0",
  34. "rimraf": "^3.0.0",
  35. "sinon": "^9.0.1",
  36. "sinon-chai": "^3.3.0",
  37. "upath": "^1.2.0"
  38. },
  39. "files": [
  40. "index.js",
  41. "lib/*.js",
  42. "types/index.d.ts"
  43. ],
  44. "repository": {
  45. "type": "git",
  46. "url": "git+https://github.com/paulmillr/chokidar.git"
  47. },
  48. "bugs": {
  49. "url": "https://github.com/paulmillr/chokidar/issues"
  50. },
  51. "license": "MIT",
  52. "scripts": {
  53. "dtslint": "dtslint types",
  54. "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
  55. "mocha": "mocha --exit --timeout 90000",
  56. "test": "npm run lint && npm run mocha"
  57. },
  58. "keywords": [
  59. "fs",
  60. "watch",
  61. "watchFile",
  62. "watcher",
  63. "watching",
  64. "file",
  65. "fsevents"
  66. ],
  67. "types": "./types/index.d.ts",
  68. "nyc": {
  69. "include": [
  70. "index.js",
  71. "lib/*.js"
  72. ],
  73. "reporter": [
  74. "html",
  75. "text"
  76. ]
  77. }
  78. }