package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. {
  2. "_from": "readdirp@~3.6.0",
  3. "_id": "readdirp@3.6.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  6. "_location": "/readdirp",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "readdirp@~3.6.0",
  12. "name": "readdirp",
  13. "escapedName": "readdirp",
  14. "rawSpec": "~3.6.0",
  15. "saveSpec": null,
  16. "fetchSpec": "~3.6.0"
  17. },
  18. "_requiredBy": [
  19. "/chokidar"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
  22. "_shasum": "74a370bd857116e245b29cc97340cd431a02a6c7",
  23. "_spec": "readdirp@~3.6.0",
  24. "_where": "C:\\Users\\Admin\\Desktop\\WORK IT\\a-level proj\\chat\\server\\node_modules\\chokidar",
  25. "author": {
  26. "name": "Thorsten Lorenz",
  27. "email": "thlorenz@gmx.de",
  28. "url": "thlorenz.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/paulmillr/readdirp/issues"
  32. },
  33. "bundleDependencies": false,
  34. "contributors": [
  35. {
  36. "name": "Thorsten Lorenz",
  37. "email": "thlorenz@gmx.de",
  38. "url": "thlorenz.com"
  39. },
  40. {
  41. "name": "Paul Miller",
  42. "url": "https://paulmillr.com"
  43. }
  44. ],
  45. "dependencies": {
  46. "picomatch": "^2.2.1"
  47. },
  48. "deprecated": false,
  49. "description": "Recursive version of fs.readdir with streaming API.",
  50. "devDependencies": {
  51. "@types/node": "^14",
  52. "chai": "^4.2",
  53. "chai-subset": "^1.6",
  54. "dtslint": "^3.3.0",
  55. "eslint": "^7.0.0",
  56. "mocha": "^7.1.1",
  57. "nyc": "^15.0.0",
  58. "rimraf": "^3.0.0",
  59. "typescript": "^4.0.3"
  60. },
  61. "engines": {
  62. "node": ">=8.10.0"
  63. },
  64. "eslintConfig": {
  65. "root": true,
  66. "extends": "eslint:recommended",
  67. "parserOptions": {
  68. "ecmaVersion": 9,
  69. "sourceType": "script"
  70. },
  71. "env": {
  72. "node": true,
  73. "es6": true
  74. },
  75. "rules": {
  76. "array-callback-return": "error",
  77. "no-empty": [
  78. "error",
  79. {
  80. "allowEmptyCatch": true
  81. }
  82. ],
  83. "no-else-return": [
  84. "error",
  85. {
  86. "allowElseIf": false
  87. }
  88. ],
  89. "no-lonely-if": "error",
  90. "no-var": "error",
  91. "object-shorthand": "error",
  92. "prefer-arrow-callback": [
  93. "error",
  94. {
  95. "allowNamedFunctions": true
  96. }
  97. ],
  98. "prefer-const": [
  99. "error",
  100. {
  101. "ignoreReadBeforeAssign": true
  102. }
  103. ],
  104. "prefer-destructuring": [
  105. "error",
  106. {
  107. "object": true,
  108. "array": false
  109. }
  110. ],
  111. "prefer-spread": "error",
  112. "prefer-template": "error",
  113. "radix": "error",
  114. "semi": "error",
  115. "strict": "error",
  116. "quotes": [
  117. "error",
  118. "single"
  119. ]
  120. }
  121. },
  122. "files": [
  123. "index.js",
  124. "index.d.ts"
  125. ],
  126. "homepage": "https://github.com/paulmillr/readdirp",
  127. "keywords": [
  128. "recursive",
  129. "fs",
  130. "stream",
  131. "streams",
  132. "readdir",
  133. "filesystem",
  134. "find",
  135. "filter"
  136. ],
  137. "license": "MIT",
  138. "main": "index.js",
  139. "name": "readdirp",
  140. "nyc": {
  141. "reporter": [
  142. "html",
  143. "text"
  144. ]
  145. },
  146. "repository": {
  147. "type": "git",
  148. "url": "git://github.com/paulmillr/readdirp.git"
  149. },
  150. "scripts": {
  151. "dtslint": "dtslint",
  152. "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
  153. "mocha": "mocha --exit",
  154. "nyc": "nyc",
  155. "test": "npm run lint && nyc npm run mocha"
  156. },
  157. "version": "3.6.0"
  158. }