package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. {
  2. "_args": [
  3. [
  4. "chokidar@3.4.2",
  5. "E:\\amr1.0\\AMR"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "chokidar@3.4.2",
  10. "_id": "chokidar@3.4.2",
  11. "_inBundle": false,
  12. "_integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==",
  13. "_location": "/chokidar",
  14. "_optional": true,
  15. "_phantomChildren": {},
  16. "_requested": {
  17. "type": "version",
  18. "registry": true,
  19. "raw": "chokidar@3.4.2",
  20. "name": "chokidar",
  21. "escapedName": "chokidar",
  22. "rawSpec": "3.4.2",
  23. "saveSpec": null,
  24. "fetchSpec": "3.4.2"
  25. },
  26. "_requiredBy": [
  27. "/watchpack"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz",
  30. "_spec": "3.4.2",
  31. "_where": "E:\\amr1.0\\AMR",
  32. "author": {
  33. "name": "Paul Miller",
  34. "url": "https://paulmillr.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/paulmillr/chokidar/issues"
  38. },
  39. "contributors": [
  40. {
  41. "name": "Paul Miller",
  42. "url": "https://paulmillr.com"
  43. },
  44. {
  45. "name": "Elan Shanker"
  46. }
  47. ],
  48. "dependencies": {
  49. "anymatch": "~3.1.1",
  50. "braces": "~3.0.2",
  51. "fsevents": "~2.1.2",
  52. "glob-parent": "~5.1.0",
  53. "is-binary-path": "~2.1.0",
  54. "is-glob": "~4.0.1",
  55. "normalize-path": "~3.0.0",
  56. "readdirp": "~3.4.0"
  57. },
  58. "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.",
  59. "devDependencies": {
  60. "@types/node": "^14",
  61. "chai": "^4.2",
  62. "dtslint": "^3.3.0",
  63. "eslint": "^7.0.0",
  64. "mocha": "^7.0.0",
  65. "nyc": "^15.0.0",
  66. "rimraf": "^3.0.0",
  67. "sinon": "^9.0.1",
  68. "sinon-chai": "^3.3.0",
  69. "upath": "^1.2.0"
  70. },
  71. "engines": {
  72. "node": ">= 8.10.0"
  73. },
  74. "eslintConfig": {
  75. "extends": "eslint:recommended",
  76. "parserOptions": {
  77. "ecmaVersion": 9,
  78. "sourceType": "script"
  79. },
  80. "env": {
  81. "node": true,
  82. "es6": true
  83. },
  84. "rules": {
  85. "array-callback-return": "error",
  86. "no-empty": [
  87. "error",
  88. {
  89. "allowEmptyCatch": true
  90. }
  91. ],
  92. "no-lonely-if": "error",
  93. "no-var": "error",
  94. "object-shorthand": "error",
  95. "prefer-arrow-callback": [
  96. "error",
  97. {
  98. "allowNamedFunctions": true
  99. }
  100. ],
  101. "prefer-const": [
  102. "error",
  103. {
  104. "ignoreReadBeforeAssign": true
  105. }
  106. ],
  107. "prefer-destructuring": [
  108. "error",
  109. {
  110. "object": true,
  111. "array": false
  112. }
  113. ],
  114. "prefer-spread": "error",
  115. "prefer-template": "error",
  116. "radix": "error",
  117. "strict": "error",
  118. "quotes": [
  119. "error",
  120. "single"
  121. ]
  122. }
  123. },
  124. "files": [
  125. "index.js",
  126. "lib/*.js",
  127. "types/index.d.ts"
  128. ],
  129. "homepage": "https://github.com/paulmillr/chokidar",
  130. "keywords": [
  131. "fs",
  132. "watch",
  133. "watchFile",
  134. "watcher",
  135. "watching",
  136. "file",
  137. "fsevents"
  138. ],
  139. "license": "MIT",
  140. "main": "index.js",
  141. "name": "chokidar",
  142. "nyc": {
  143. "include": [
  144. "index.js",
  145. "lib/*.js"
  146. ],
  147. "reporter": [
  148. "html",
  149. "text"
  150. ]
  151. },
  152. "optionalDependencies": {
  153. "fsevents": "~2.1.2"
  154. },
  155. "repository": {
  156. "type": "git",
  157. "url": "git+https://github.com/paulmillr/chokidar.git"
  158. },
  159. "scripts": {
  160. "dtslint": "dtslint types",
  161. "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
  162. "mocha": "mocha --exit --timeout 60000",
  163. "test": "npm run lint && npm run mocha"
  164. },
  165. "types": "./types/index.d.ts",
  166. "version": "3.4.2"
  167. }