package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "chokidar",
  3. "description": "Minimal and efficient cross-platform file watching library",
  4. "version": "3.5.3",
  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. "typescript": "~4.4.3",
  38. "upath": "^1.2.0"
  39. },
  40. "files": [
  41. "index.js",
  42. "lib/*.js",
  43. "types/index.d.ts"
  44. ],
  45. "repository": {
  46. "type": "git",
  47. "url": "git+https://github.com/paulmillr/chokidar.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/paulmillr/chokidar/issues"
  51. },
  52. "license": "MIT",
  53. "scripts": {
  54. "dtslint": "dtslint types",
  55. "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
  56. "mocha": "mocha --exit --timeout 90000",
  57. "test": "npm run lint && npm run mocha"
  58. },
  59. "keywords": [
  60. "fs",
  61. "watch",
  62. "watchFile",
  63. "watcher",
  64. "watching",
  65. "file",
  66. "fsevents"
  67. ],
  68. "types": "./types/index.d.ts",
  69. "nyc": {
  70. "include": [
  71. "index.js",
  72. "lib/*.js"
  73. ],
  74. "reporter": [
  75. "html",
  76. "text"
  77. ]
  78. },
  79. "funding": [
  80. {
  81. "type": "individual",
  82. "url": "https://paulmillr.com/funding/"
  83. }
  84. ]
  85. }