Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 3.3KB

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