nodejs-wheel-binaries 20.13.0__py2.py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2187) hide show
  1. nodejs_wheel/__init__.py +12 -0
  2. nodejs_wheel/__main__.py +4 -0
  3. nodejs_wheel/executable.py +92 -0
  4. nodejs_wheel/lib/node_modules/npm/.npmrc +0 -0
  5. nodejs_wheel/lib/node_modules/npm/LICENSE +235 -0
  6. nodejs_wheel/lib/node_modules/npm/README.md +63 -0
  7. nodejs_wheel/lib/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
  8. nodejs_wheel/lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
  9. nodejs_wheel/lib/node_modules/npm/bin/npm +65 -0
  10. nodejs_wheel/lib/node_modules/npm/bin/npm-cli.js +2 -0
  11. nodejs_wheel/lib/node_modules/npm/bin/npm-prefix.js +30 -0
  12. nodejs_wheel/lib/node_modules/npm/bin/npm.cmd +20 -0
  13. nodejs_wheel/lib/node_modules/npm/bin/npm.ps1 +35 -0
  14. nodejs_wheel/lib/node_modules/npm/bin/npx +65 -0
  15. nodejs_wheel/lib/node_modules/npm/bin/npx-cli.js +130 -0
  16. nodejs_wheel/lib/node_modules/npm/bin/npx.cmd +20 -0
  17. nodejs_wheel/lib/node_modules/npm/bin/npx.ps1 +35 -0
  18. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-access.md +123 -0
  19. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
  20. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-audit.md +478 -0
  21. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
  22. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
  23. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-ci.md +318 -0
  24. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
  25. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-config.md +182 -0
  26. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
  27. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
  28. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
  29. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
  30. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
  31. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
  32. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
  33. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
  34. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
  35. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
  36. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
  37. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
  38. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
  39. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-help.md +46 -0
  40. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
  41. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-init.md +349 -0
  42. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-install-ci-test.md +265 -0
  43. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-install-test.md +372 -0
  44. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-install.md +808 -0
  45. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-link.md +396 -0
  46. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-login.md +93 -0
  47. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
  48. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
  49. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-org.md +114 -0
  50. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
  51. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
  52. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
  53. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
  54. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
  55. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
  56. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
  57. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-prune.md +197 -0
  58. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
  59. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-query.md +272 -0
  60. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-rebuild.md +169 -0
  61. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
  62. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
  63. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-root.md +51 -0
  64. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-run-script.md +254 -0
  65. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-sbom.md +318 -0
  66. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-search.md +169 -0
  67. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
  68. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-star.md +78 -0
  69. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
  70. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-start.md +80 -0
  71. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
  72. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-team.md +155 -0
  73. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-test.md +70 -0
  74. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-token.md +130 -0
  75. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
  76. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
  77. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
  78. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-update.md +446 -0
  79. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-version.md +235 -0
  80. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-view.md +200 -0
  81. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
  82. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm.md +175 -0
  83. nodejs_wheel/lib/node_modules/npm/docs/content/commands/npx.md +168 -0
  84. nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
  85. nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
  86. nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
  87. nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
  88. nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/package-json.md +1189 -0
  89. nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
  90. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/config.md +2017 -0
  91. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/dependency-selectors.md +223 -0
  92. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/developers.md +245 -0
  93. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/logging.md +96 -0
  94. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
  95. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
  96. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/registry.md +86 -0
  97. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/removal.md +64 -0
  98. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/scope.md +143 -0
  99. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/scripts.md +363 -0
  100. nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
  101. nodejs_wheel/lib/node_modules/npm/docs/lib/index.js +189 -0
  102. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-access.html +262 -0
  103. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
  104. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-audit.html +509 -0
  105. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
  106. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
  107. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-ci.html +398 -0
  108. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
  109. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-config.html +283 -0
  110. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
  111. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
  112. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
  113. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
  114. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
  115. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
  116. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
  117. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
  118. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
  119. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
  120. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
  121. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
  122. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
  123. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-help.html +190 -0
  124. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
  125. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-init.html +422 -0
  126. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-install-ci-test.html +356 -0
  127. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-install-test.html +433 -0
  128. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-install.html +795 -0
  129. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-link.html +450 -0
  130. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-login.html +222 -0
  131. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
  132. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
  133. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-org.html +231 -0
  134. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
  135. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
  136. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
  137. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
  138. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
  139. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
  140. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
  141. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-prune.html +305 -0
  142. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
  143. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-query.html +386 -0
  144. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-rebuild.html +289 -0
  145. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
  146. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
  147. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-root.html +195 -0
  148. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-run-script.html +346 -0
  149. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
  150. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-search.html +279 -0
  151. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
  152. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-star.html +209 -0
  153. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
  154. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-start.html +214 -0
  155. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
  156. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-team.html +272 -0
  157. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-test.html +207 -0
  158. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-token.html +266 -0
  159. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
  160. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
  161. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
  162. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-update.html +486 -0
  163. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-version.html +341 -0
  164. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-view.html +297 -0
  165. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
  166. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm.html +296 -0
  167. nodejs_wheel/lib/node_modules/npm/docs/output/commands/npx.html +285 -0
  168. nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
  169. nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
  170. nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
  171. nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
  172. nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/package-json.html +1069 -0
  173. nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
  174. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/config.html +1609 -0
  175. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/dependency-selectors.html +348 -0
  176. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/developers.html +352 -0
  177. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/logging.html +228 -0
  178. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
  179. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
  180. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/registry.html +226 -0
  181. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/removal.html +199 -0
  182. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/scope.html +257 -0
  183. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/scripts.html +477 -0
  184. nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
  185. nodejs_wheel/lib/node_modules/npm/index.js +5 -0
  186. nodejs_wheel/lib/node_modules/npm/lib/arborist-cmd.js +53 -0
  187. nodejs_wheel/lib/node_modules/npm/lib/base-command.js +184 -0
  188. nodejs_wheel/lib/node_modules/npm/lib/cli-entry.js +74 -0
  189. nodejs_wheel/lib/node_modules/npm/lib/cli.js +4 -0
  190. nodejs_wheel/lib/node_modules/npm/lib/commands/access.js +222 -0
  191. nodejs_wheel/lib/node_modules/npm/lib/commands/adduser.js +51 -0
  192. nodejs_wheel/lib/node_modules/npm/lib/commands/audit.js +511 -0
  193. nodejs_wheel/lib/node_modules/npm/lib/commands/bugs.js +34 -0
  194. nodejs_wheel/lib/node_modules/npm/lib/commands/cache.js +213 -0
  195. nodejs_wheel/lib/node_modules/npm/lib/commands/ci.js +121 -0
  196. nodejs_wheel/lib/node_modules/npm/lib/commands/completion.js +283 -0
  197. nodejs_wheel/lib/node_modules/npm/lib/commands/config.js +378 -0
  198. nodejs_wheel/lib/node_modules/npm/lib/commands/dedupe.js +52 -0
  199. nodejs_wheel/lib/node_modules/npm/lib/commands/deprecate.js +73 -0
  200. nodejs_wheel/lib/node_modules/npm/lib/commands/diff.js +291 -0
  201. nodejs_wheel/lib/node_modules/npm/lib/commands/dist-tag.js +208 -0
  202. nodejs_wheel/lib/node_modules/npm/lib/commands/docs.js +19 -0
  203. nodejs_wheel/lib/node_modules/npm/lib/commands/doctor.js +419 -0
  204. nodejs_wheel/lib/node_modules/npm/lib/commands/edit.js +76 -0
  205. nodejs_wheel/lib/node_modules/npm/lib/commands/exec.js +106 -0
  206. nodejs_wheel/lib/node_modules/npm/lib/commands/explain.js +128 -0
  207. nodejs_wheel/lib/node_modules/npm/lib/commands/explore.js +79 -0
  208. nodejs_wheel/lib/node_modules/npm/lib/commands/find-dupes.js +27 -0
  209. nodejs_wheel/lib/node_modules/npm/lib/commands/fund.js +225 -0
  210. nodejs_wheel/lib/node_modules/npm/lib/commands/get.js +22 -0
  211. nodejs_wheel/lib/node_modules/npm/lib/commands/help-search.js +194 -0
  212. nodejs_wheel/lib/node_modules/npm/lib/commands/help.js +113 -0
  213. nodejs_wheel/lib/node_modules/npm/lib/commands/hook.js +125 -0
  214. nodejs_wheel/lib/node_modules/npm/lib/commands/init.js +247 -0
  215. nodejs_wheel/lib/node_modules/npm/lib/commands/install-ci-test.js +15 -0
  216. nodejs_wheel/lib/node_modules/npm/lib/commands/install-test.js +15 -0
  217. nodejs_wheel/lib/node_modules/npm/lib/commands/install.js +179 -0
  218. nodejs_wheel/lib/node_modules/npm/lib/commands/link.js +192 -0
  219. nodejs_wheel/lib/node_modules/npm/lib/commands/ll.js +13 -0
  220. nodejs_wheel/lib/node_modules/npm/lib/commands/login.js +51 -0
  221. nodejs_wheel/lib/node_modules/npm/lib/commands/logout.js +49 -0
  222. nodejs_wheel/lib/node_modules/npm/lib/commands/ls.js +573 -0
  223. nodejs_wheel/lib/node_modules/npm/lib/commands/org.js +155 -0
  224. nodejs_wheel/lib/node_modules/npm/lib/commands/outdated.js +369 -0
  225. nodejs_wheel/lib/node_modules/npm/lib/commands/owner.js +233 -0
  226. nodejs_wheel/lib/node_modules/npm/lib/commands/pack.js +86 -0
  227. nodejs_wheel/lib/node_modules/npm/lib/commands/ping.js +29 -0
  228. nodejs_wheel/lib/node_modules/npm/lib/commands/pkg.js +148 -0
  229. nodejs_wheel/lib/node_modules/npm/lib/commands/prefix.js +13 -0
  230. nodejs_wheel/lib/node_modules/npm/lib/commands/profile.js +407 -0
  231. nodejs_wheel/lib/node_modules/npm/lib/commands/prune.js +33 -0
  232. nodejs_wheel/lib/node_modules/npm/lib/commands/publish.js +233 -0
  233. nodejs_wheel/lib/node_modules/npm/lib/commands/query.js +127 -0
  234. nodejs_wheel/lib/node_modules/npm/lib/commands/rebuild.js +82 -0
  235. nodejs_wheel/lib/node_modules/npm/lib/commands/repo.js +54 -0
  236. nodejs_wheel/lib/node_modules/npm/lib/commands/restart.js +13 -0
  237. nodejs_wheel/lib/node_modules/npm/lib/commands/root.js +11 -0
  238. nodejs_wheel/lib/node_modules/npm/lib/commands/run-script.js +249 -0
  239. nodejs_wheel/lib/node_modules/npm/lib/commands/sbom.js +155 -0
  240. nodejs_wheel/lib/node_modules/npm/lib/commands/search.js +114 -0
  241. nodejs_wheel/lib/node_modules/npm/lib/commands/set.js +25 -0
  242. nodejs_wheel/lib/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
  243. nodejs_wheel/lib/node_modules/npm/lib/commands/star.js +71 -0
  244. nodejs_wheel/lib/node_modules/npm/lib/commands/stars.js +38 -0
  245. nodejs_wheel/lib/node_modules/npm/lib/commands/start.js +13 -0
  246. nodejs_wheel/lib/node_modules/npm/lib/commands/stop.js +13 -0
  247. nodejs_wheel/lib/node_modules/npm/lib/commands/team.js +154 -0
  248. nodejs_wheel/lib/node_modules/npm/lib/commands/test.js +13 -0
  249. nodejs_wheel/lib/node_modules/npm/lib/commands/token.js +229 -0
  250. nodejs_wheel/lib/node_modules/npm/lib/commands/uninstall.js +56 -0
  251. nodejs_wheel/lib/node_modules/npm/lib/commands/unpublish.js +176 -0
  252. nodejs_wheel/lib/node_modules/npm/lib/commands/unstar.js +7 -0
  253. nodejs_wheel/lib/node_modules/npm/lib/commands/update.js +69 -0
  254. nodejs_wheel/lib/node_modules/npm/lib/commands/version.js +156 -0
  255. nodejs_wheel/lib/node_modules/npm/lib/commands/view.js +516 -0
  256. nodejs_wheel/lib/node_modules/npm/lib/commands/whoami.js +16 -0
  257. nodejs_wheel/lib/node_modules/npm/lib/es6/validate-engines.js +49 -0
  258. nodejs_wheel/lib/node_modules/npm/lib/lifecycle-cmd.js +19 -0
  259. nodejs_wheel/lib/node_modules/npm/lib/npm.js +485 -0
  260. nodejs_wheel/lib/node_modules/npm/lib/package-url-cmd.js +65 -0
  261. nodejs_wheel/lib/node_modules/npm/lib/utils/audit-error.js +40 -0
  262. nodejs_wheel/lib/node_modules/npm/lib/utils/auth.js +100 -0
  263. nodejs_wheel/lib/node_modules/npm/lib/utils/cmd-list.js +178 -0
  264. nodejs_wheel/lib/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
  265. nodejs_wheel/lib/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
  266. nodejs_wheel/lib/node_modules/npm/lib/utils/completion.fish +40 -0
  267. nodejs_wheel/lib/node_modules/npm/lib/utils/completion.sh +70 -0
  268. nodejs_wheel/lib/node_modules/npm/lib/utils/did-you-mean.js +40 -0
  269. nodejs_wheel/lib/node_modules/npm/lib/utils/display.js +215 -0
  270. nodejs_wheel/lib/node_modules/npm/lib/utils/error-message.js +435 -0
  271. nodejs_wheel/lib/node_modules/npm/lib/utils/exit-handler.js +227 -0
  272. nodejs_wheel/lib/node_modules/npm/lib/utils/explain-dep.js +135 -0
  273. nodejs_wheel/lib/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
  274. nodejs_wheel/lib/node_modules/npm/lib/utils/format-bytes.js +30 -0
  275. nodejs_wheel/lib/node_modules/npm/lib/utils/format-search-stream.js +134 -0
  276. nodejs_wheel/lib/node_modules/npm/lib/utils/get-identity.js +26 -0
  277. nodejs_wheel/lib/node_modules/npm/lib/utils/is-windows.js +6 -0
  278. nodejs_wheel/lib/node_modules/npm/lib/utils/log-file.js +260 -0
  279. nodejs_wheel/lib/node_modules/npm/lib/utils/log-shim.js +59 -0
  280. nodejs_wheel/lib/node_modules/npm/lib/utils/npm-usage.js +74 -0
  281. nodejs_wheel/lib/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
  282. nodejs_wheel/lib/node_modules/npm/lib/utils/open-url.js +50 -0
  283. nodejs_wheel/lib/node_modules/npm/lib/utils/otplease.js +48 -0
  284. nodejs_wheel/lib/node_modules/npm/lib/utils/ping.js +7 -0
  285. nodejs_wheel/lib/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
  286. nodejs_wheel/lib/node_modules/npm/lib/utils/queryable.js +308 -0
  287. nodejs_wheel/lib/node_modules/npm/lib/utils/read-user-info.js +68 -0
  288. nodejs_wheel/lib/node_modules/npm/lib/utils/reify-finish.js +33 -0
  289. nodejs_wheel/lib/node_modules/npm/lib/utils/reify-output.js +224 -0
  290. nodejs_wheel/lib/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
  291. nodejs_wheel/lib/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
  292. nodejs_wheel/lib/node_modules/npm/lib/utils/tar.js +132 -0
  293. nodejs_wheel/lib/node_modules/npm/lib/utils/timers.js +116 -0
  294. nodejs_wheel/lib/node_modules/npm/lib/utils/update-notifier.js +127 -0
  295. nodejs_wheel/lib/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
  296. nodejs_wheel/lib/node_modules/npm/lib/utils/web-auth.js +20 -0
  297. nodejs_wheel/lib/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
  298. nodejs_wheel/lib/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
  299. nodejs_wheel/lib/node_modules/npm/man/man1/npm-access.1 +115 -0
  300. nodejs_wheel/lib/node_modules/npm/man/man1/npm-adduser.1 +91 -0
  301. nodejs_wheel/lib/node_modules/npm/man/man1/npm-audit.1 +448 -0
  302. nodejs_wheel/lib/node_modules/npm/man/man1/npm-bugs.1 +115 -0
  303. nodejs_wheel/lib/node_modules/npm/man/man1/npm-cache.1 +78 -0
  304. nodejs_wheel/lib/node_modules/npm/man/man1/npm-ci.1 +289 -0
  305. nodejs_wheel/lib/node_modules/npm/man/man1/npm-completion.1 +35 -0
  306. nodejs_wheel/lib/node_modules/npm/man/man1/npm-config.1 +187 -0
  307. nodejs_wheel/lib/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
  308. nodejs_wheel/lib/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
  309. nodejs_wheel/lib/node_modules/npm/man/man1/npm-diff.1 +307 -0
  310. nodejs_wheel/lib/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
  311. nodejs_wheel/lib/node_modules/npm/man/man1/npm-docs.1 +113 -0
  312. nodejs_wheel/lib/node_modules/npm/man/man1/npm-doctor.1 +82 -0
  313. nodejs_wheel/lib/node_modules/npm/man/man1/npm-edit.1 +43 -0
  314. nodejs_wheel/lib/node_modules/npm/man/man1/npm-exec.1 +350 -0
  315. nodejs_wheel/lib/node_modules/npm/man/man1/npm-explain.1 +118 -0
  316. nodejs_wheel/lib/node_modules/npm/man/man1/npm-explore.1 +49 -0
  317. nodejs_wheel/lib/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
  318. nodejs_wheel/lib/node_modules/npm/man/man1/npm-fund.1 +142 -0
  319. nodejs_wheel/lib/node_modules/npm/man/man1/npm-help-search.1 +37 -0
  320. nodejs_wheel/lib/node_modules/npm/man/man1/npm-help.1 +47 -0
  321. nodejs_wheel/lib/node_modules/npm/man/man1/npm-hook.1 +115 -0
  322. nodejs_wheel/lib/node_modules/npm/man/man1/npm-init.1 +366 -0
  323. nodejs_wheel/lib/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
  324. nodejs_wheel/lib/node_modules/npm/man/man1/npm-install-test.1 +346 -0
  325. nodejs_wheel/lib/node_modules/npm/man/man1/npm-install.1 +762 -0
  326. nodejs_wheel/lib/node_modules/npm/man/man1/npm-link.1 +355 -0
  327. nodejs_wheel/lib/node_modules/npm/man/man1/npm-login.1 +95 -0
  328. nodejs_wheel/lib/node_modules/npm/man/man1/npm-logout.1 +75 -0
  329. nodejs_wheel/lib/node_modules/npm/man/man1/npm-ls.1 +283 -0
  330. nodejs_wheel/lib/node_modules/npm/man/man1/npm-org.1 +125 -0
  331. nodejs_wheel/lib/node_modules/npm/man/man1/npm-outdated.1 +182 -0
  332. nodejs_wheel/lib/node_modules/npm/man/man1/npm-owner.1 +110 -0
  333. nodejs_wheel/lib/node_modules/npm/man/man1/npm-pack.1 +130 -0
  334. nodejs_wheel/lib/node_modules/npm/man/man1/npm-ping.1 +52 -0
  335. nodejs_wheel/lib/node_modules/npm/man/man1/npm-pkg.1 +286 -0
  336. nodejs_wheel/lib/node_modules/npm/man/man1/npm-prefix.1 +63 -0
  337. nodejs_wheel/lib/node_modules/npm/man/man1/npm-profile.1 +137 -0
  338. nodejs_wheel/lib/node_modules/npm/man/man1/npm-prune.1 +184 -0
  339. nodejs_wheel/lib/node_modules/npm/man/man1/npm-publish.1 +221 -0
  340. nodejs_wheel/lib/node_modules/npm/man/man1/npm-query.1 +281 -0
  341. nodejs_wheel/lib/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
  342. nodejs_wheel/lib/node_modules/npm/man/man1/npm-repo.1 +103 -0
  343. nodejs_wheel/lib/node_modules/npm/man/man1/npm-restart.1 +85 -0
  344. nodejs_wheel/lib/node_modules/npm/man/man1/npm-root.1 +56 -0
  345. nodejs_wheel/lib/node_modules/npm/man/man1/npm-run-script.1 +234 -0
  346. nodejs_wheel/lib/node_modules/npm/man/man1/npm-sbom.1 +314 -0
  347. nodejs_wheel/lib/node_modules/npm/man/man1/npm-search.1 +166 -0
  348. nodejs_wheel/lib/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
  349. nodejs_wheel/lib/node_modules/npm/man/man1/npm-star.1 +76 -0
  350. nodejs_wheel/lib/node_modules/npm/man/man1/npm-stars.1 +41 -0
  351. nodejs_wheel/lib/node_modules/npm/man/man1/npm-start.1 +79 -0
  352. nodejs_wheel/lib/node_modules/npm/man/man1/npm-stop.1 +75 -0
  353. nodejs_wheel/lib/node_modules/npm/man/man1/npm-team.1 +148 -0
  354. nodejs_wheel/lib/node_modules/npm/man/man1/npm-test.1 +73 -0
  355. nodejs_wheel/lib/node_modules/npm/man/man1/npm-token.1 +130 -0
  356. nodejs_wheel/lib/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
  357. nodejs_wheel/lib/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
  358. nodejs_wheel/lib/node_modules/npm/man/man1/npm-unstar.1 +70 -0
  359. nodejs_wheel/lib/node_modules/npm/man/man1/npm-update.1 +406 -0
  360. nodejs_wheel/lib/node_modules/npm/man/man1/npm-version.1 +229 -0
  361. nodejs_wheel/lib/node_modules/npm/man/man1/npm-view.1 +213 -0
  362. nodejs_wheel/lib/node_modules/npm/man/man1/npm-whoami.1 +39 -0
  363. nodejs_wheel/lib/node_modules/npm/man/man1/npm.1 +131 -0
  364. nodejs_wheel/lib/node_modules/npm/man/man1/npx.1 +156 -0
  365. nodejs_wheel/lib/node_modules/npm/man/man5/folders.5 +152 -0
  366. nodejs_wheel/lib/node_modules/npm/man/man5/install.5 +57 -0
  367. nodejs_wheel/lib/node_modules/npm/man/man5/npm-global.5 +152 -0
  368. nodejs_wheel/lib/node_modules/npm/man/man5/npm-json.5 +1091 -0
  369. nodejs_wheel/lib/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
  370. nodejs_wheel/lib/node_modules/npm/man/man5/npmrc.5 +129 -0
  371. nodejs_wheel/lib/node_modules/npm/man/man5/package-json.5 +1091 -0
  372. nodejs_wheel/lib/node_modules/npm/man/man5/package-lock-json.5 +156 -0
  373. nodejs_wheel/lib/node_modules/npm/man/man7/config.7 +2038 -0
  374. nodejs_wheel/lib/node_modules/npm/man/man7/dependency-selectors.7 +331 -0
  375. nodejs_wheel/lib/node_modules/npm/man/man7/developers.7 +234 -0
  376. nodejs_wheel/lib/node_modules/npm/man/man7/logging.7 +108 -0
  377. nodejs_wheel/lib/node_modules/npm/man/man7/orgs.7 +145 -0
  378. nodejs_wheel/lib/node_modules/npm/man/man7/package-spec.7 +126 -0
  379. nodejs_wheel/lib/node_modules/npm/man/man7/registry.7 +51 -0
  380. nodejs_wheel/lib/node_modules/npm/man/man7/removal.7 +60 -0
  381. nodejs_wheel/lib/node_modules/npm/man/man7/scope.7 +113 -0
  382. nodejs_wheel/lib/node_modules/npm/man/man7/scripts.7 +406 -0
  383. nodejs_wheel/lib/node_modules/npm/man/man7/workspaces.7 +214 -0
  384. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
  385. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +82 -0
  386. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +78 -0
  387. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
  388. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
  389. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +109 -0
  390. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
  391. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
  392. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
  393. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +11 -0
  394. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
  395. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
  396. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
  397. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
  398. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
  399. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
  400. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
  401. nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
  402. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
  403. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
  404. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
  405. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
  406. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
  407. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex/index.js +8 -0
  408. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex/license +9 -0
  409. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex/package.json +58 -0
  410. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  411. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  412. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
  413. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
  414. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
  415. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
  416. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
  417. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
  418. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
  419. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
  420. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
  421. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi/index.js +14 -0
  422. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi/license +9 -0
  423. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi/package.json +57 -0
  424. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
  425. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
  426. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
  427. nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
  428. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +206 -0
  429. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
  430. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
  431. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
  432. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
  433. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
  434. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
  435. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
  436. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
  437. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
  438. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
  439. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
  440. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
  441. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
  442. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
  443. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
  444. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
  445. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
  446. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
  447. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
  448. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
  449. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
  450. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
  451. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
  452. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1547 -0
  453. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +255 -0
  454. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
  455. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +438 -0
  456. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
  457. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +404 -0
  458. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1608 -0
  459. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
  460. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
  461. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
  462. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
  463. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
  464. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
  465. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
  466. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
  467. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
  468. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
  469. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
  470. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
  471. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +6 -0
  472. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
  473. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
  474. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
  475. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
  476. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
  477. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
  478. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
  479. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
  480. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
  481. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +945 -0
  482. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
  483. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
  484. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
  485. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
  486. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
  487. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
  488. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
  489. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
  490. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +101 -0
  491. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
  492. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +47 -0
  493. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +214 -0
  494. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
  495. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/package.json +97 -0
  496. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
  497. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
  498. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
  499. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2276 -0
  500. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
  501. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
  502. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
  503. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/index.js +952 -0
  504. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
  505. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
  506. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
  507. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +61 -0
  508. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
  509. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +35 -0
  510. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
  511. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
  512. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
  513. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
  514. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
  515. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
  516. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
  517. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
  518. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
  519. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
  520. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
  521. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
  522. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
  523. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
  524. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
  525. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
  526. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
  527. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
  528. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
  529. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
  530. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
  531. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
  532. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
  533. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
  534. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
  535. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/is.js +4 -0
  536. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
  537. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
  538. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
  539. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
  540. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
  541. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
  542. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
  543. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/package.json +57 -0
  544. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
  545. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
  546. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
  547. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
  548. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
  549. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +234 -0
  550. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
  551. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
  552. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
  553. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
  554. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
  555. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
  556. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
  557. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
  558. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
  559. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
  560. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
  561. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
  562. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
  563. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
  564. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +583 -0
  565. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
  566. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
  567. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
  568. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/package.json +60 -0
  569. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
  570. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
  571. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +205 -0
  572. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +50 -0
  573. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
  574. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/query/lib/index.js +255 -0
  575. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
  576. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/redact/LICENSE +21 -0
  577. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/redact/lib/index.js +59 -0
  578. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/redact/package.json +45 -0
  579. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
  580. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +11 -0
  581. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
  582. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
  583. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
  584. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +29 -0
  585. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +114 -0
  586. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +15 -0
  587. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
  588. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +50 -0
  589. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
  590. nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
  591. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
  592. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
  593. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
  594. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
  595. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
  596. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
  597. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
  598. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
  599. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
  600. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
  601. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
  602. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
  603. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
  604. nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
  605. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
  606. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +101 -0
  607. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +24 -0
  608. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
  609. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +43 -0
  610. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +49 -0
  611. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
  612. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +199 -0
  613. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
  614. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/LICENSE +202 -0
  615. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/error.js +24 -0
  616. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/index.js +20 -0
  617. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/length.js +63 -0
  618. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/obj.js +152 -0
  619. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/parse.js +125 -0
  620. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/tag.js +86 -0
  621. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/crypto.js +71 -0
  622. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/dsse.js +31 -0
  623. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/encoding.js +28 -0
  624. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/index.js +56 -0
  625. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/json.js +61 -0
  626. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/oid.js +14 -0
  627. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/pem.js +44 -0
  628. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/error.js +21 -0
  629. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/index.js +20 -0
  630. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/timestamp.js +201 -0
  631. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/tstinfo.js +61 -0
  632. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/stream.js +115 -0
  633. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/cert.js +226 -0
  634. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/ext.js +145 -0
  635. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/index.js +23 -0
  636. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/sct.js +141 -0
  637. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/package.json +31 -0
  638. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
  639. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
  640. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
  641. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
  642. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
  643. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
  644. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
  645. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +112 -0
  646. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +588 -0
  647. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
  648. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +155 -0
  649. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +324 -0
  650. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
  651. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
  652. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
  653. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
  654. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +71 -0
  655. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +46 -0
  656. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
  657. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
  658. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
  659. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
  660. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
  661. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
  662. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
  663. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
  664. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
  665. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
  666. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
  667. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
  668. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
  669. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
  670. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +22 -0
  671. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
  672. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
  673. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +49 -0
  674. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +31 -0
  675. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
  676. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +24 -0
  677. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
  678. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
  679. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
  680. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
  681. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
  682. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
  683. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/package.json +43 -0
  684. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
  685. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
  686. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +112 -0
  687. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
  688. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
  689. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
  690. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
  691. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/seeds.json +1 -0
  692. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/bundle/dsse.js +43 -0
  693. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/bundle/index.js +58 -0
  694. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/bundle/message.js +36 -0
  695. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/error.js +32 -0
  696. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/index.js +28 -0
  697. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/key/certificate.js +205 -0
  698. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/key/index.js +72 -0
  699. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/key/sct.js +79 -0
  700. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/policy.js +25 -0
  701. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/shared.types.js +2 -0
  702. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/checkpoint.js +158 -0
  703. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/index.js +47 -0
  704. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/merkle.js +105 -0
  705. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/set.js +61 -0
  706. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/tsa.js +74 -0
  707. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/dsse.js +58 -0
  708. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/hashedrekord.js +52 -0
  709. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/index.js +48 -0
  710. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/intoto.js +63 -0
  711. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/trust/filter.js +24 -0
  712. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/trust/index.js +84 -0
  713. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/trust/trust.types.js +2 -0
  714. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/verifier.js +141 -0
  715. nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/package.json +36 -0
  716. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
  717. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
  718. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
  719. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
  720. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
  721. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
  722. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
  723. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
  724. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
  725. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
  726. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
  727. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
  728. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
  729. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
  730. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
  731. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
  732. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
  733. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
  734. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
  735. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
  736. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
  737. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
  738. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
  739. nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
  740. nodejs_wheel/lib/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
  741. nodejs_wheel/lib/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
  742. nodejs_wheel/lib/node_modules/npm/node_modules/abbrev/package.json +43 -0
  743. nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/LICENSE +22 -0
  744. nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
  745. nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/dist/index.js +175 -0
  746. nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/package.json +49 -0
  747. nodejs_wheel/lib/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
  748. nodejs_wheel/lib/node_modules/npm/node_modules/aggregate-error/license +9 -0
  749. nodejs_wheel/lib/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
  750. nodejs_wheel/lib/node_modules/npm/node_modules/ansi-regex/index.js +10 -0
  751. nodejs_wheel/lib/node_modules/npm/node_modules/ansi-regex/license +9 -0
  752. nodejs_wheel/lib/node_modules/npm/node_modules/ansi-regex/package.json +55 -0
  753. nodejs_wheel/lib/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
  754. nodejs_wheel/lib/node_modules/npm/node_modules/ansi-styles/license +9 -0
  755. nodejs_wheel/lib/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
  756. nodejs_wheel/lib/node_modules/npm/node_modules/aproba/LICENSE +14 -0
  757. nodejs_wheel/lib/node_modules/npm/node_modules/aproba/index.js +105 -0
  758. nodejs_wheel/lib/node_modules/npm/node_modules/aproba/package.json +35 -0
  759. nodejs_wheel/lib/node_modules/npm/node_modules/archy/LICENSE +18 -0
  760. nodejs_wheel/lib/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
  761. nodejs_wheel/lib/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
  762. nodejs_wheel/lib/node_modules/npm/node_modules/archy/index.js +35 -0
  763. nodejs_wheel/lib/node_modules/npm/node_modules/archy/package.json +40 -0
  764. nodejs_wheel/lib/node_modules/npm/node_modules/archy/test/beep.js +40 -0
  765. nodejs_wheel/lib/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
  766. nodejs_wheel/lib/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
  767. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
  768. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
  769. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
  770. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
  771. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +42 -0
  772. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
  773. nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/package.json +53 -0
  774. nodejs_wheel/lib/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
  775. nodejs_wheel/lib/node_modules/npm/node_modules/balanced-match/index.js +62 -0
  776. nodejs_wheel/lib/node_modules/npm/node_modules/balanced-match/package.json +48 -0
  777. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
  778. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
  779. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
  780. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
  781. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
  782. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
  783. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
  784. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
  785. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
  786. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
  787. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
  788. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
  789. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
  790. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
  791. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
  792. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
  793. nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/package.json +59 -0
  794. nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +263 -0
  795. nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
  796. nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/license +10 -0
  797. nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/package.json +40 -0
  798. nodejs_wheel/lib/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
  799. nodejs_wheel/lib/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
  800. nodejs_wheel/lib/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
  801. nodejs_wheel/lib/node_modules/npm/node_modules/builtins/License +20 -0
  802. nodejs_wheel/lib/node_modules/npm/node_modules/builtins/index.js +80 -0
  803. nodejs_wheel/lib/node_modules/npm/node_modules/builtins/package.json +19 -0
  804. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
  805. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
  806. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/read.js +165 -0
  807. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
  808. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
  809. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
  810. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
  811. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
  812. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
  813. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
  814. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
  815. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
  816. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
  817. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
  818. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
  819. nodejs_wheel/lib/node_modules/npm/node_modules/cacache/package.json +82 -0
  820. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/license +9 -0
  821. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/package.json +83 -0
  822. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/index.js +225 -0
  823. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
  824. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  825. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
  826. nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
  827. nodejs_wheel/lib/node_modules/npm/node_modules/chownr/LICENSE +15 -0
  828. nodejs_wheel/lib/node_modules/npm/node_modules/chownr/chownr.js +167 -0
  829. nodejs_wheel/lib/node_modules/npm/node_modules/chownr/package.json +32 -0
  830. nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
  831. nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/index.js +90 -0
  832. nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/package.json +45 -0
  833. nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
  834. nodejs_wheel/lib/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
  835. nodejs_wheel/lib/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
  836. nodejs_wheel/lib/node_modules/npm/node_modules/cidr-regex/package.json +33 -0
  837. nodejs_wheel/lib/node_modules/npm/node_modules/clean-stack/index.js +40 -0
  838. nodejs_wheel/lib/node_modules/npm/node_modules/clean-stack/license +9 -0
  839. nodejs_wheel/lib/node_modules/npm/node_modules/clean-stack/package.json +39 -0
  840. nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/color.js +16 -0
  841. nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/index.js +82 -0
  842. nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/license +20 -0
  843. nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/package.json +54 -0
  844. nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/test.js +101 -0
  845. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
  846. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/index.js +1 -0
  847. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/package.json +100 -0
  848. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
  849. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
  850. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
  851. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
  852. nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
  853. nodejs_wheel/lib/node_modules/npm/node_modules/clone/LICENSE +18 -0
  854. nodejs_wheel/lib/node_modules/npm/node_modules/clone/clone.iml +10 -0
  855. nodejs_wheel/lib/node_modules/npm/node_modules/clone/clone.js +166 -0
  856. nodejs_wheel/lib/node_modules/npm/node_modules/clone/package.json +51 -0
  857. nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
  858. nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
  859. nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
  860. nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
  861. nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
  862. nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
  863. nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/index.js +81 -0
  864. nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/package.json +48 -0
  865. nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/route.js +97 -0
  866. nodejs_wheel/lib/node_modules/npm/node_modules/color-name/LICENSE +8 -0
  867. nodejs_wheel/lib/node_modules/npm/node_modules/color-name/index.js +152 -0
  868. nodejs_wheel/lib/node_modules/npm/node_modules/color-name/package.json +28 -0
  869. nodejs_wheel/lib/node_modules/npm/node_modules/color-support/LICENSE +15 -0
  870. nodejs_wheel/lib/node_modules/npm/node_modules/color-support/README.md +129 -0
  871. nodejs_wheel/lib/node_modules/npm/node_modules/color-support/bin.js +3 -0
  872. nodejs_wheel/lib/node_modules/npm/node_modules/color-support/browser.js +14 -0
  873. nodejs_wheel/lib/node_modules/npm/node_modules/color-support/index.js +134 -0
  874. nodejs_wheel/lib/node_modules/npm/node_modules/color-support/package.json +36 -0
  875. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/LICENSE +21 -0
  876. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/Makefile +9 -0
  877. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/columnify.js +306 -0
  878. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/index.js +297 -0
  879. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/package.json +53 -0
  880. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/utils.js +193 -0
  881. nodejs_wheel/lib/node_modules/npm/node_modules/columnify/width.js +6 -0
  882. nodejs_wheel/lib/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
  883. nodejs_wheel/lib/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
  884. nodejs_wheel/lib/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
  885. nodejs_wheel/lib/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
  886. nodejs_wheel/lib/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
  887. nodejs_wheel/lib/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
  888. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
  889. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
  890. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
  891. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
  892. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
  893. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  894. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  895. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
  896. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
  897. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
  898. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
  899. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
  900. nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
  901. nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
  902. nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/README.md +201 -0
  903. nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
  904. nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
  905. nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
  906. nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/package.json +51 -0
  907. nodejs_wheel/lib/node_modules/npm/node_modules/debug/LICENSE +20 -0
  908. nodejs_wheel/lib/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
  909. nodejs_wheel/lib/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
  910. nodejs_wheel/lib/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
  911. nodejs_wheel/lib/node_modules/npm/node_modules/debug/package.json +59 -0
  912. nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/browser.js +269 -0
  913. nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/common.js +274 -0
  914. nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/index.js +10 -0
  915. nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/node.js +263 -0
  916. nodejs_wheel/lib/node_modules/npm/node_modules/defaults/LICENSE +22 -0
  917. nodejs_wheel/lib/node_modules/npm/node_modules/defaults/index.js +13 -0
  918. nodejs_wheel/lib/node_modules/npm/node_modules/defaults/package.json +33 -0
  919. nodejs_wheel/lib/node_modules/npm/node_modules/defaults/test.js +34 -0
  920. nodejs_wheel/lib/node_modules/npm/node_modules/diff/CONTRIBUTING.md +36 -0
  921. nodejs_wheel/lib/node_modules/npm/node_modules/diff/LICENSE +29 -0
  922. nodejs_wheel/lib/node_modules/npm/node_modules/diff/dist/diff.js +1730 -0
  923. nodejs_wheel/lib/node_modules/npm/node_modules/diff/dist/diff.min.js +1 -0
  924. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
  925. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
  926. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
  927. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/base.js +358 -0
  928. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
  929. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
  930. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
  931. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/line.js +94 -0
  932. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
  933. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
  934. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/index.es6.js +1699 -0
  935. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/index.js +234 -0
  936. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/index.mjs +1699 -0
  937. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
  938. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/create.js +276 -0
  939. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
  940. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
  941. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/reverse.js +63 -0
  942. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
  943. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
  944. nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
  945. nodejs_wheel/lib/node_modules/npm/node_modules/diff/package.json +89 -0
  946. nodejs_wheel/lib/node_modules/npm/node_modules/diff/release-notes.md +317 -0
  947. nodejs_wheel/lib/node_modules/npm/node_modules/diff/runtime.js +3 -0
  948. nodejs_wheel/lib/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
  949. nodejs_wheel/lib/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
  950. nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  951. nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
  952. nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
  953. nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
  954. nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
  955. nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
  956. nodejs_wheel/lib/node_modules/npm/node_modules/encoding/LICENSE +16 -0
  957. nodejs_wheel/lib/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
  958. nodejs_wheel/lib/node_modules/npm/node_modules/encoding/package.json +18 -0
  959. nodejs_wheel/lib/node_modules/npm/node_modules/encoding/test/test.js +49 -0
  960. nodejs_wheel/lib/node_modules/npm/node_modules/env-paths/index.js +74 -0
  961. nodejs_wheel/lib/node_modules/npm/node_modules/env-paths/license +9 -0
  962. nodejs_wheel/lib/node_modules/npm/node_modules/env-paths/package.json +45 -0
  963. nodejs_wheel/lib/node_modules/npm/node_modules/err-code/bower.json +30 -0
  964. nodejs_wheel/lib/node_modules/npm/node_modules/err-code/index.js +47 -0
  965. nodejs_wheel/lib/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
  966. nodejs_wheel/lib/node_modules/npm/node_modules/err-code/package.json +34 -0
  967. nodejs_wheel/lib/node_modules/npm/node_modules/err-code/test/test.js +159 -0
  968. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
  969. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
  970. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
  971. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
  972. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
  973. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
  974. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
  975. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
  976. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
  977. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
  978. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
  979. nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
  980. nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
  981. nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
  982. nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
  983. nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
  984. nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
  985. nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
  986. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
  987. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
  988. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
  989. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
  990. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
  991. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
  992. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
  993. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
  994. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
  995. nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/package.json +83 -0
  996. nodejs_wheel/lib/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
  997. nodejs_wheel/lib/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
  998. nodejs_wheel/lib/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
  999. nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
  1000. nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
  1001. nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/index.js +5 -0
  1002. nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/package.json +87 -0
  1003. nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
  1004. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
  1005. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
  1006. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
  1007. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
  1008. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
  1009. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
  1010. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
  1011. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
  1012. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
  1013. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
  1014. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
  1015. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
  1016. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
  1017. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
  1018. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
  1019. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
  1020. nodejs_wheel/lib/node_modules/npm/node_modules/gauge/package.json +68 -0
  1021. nodejs_wheel/lib/node_modules/npm/node_modules/glob/LICENSE +15 -0
  1022. nodejs_wheel/lib/node_modules/npm/node_modules/glob/README.md +1220 -0
  1023. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
  1024. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
  1025. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
  1026. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
  1027. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
  1028. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
  1029. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
  1030. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
  1031. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
  1032. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
  1033. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +114 -0
  1034. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
  1035. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
  1036. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
  1037. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
  1038. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
  1039. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/package.json +3 -0
  1040. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
  1041. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
  1042. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
  1043. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
  1044. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
  1045. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
  1046. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
  1047. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
  1048. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
  1049. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
  1050. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +378 -0
  1051. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
  1052. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
  1053. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
  1054. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
  1055. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
  1056. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
  1057. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
  1058. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
  1059. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
  1060. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
  1061. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
  1062. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
  1063. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
  1064. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
  1065. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
  1066. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.js +110 -0
  1067. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
  1068. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
  1069. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
  1070. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
  1071. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
  1072. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/package.json +3 -0
  1073. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
  1074. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
  1075. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
  1076. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
  1077. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
  1078. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
  1079. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
  1080. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
  1081. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
  1082. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
  1083. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.js +372 -0
  1084. nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
  1085. nodejs_wheel/lib/node_modules/npm/node_modules/glob/package.json +98 -0
  1086. nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
  1087. nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
  1088. nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
  1089. nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
  1090. nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
  1091. nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
  1092. nodejs_wheel/lib/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
  1093. nodejs_wheel/lib/node_modules/npm/node_modules/has-unicode/index.js +16 -0
  1094. nodejs_wheel/lib/node_modules/npm/node_modules/has-unicode/package.json +30 -0
  1095. nodejs_wheel/lib/node_modules/npm/node_modules/hasown/LICENSE +21 -0
  1096. nodejs_wheel/lib/node_modules/npm/node_modules/hasown/index.js +8 -0
  1097. nodejs_wheel/lib/node_modules/npm/node_modules/hasown/package.json +92 -0
  1098. nodejs_wheel/lib/node_modules/npm/node_modules/hasown/tsconfig.json +6 -0
  1099. nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
  1100. nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
  1101. nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
  1102. nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
  1103. nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
  1104. nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
  1105. nodejs_wheel/lib/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
  1106. nodejs_wheel/lib/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
  1107. nodejs_wheel/lib/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
  1108. nodejs_wheel/lib/node_modules/npm/node_modules/http-proxy-agent/LICENSE +22 -0
  1109. nodejs_wheel/lib/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +148 -0
  1110. nodejs_wheel/lib/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
  1111. nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/LICENSE +22 -0
  1112. nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +175 -0
  1113. nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
  1114. nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
  1115. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
  1116. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  1117. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  1118. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
  1119. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
  1120. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1121. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1122. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  1123. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1124. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1125. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1126. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1127. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1128. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1129. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1130. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1131. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
  1132. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
  1133. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1134. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1135. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
  1136. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
  1137. nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
  1138. nodejs_wheel/lib/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
  1139. nodejs_wheel/lib/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
  1140. nodejs_wheel/lib/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
  1141. nodejs_wheel/lib/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
  1142. nodejs_wheel/lib/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  1143. nodejs_wheel/lib/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
  1144. nodejs_wheel/lib/node_modules/npm/node_modules/indent-string/index.js +35 -0
  1145. nodejs_wheel/lib/node_modules/npm/node_modules/indent-string/license +9 -0
  1146. nodejs_wheel/lib/node_modules/npm/node_modules/indent-string/package.json +37 -0
  1147. nodejs_wheel/lib/node_modules/npm/node_modules/ini/LICENSE +15 -0
  1148. nodejs_wheel/lib/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
  1149. nodejs_wheel/lib/node_modules/npm/node_modules/ini/package.json +45 -0
  1150. nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
  1151. nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
  1152. nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +144 -0
  1153. nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/package.json +65 -0
  1154. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/LICENSE +19 -0
  1155. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/address-error.js +14 -0
  1156. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/common.js +26 -0
  1157. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/ip-address.js +35 -0
  1158. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/ipv4.js +326 -0
  1159. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/ipv6.js +998 -0
  1160. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v4/constants.js +8 -0
  1161. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v6/constants.js +76 -0
  1162. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v6/helpers.js +48 -0
  1163. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v6/regular-expressions.js +96 -0
  1164. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/CONTRIBUTORS.md +26 -0
  1165. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/LICENSE +24 -0
  1166. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/dist/.gitattributes +4 -0
  1167. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/dist/angular-sprintf.min.js +3 -0
  1168. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/dist/sprintf.min.js +3 -0
  1169. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/package.json +35 -0
  1170. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/src/angular-sprintf.js +24 -0
  1171. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/src/sprintf.js +231 -0
  1172. nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/package.json +87 -0
  1173. nodejs_wheel/lib/node_modules/npm/node_modules/ip-regex/index.js +36 -0
  1174. nodejs_wheel/lib/node_modules/npm/node_modules/ip-regex/license +9 -0
  1175. nodejs_wheel/lib/node_modules/npm/node_modules/ip-regex/package.json +47 -0
  1176. nodejs_wheel/lib/node_modules/npm/node_modules/is-cidr/index.js +9 -0
  1177. nodejs_wheel/lib/node_modules/npm/node_modules/is-cidr/package.json +33 -0
  1178. nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
  1179. nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/core.json +158 -0
  1180. nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/index.js +69 -0
  1181. nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/package.json +73 -0
  1182. nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
  1183. nodejs_wheel/lib/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
  1184. nodejs_wheel/lib/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
  1185. nodejs_wheel/lib/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
  1186. nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
  1187. nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/index.js +6 -0
  1188. nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/package.json +35 -0
  1189. nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/test.js +16 -0
  1190. nodejs_wheel/lib/node_modules/npm/node_modules/isexe/LICENSE +15 -0
  1191. nodejs_wheel/lib/node_modules/npm/node_modules/isexe/index.js +57 -0
  1192. nodejs_wheel/lib/node_modules/npm/node_modules/isexe/mode.js +41 -0
  1193. nodejs_wheel/lib/node_modules/npm/node_modules/isexe/package.json +31 -0
  1194. nodejs_wheel/lib/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
  1195. nodejs_wheel/lib/node_modules/npm/node_modules/isexe/windows.js +42 -0
  1196. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
  1197. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
  1198. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
  1199. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
  1200. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
  1201. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
  1202. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
  1203. nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/package.json +94 -0
  1204. nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/LICENSE +40 -0
  1205. nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/example.html +11 -0
  1206. nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/example.js +5 -0
  1207. nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/index.js +1361 -0
  1208. nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/package.json +21 -0
  1209. nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/test/es6-import.js +3 -0
  1210. nodejs_wheel/lib/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
  1211. nodejs_wheel/lib/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
  1212. nodejs_wheel/lib/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
  1213. nodejs_wheel/lib/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
  1214. nodejs_wheel/lib/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
  1215. nodejs_wheel/lib/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
  1216. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
  1217. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
  1218. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  1219. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
  1220. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/package.json +22 -0
  1221. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
  1222. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
  1223. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
  1224. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
  1225. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
  1226. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
  1227. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
  1228. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
  1229. nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
  1230. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
  1231. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
  1232. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
  1233. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/package.json +33 -0
  1234. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
  1235. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
  1236. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
  1237. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
  1238. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
  1239. nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
  1240. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
  1241. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
  1242. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
  1243. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
  1244. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
  1245. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/README.md +95 -0
  1246. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
  1247. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
  1248. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
  1249. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
  1250. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
  1251. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
  1252. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
  1253. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
  1254. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
  1255. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
  1256. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
  1257. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
  1258. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
  1259. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
  1260. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
  1261. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
  1262. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
  1263. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
  1264. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
  1265. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
  1266. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
  1267. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
  1268. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
  1269. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
  1270. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
  1271. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
  1272. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
  1273. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
  1274. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
  1275. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
  1276. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
  1277. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
  1278. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
  1279. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
  1280. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
  1281. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
  1282. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
  1283. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
  1284. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
  1285. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
  1286. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
  1287. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
  1288. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
  1289. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
  1290. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
  1291. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
  1292. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
  1293. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
  1294. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
  1295. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
  1296. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
  1297. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
  1298. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
  1299. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
  1300. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
  1301. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
  1302. nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
  1303. nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
  1304. nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1446 -0
  1305. nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
  1306. nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1442 -0
  1307. nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
  1308. nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/package.json +118 -0
  1309. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
  1310. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
  1311. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
  1312. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
  1313. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
  1314. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
  1315. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
  1316. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
  1317. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
  1318. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
  1319. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
  1320. nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
  1321. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
  1322. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  1323. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/ast.js +592 -0
  1324. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
  1325. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/escape.js +22 -0
  1326. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/index.js +1016 -0
  1327. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/package.json +3 -0
  1328. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/unescape.js +24 -0
  1329. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  1330. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/ast.js +588 -0
  1331. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
  1332. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/escape.js +18 -0
  1333. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/index.js +1000 -0
  1334. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/package.json +3 -0
  1335. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/unescape.js +20 -0
  1336. nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/package.json +82 -0
  1337. nodejs_wheel/lib/node_modules/npm/node_modules/minipass/LICENSE +15 -0
  1338. nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
  1339. nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
  1340. nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
  1341. nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
  1342. nodejs_wheel/lib/node_modules/npm/node_modules/minipass/package.json +82 -0
  1343. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
  1344. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
  1345. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
  1346. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
  1347. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
  1348. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
  1349. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
  1350. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
  1351. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
  1352. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
  1353. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
  1354. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
  1355. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
  1356. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
  1357. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
  1358. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
  1359. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
  1360. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
  1361. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
  1362. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
  1363. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
  1364. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
  1365. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
  1366. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
  1367. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
  1368. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
  1369. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
  1370. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
  1371. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
  1372. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
  1373. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
  1374. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
  1375. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
  1376. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
  1377. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
  1378. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
  1379. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
  1380. nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
  1381. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
  1382. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/constants.js +115 -0
  1383. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/index.js +348 -0
  1384. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
  1385. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
  1386. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
  1387. nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/package.json +42 -0
  1388. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
  1389. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
  1390. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/index.js +31 -0
  1391. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
  1392. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
  1393. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
  1394. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
  1395. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
  1396. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
  1397. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/package.json +44 -0
  1398. nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
  1399. nodejs_wheel/lib/node_modules/npm/node_modules/ms/index.js +162 -0
  1400. nodejs_wheel/lib/node_modules/npm/node_modules/ms/license.md +21 -0
  1401. nodejs_wheel/lib/node_modules/npm/node_modules/ms/package.json +38 -0
  1402. nodejs_wheel/lib/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
  1403. nodejs_wheel/lib/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
  1404. nodejs_wheel/lib/node_modules/npm/node_modules/mute-stream/package.json +52 -0
  1405. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
  1406. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
  1407. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/index.js +82 -0
  1408. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
  1409. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
  1410. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
  1411. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
  1412. nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/package.json +42 -0
  1413. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/.release-please-manifest.json +3 -0
  1414. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +933 -0
  1415. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
  1416. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
  1417. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/README.md +263 -0
  1418. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
  1419. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
  1420. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
  1421. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
  1422. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
  1423. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
  1424. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
  1425. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
  1426. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
  1427. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
  1428. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
  1429. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
  1430. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
  1431. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
  1432. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
  1433. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
  1434. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
  1435. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
  1436. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
  1437. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
  1438. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
  1439. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
  1440. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  1441. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
  1442. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
  1443. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
  1444. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
  1445. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
  1446. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
  1447. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
  1448. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +57 -0
  1449. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
  1450. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3977 -0
  1451. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
  1452. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
  1453. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
  1454. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
  1455. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
  1456. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3113 -0
  1457. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
  1458. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
  1459. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1259 -0
  1460. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
  1461. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
  1462. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
  1463. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
  1464. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
  1465. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
  1466. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
  1467. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
  1468. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
  1469. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
  1470. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
  1471. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
  1472. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
  1473. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
  1474. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
  1475. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
  1476. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
  1477. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
  1478. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
  1479. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
  1480. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
  1481. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
  1482. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
  1483. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
  1484. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
  1485. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
  1486. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
  1487. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
  1488. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
  1489. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
  1490. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js +308 -0
  1491. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
  1492. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
  1493. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
  1494. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
  1495. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +542 -0
  1496. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
  1497. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
  1498. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
  1499. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
  1500. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
  1501. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
  1502. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
  1503. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
  1504. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
  1505. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/package.json +51 -0
  1506. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/release-please-config.json +40 -0
  1507. nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
  1508. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/LICENSE +15 -0
  1509. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/README.md +213 -0
  1510. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
  1511. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
  1512. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
  1513. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
  1514. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
  1515. nodejs_wheel/lib/node_modules/npm/node_modules/nopt/package.json +51 -0
  1516. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
  1517. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
  1518. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
  1519. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
  1520. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
  1521. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
  1522. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
  1523. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
  1524. nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
  1525. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
  1526. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
  1527. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
  1528. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
  1529. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
  1530. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
  1531. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
  1532. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
  1533. nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
  1534. nodejs_wheel/lib/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
  1535. nodejs_wheel/lib/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
  1536. nodejs_wheel/lib/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
  1537. nodejs_wheel/lib/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
  1538. nodejs_wheel/lib/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
  1539. nodejs_wheel/lib/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
  1540. nodejs_wheel/lib/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
  1541. nodejs_wheel/lib/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
  1542. nodejs_wheel/lib/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
  1543. nodejs_wheel/lib/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
  1544. nodejs_wheel/lib/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
  1545. nodejs_wheel/lib/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
  1546. nodejs_wheel/lib/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
  1547. nodejs_wheel/lib/node_modules/npm/node_modules/npm-packlist/lib/index.js +456 -0
  1548. nodejs_wheel/lib/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
  1549. nodejs_wheel/lib/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
  1550. nodejs_wheel/lib/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
  1551. nodejs_wheel/lib/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
  1552. nodejs_wheel/lib/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
  1553. nodejs_wheel/lib/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
  1554. nodejs_wheel/lib/node_modules/npm/node_modules/npm-profile/package.json +57 -0
  1555. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
  1556. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
  1557. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
  1558. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
  1559. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
  1560. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +252 -0
  1561. nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/package.json +68 -0
  1562. nodejs_wheel/lib/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
  1563. nodejs_wheel/lib/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
  1564. nodejs_wheel/lib/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
  1565. nodejs_wheel/lib/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
  1566. nodejs_wheel/lib/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
  1567. nodejs_wheel/lib/node_modules/npm/node_modules/npmlog/package.json +52 -0
  1568. nodejs_wheel/lib/node_modules/npm/node_modules/p-map/index.js +81 -0
  1569. nodejs_wheel/lib/node_modules/npm/node_modules/p-map/license +9 -0
  1570. nodejs_wheel/lib/node_modules/npm/node_modules/p-map/package.json +53 -0
  1571. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/LICENSE +15 -0
  1572. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/README.md +285 -0
  1573. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
  1574. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
  1575. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
  1576. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
  1577. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
  1578. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
  1579. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/registry.js +369 -0
  1580. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
  1581. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
  1582. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
  1583. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
  1584. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
  1585. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
  1586. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
  1587. nodejs_wheel/lib/node_modules/npm/node_modules/pacote/package.json +79 -0
  1588. nodejs_wheel/lib/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
  1589. nodejs_wheel/lib/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
  1590. nodejs_wheel/lib/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
  1591. nodejs_wheel/lib/node_modules/npm/node_modules/path-key/index.js +16 -0
  1592. nodejs_wheel/lib/node_modules/npm/node_modules/path-key/license +9 -0
  1593. nodejs_wheel/lib/node_modules/npm/node_modules/path-key/package.json +39 -0
  1594. nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
  1595. nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/commonjs/index.js +2020 -0
  1596. nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/commonjs/package.json +3 -0
  1597. nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/esm/index.js +1985 -0
  1598. nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/esm/package.json +3 -0
  1599. nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/package.json +85 -0
  1600. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
  1601. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
  1602. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
  1603. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
  1604. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
  1605. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
  1606. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
  1607. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
  1608. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
  1609. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
  1610. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
  1611. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
  1612. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
  1613. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
  1614. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
  1615. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
  1616. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
  1617. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
  1618. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
  1619. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
  1620. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
  1621. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
  1622. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
  1623. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
  1624. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
  1625. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
  1626. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
  1627. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
  1628. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
  1629. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
  1630. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
  1631. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
  1632. nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/package.json +80 -0
  1633. nodejs_wheel/lib/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
  1634. nodejs_wheel/lib/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
  1635. nodejs_wheel/lib/node_modules/npm/node_modules/proc-log/package.json +44 -0
  1636. nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
  1637. nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
  1638. nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
  1639. nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
  1640. nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
  1641. nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/commonjs/index.js +87 -0
  1642. nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/commonjs/package.json +3 -0
  1643. nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/esm/index.js +60 -0
  1644. nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/esm/package.json +3 -0
  1645. nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/package.json +66 -0
  1646. nodejs_wheel/lib/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
  1647. nodejs_wheel/lib/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
  1648. nodejs_wheel/lib/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
  1649. nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
  1650. nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/index.js +52 -0
  1651. nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/package.json +37 -0
  1652. nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
  1653. nodejs_wheel/lib/node_modules/npm/node_modules/promzard/LICENSE +15 -0
  1654. nodejs_wheel/lib/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
  1655. nodejs_wheel/lib/node_modules/npm/node_modules/promzard/package.json +49 -0
  1656. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
  1657. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
  1658. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
  1659. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
  1660. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
  1661. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
  1662. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
  1663. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
  1664. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
  1665. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
  1666. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
  1667. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
  1668. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
  1669. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
  1670. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
  1671. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
  1672. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
  1673. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
  1674. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
  1675. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
  1676. nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
  1677. nodejs_wheel/lib/node_modules/npm/node_modules/read/LICENSE +15 -0
  1678. nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/commonjs/package.json +3 -0
  1679. nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/commonjs/read.js +95 -0
  1680. nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/esm/package.json +3 -0
  1681. nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/esm/read.js +88 -0
  1682. nodejs_wheel/lib/node_modules/npm/node_modules/read/package.json +87 -0
  1683. nodejs_wheel/lib/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
  1684. nodejs_wheel/lib/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
  1685. nodejs_wheel/lib/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
  1686. nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
  1687. nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
  1688. nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json/package.json +65 -0
  1689. nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
  1690. nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
  1691. nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
  1692. nodejs_wheel/lib/node_modules/npm/node_modules/retry/License +21 -0
  1693. nodejs_wheel/lib/node_modules/npm/node_modules/retry/Makefile +18 -0
  1694. nodejs_wheel/lib/node_modules/npm/node_modules/retry/equation.gif +0 -0
  1695. nodejs_wheel/lib/node_modules/npm/node_modules/retry/example/dns.js +31 -0
  1696. nodejs_wheel/lib/node_modules/npm/node_modules/retry/example/stop.js +40 -0
  1697. nodejs_wheel/lib/node_modules/npm/node_modules/retry/index.js +1 -0
  1698. nodejs_wheel/lib/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
  1699. nodejs_wheel/lib/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
  1700. nodejs_wheel/lib/node_modules/npm/node_modules/retry/package.json +32 -0
  1701. nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/common.js +10 -0
  1702. nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
  1703. nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
  1704. nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
  1705. nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
  1706. nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
  1707. nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  1708. nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
  1709. nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
  1710. nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
  1711. nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
  1712. nodejs_wheel/lib/node_modules/npm/node_modules/semver/LICENSE +15 -0
  1713. nodejs_wheel/lib/node_modules/npm/node_modules/semver/README.md +640 -0
  1714. nodejs_wheel/lib/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
  1715. nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
  1716. nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/index.js +5 -0
  1717. nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/range.js +539 -0
  1718. nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
  1719. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
  1720. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
  1721. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/coerce.js +60 -0
  1722. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
  1723. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
  1724. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
  1725. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
  1726. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
  1727. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
  1728. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
  1729. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
  1730. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
  1731. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
  1732. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/major.js +3 -0
  1733. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
  1734. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
  1735. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
  1736. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
  1737. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
  1738. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
  1739. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
  1740. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
  1741. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
  1742. nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
  1743. nodejs_wheel/lib/node_modules/npm/node_modules/semver/index.js +89 -0
  1744. nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
  1745. nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
  1746. nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
  1747. nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
  1748. nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/re.js +217 -0
  1749. nodejs_wheel/lib/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
  1750. nodejs_wheel/lib/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
  1751. nodejs_wheel/lib/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
  1752. nodejs_wheel/lib/node_modules/npm/node_modules/semver/package.json +78 -0
  1753. nodejs_wheel/lib/node_modules/npm/node_modules/semver/preload.js +2 -0
  1754. nodejs_wheel/lib/node_modules/npm/node_modules/semver/range.bnf +16 -0
  1755. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
  1756. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
  1757. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
  1758. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
  1759. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
  1760. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
  1761. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
  1762. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
  1763. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
  1764. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
  1765. nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
  1766. nodejs_wheel/lib/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
  1767. nodejs_wheel/lib/node_modules/npm/node_modules/set-blocking/index.js +7 -0
  1768. nodejs_wheel/lib/node_modules/npm/node_modules/set-blocking/package.json +42 -0
  1769. nodejs_wheel/lib/node_modules/npm/node_modules/shebang-command/index.js +19 -0
  1770. nodejs_wheel/lib/node_modules/npm/node_modules/shebang-command/license +9 -0
  1771. nodejs_wheel/lib/node_modules/npm/node_modules/shebang-command/package.json +34 -0
  1772. nodejs_wheel/lib/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
  1773. nodejs_wheel/lib/node_modules/npm/node_modules/shebang-regex/license +9 -0
  1774. nodejs_wheel/lib/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
  1775. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
  1776. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
  1777. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
  1778. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
  1779. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
  1780. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  1781. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
  1782. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
  1783. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
  1784. nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/package.json +106 -0
  1785. nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
  1786. nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/dist/config.js +116 -0
  1787. nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
  1788. nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/dist/sigstore.js +103 -0
  1789. nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/package.json +47 -0
  1790. nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
  1791. nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
  1792. nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
  1793. nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
  1794. nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
  1795. nodejs_wheel/lib/node_modules/npm/node_modules/socks/LICENSE +20 -0
  1796. nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
  1797. nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/constants.js +108 -0
  1798. nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/helpers.js +166 -0
  1799. nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
  1800. nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
  1801. nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/index.js +18 -0
  1802. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
  1803. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
  1804. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
  1805. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
  1806. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
  1807. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
  1808. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
  1809. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/index.md +5 -0
  1810. nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
  1811. nodejs_wheel/lib/node_modules/npm/node_modules/socks/package.json +58 -0
  1812. nodejs_wheel/lib/node_modules/npm/node_modules/socks-proxy-agent/LICENSE +22 -0
  1813. nodejs_wheel/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +186 -0
  1814. nodejs_wheel/lib/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
  1815. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
  1816. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
  1817. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/AUTHORS +4 -0
  1818. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/LICENSE +22 -0
  1819. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/index.js +8 -0
  1820. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/package.json +39 -0
  1821. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/parse.js +138 -0
  1822. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/scan.js +131 -0
  1823. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
  1824. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-exceptions/deprecated.json +3 -0
  1825. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-exceptions/index.json +68 -0
  1826. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-exceptions/package.json +19 -0
  1827. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
  1828. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
  1829. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
  1830. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
  1831. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
  1832. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
  1833. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
  1834. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-license-ids/index.json +608 -0
  1835. nodejs_wheel/lib/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
  1836. nodejs_wheel/lib/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
  1837. nodejs_wheel/lib/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
  1838. nodejs_wheel/lib/node_modules/npm/node_modules/ssri/package.json +65 -0
  1839. nodejs_wheel/lib/node_modules/npm/node_modules/string-width/index.js +47 -0
  1840. nodejs_wheel/lib/node_modules/npm/node_modules/string-width/license +9 -0
  1841. nodejs_wheel/lib/node_modules/npm/node_modules/string-width/package.json +56 -0
  1842. nodejs_wheel/lib/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
  1843. nodejs_wheel/lib/node_modules/npm/node_modules/string-width-cjs/license +9 -0
  1844. nodejs_wheel/lib/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
  1845. nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi/index.js +4 -0
  1846. nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi/license +9 -0
  1847. nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi/package.json +54 -0
  1848. nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
  1849. nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
  1850. nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
  1851. nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/browser.js +30 -0
  1852. nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/index.js +182 -0
  1853. nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/license +9 -0
  1854. nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/package.json +60 -0
  1855. nodejs_wheel/lib/node_modules/npm/node_modules/tar/LICENSE +15 -0
  1856. nodejs_wheel/lib/node_modules/npm/node_modules/tar/index.js +18 -0
  1857. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/create.js +111 -0
  1858. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
  1859. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
  1860. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/header.js +304 -0
  1861. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
  1862. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
  1863. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/list.js +139 -0
  1864. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
  1865. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
  1866. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
  1867. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
  1868. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
  1869. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
  1870. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
  1871. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
  1872. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
  1873. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
  1874. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
  1875. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
  1876. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/types.js +44 -0
  1877. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/unpack.js +923 -0
  1878. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/update.js +40 -0
  1879. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
  1880. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
  1881. nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
  1882. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
  1883. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
  1884. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
  1885. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
  1886. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
  1887. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
  1888. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
  1889. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
  1890. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +700 -0
  1891. nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
  1892. nodejs_wheel/lib/node_modules/npm/node_modules/tar/package.json +70 -0
  1893. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/LICENSE +18 -0
  1894. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/align.js +8 -0
  1895. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/center.js +8 -0
  1896. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
  1897. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
  1898. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/table.js +6 -0
  1899. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/index.js +86 -0
  1900. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/package.json +44 -0
  1901. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/align.js +18 -0
  1902. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
  1903. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/center.js +18 -0
  1904. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
  1905. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
  1906. nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/table.js +14 -0
  1907. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
  1908. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
  1909. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
  1910. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
  1911. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
  1912. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
  1913. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
  1914. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
  1915. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
  1916. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
  1917. nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
  1918. nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
  1919. nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
  1920. nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
  1921. nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
  1922. nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
  1923. nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/package.json +51 -0
  1924. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
  1925. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
  1926. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
  1927. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
  1928. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
  1929. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
  1930. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/updater.js +343 -0
  1931. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
  1932. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
  1933. nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/package.json +43 -0
  1934. nodejs_wheel/lib/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
  1935. nodejs_wheel/lib/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
  1936. nodejs_wheel/lib/node_modules/npm/node_modules/unique-filename/package.json +51 -0
  1937. nodejs_wheel/lib/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
  1938. nodejs_wheel/lib/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
  1939. nodejs_wheel/lib/node_modules/npm/node_modules/unique-slug/package.json +47 -0
  1940. nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
  1941. nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
  1942. nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
  1943. nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
  1944. nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
  1945. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
  1946. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
  1947. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/AUTHORS +4 -0
  1948. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/LICENSE +22 -0
  1949. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/index.js +8 -0
  1950. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/package.json +39 -0
  1951. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/parse.js +138 -0
  1952. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/scan.js +131 -0
  1953. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
  1954. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
  1955. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
  1956. nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
  1957. nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
  1958. nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
  1959. nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
  1960. nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
  1961. nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
  1962. nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
  1963. nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
  1964. nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
  1965. nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
  1966. nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/index.js +99 -0
  1967. nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/package.json +42 -0
  1968. nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
  1969. nodejs_wheel/lib/node_modules/npm/node_modules/which/LICENSE +15 -0
  1970. nodejs_wheel/lib/node_modules/npm/node_modules/which/README.md +51 -0
  1971. nodejs_wheel/lib/node_modules/npm/node_modules/which/bin/which.js +52 -0
  1972. nodejs_wheel/lib/node_modules/npm/node_modules/which/lib/index.js +111 -0
  1973. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
  1974. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
  1975. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
  1976. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
  1977. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
  1978. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
  1979. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
  1980. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
  1981. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
  1982. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
  1983. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
  1984. nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
  1985. nodejs_wheel/lib/node_modules/npm/node_modules/which/package.json +57 -0
  1986. nodejs_wheel/lib/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
  1987. nodejs_wheel/lib/node_modules/npm/node_modules/wide-align/align.js +65 -0
  1988. nodejs_wheel/lib/node_modules/npm/node_modules/wide-align/package.json +33 -0
  1989. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
  1990. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/license +9 -0
  1991. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +8 -0
  1992. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/license +9 -0
  1993. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +58 -0
  1994. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  1995. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  1996. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
  1997. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
  1998. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
  1999. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
  2000. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
  2001. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
  2002. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
  2003. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
  2004. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
  2005. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +14 -0
  2006. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/license +9 -0
  2007. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +57 -0
  2008. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
  2009. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
  2010. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
  2011. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
  2012. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
  2013. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
  2014. nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
  2015. nodejs_wheel/lib/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +5 -0
  2016. nodejs_wheel/lib/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
  2017. nodejs_wheel/lib/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
  2018. nodejs_wheel/lib/node_modules/npm/node_modules/yallist/LICENSE +15 -0
  2019. nodejs_wheel/lib/node_modules/npm/node_modules/yallist/iterator.js +8 -0
  2020. nodejs_wheel/lib/node_modules/npm/node_modules/yallist/package.json +29 -0
  2021. nodejs_wheel/lib/node_modules/npm/node_modules/yallist/yallist.js +426 -0
  2022. nodejs_wheel/lib/node_modules/npm/package.json +268 -0
  2023. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/audit.js.test.cjs +437 -0
  2024. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/cache.js.test.cjs +63 -0
  2025. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/completion.js.test.cjs +232 -0
  2026. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/config.js.test.cjs +427 -0
  2027. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/diff.js.test.cjs +88 -0
  2028. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/dist-tag.js.test.cjs +157 -0
  2029. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/doctor.js.test.cjs +1647 -0
  2030. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/fund.js.test.cjs +92 -0
  2031. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/init.js.test.cjs +24 -0
  2032. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/link.js.test.cjs +55 -0
  2033. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/ls.js.test.cjs +717 -0
  2034. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/outdated.js.test.cjs +239 -0
  2035. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/pack.js.test.cjs +150 -0
  2036. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/profile.js.test.cjs +116 -0
  2037. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/publish.js.test.cjs +701 -0
  2038. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/query.js.test.cjs +316 -0
  2039. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/sbom.js.test.cjs +1410 -0
  2040. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/search.js.test.cjs +146 -0
  2041. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/shrinkwrap.js.test.cjs +396 -0
  2042. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/stars.js.test.cjs +14 -0
  2043. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/team.js.test.cjs +84 -0
  2044. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/version.js.test.cjs +78 -0
  2045. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/view.js.test.cjs +608 -0
  2046. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/docs.js.test.cjs +4503 -0
  2047. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/npm.js.test.cjs +450 -0
  2048. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/error-message.js.test.cjs +1768 -0
  2049. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/exit-handler.js.test.cjs +67 -0
  2050. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/explain-dep.js.test.cjs +249 -0
  2051. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/explain-eresolve.js.test.cjs +655 -0
  2052. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/log-file.js.test.cjs +70 -0
  2053. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs +23 -0
  2054. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/open-url.js.test.cjs +25 -0
  2055. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/reify-output.js.test.cjs +1652 -0
  2056. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/sbom-cyclonedx.js.test.cjs +1076 -0
  2057. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/sbom-spdx.js.test.cjs +641 -0
  2058. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/tar.js.test.cjs +66 -0
  2059. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/update-notifier.js.test.cjs +102 -0
  2060. nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/validate-lockfile.js.test.cjs +35 -0
  2061. nodejs_wheel/lib/node_modules/npm/test/bin/npm-cli.js +11 -0
  2062. nodejs_wheel/lib/node_modules/npm/test/bin/npx-cli.js +99 -0
  2063. nodejs_wheel/lib/node_modules/npm/test/bin/windows-shims.js +276 -0
  2064. nodejs_wheel/lib/node_modules/npm/test/fixtures/clean-snapshot.js +53 -0
  2065. nodejs_wheel/lib/node_modules/npm/test/fixtures/eresolve-explanations.js +559 -0
  2066. nodejs_wheel/lib/node_modules/npm/test/fixtures/libnpmsearch-stream-result.js +288 -0
  2067. nodejs_wheel/lib/node_modules/npm/test/fixtures/merge-conflict.json +36 -0
  2068. nodejs_wheel/lib/node_modules/npm/test/fixtures/mock-logs.js +131 -0
  2069. nodejs_wheel/lib/node_modules/npm/test/fixtures/mock-npm.js +319 -0
  2070. nodejs_wheel/lib/node_modules/npm/test/fixtures/sandbox.js +336 -0
  2071. nodejs_wheel/lib/node_modules/npm/test/fixtures/tmock.js +27 -0
  2072. nodejs_wheel/lib/node_modules/npm/test/fixtures/tnock.js +17 -0
  2073. nodejs_wheel/lib/node_modules/npm/test/fixtures/tspawk.js +16 -0
  2074. nodejs_wheel/lib/node_modules/npm/test/index.js +20 -0
  2075. nodejs_wheel/lib/node_modules/npm/test/lib/arborist-cmd.js +218 -0
  2076. nodejs_wheel/lib/node_modules/npm/test/lib/cli-entry.js +163 -0
  2077. nodejs_wheel/lib/node_modules/npm/test/lib/cli.js +10 -0
  2078. nodejs_wheel/lib/node_modules/npm/test/lib/commands/access.js +385 -0
  2079. nodejs_wheel/lib/node_modules/npm/test/lib/commands/adduser.js +183 -0
  2080. nodejs_wheel/lib/node_modules/npm/test/lib/commands/audit.js +2161 -0
  2081. nodejs_wheel/lib/node_modules/npm/test/lib/commands/bugs.js +96 -0
  2082. nodejs_wheel/lib/node_modules/npm/test/lib/commands/cache.js +318 -0
  2083. nodejs_wheel/lib/node_modules/npm/test/lib/commands/ci.js +233 -0
  2084. nodejs_wheel/lib/node_modules/npm/test/lib/commands/completion.js +199 -0
  2085. nodejs_wheel/lib/node_modules/npm/test/lib/commands/config.js +573 -0
  2086. nodejs_wheel/lib/node_modules/npm/test/lib/commands/dedupe.js +96 -0
  2087. nodejs_wheel/lib/node_modules/npm/test/lib/commands/deprecate.js +171 -0
  2088. nodejs_wheel/lib/node_modules/npm/test/lib/commands/diff.js +1044 -0
  2089. nodejs_wheel/lib/node_modules/npm/test/lib/commands/dist-tag.js +376 -0
  2090. nodejs_wheel/lib/node_modules/npm/test/lib/commands/docs.js +163 -0
  2091. nodejs_wheel/lib/node_modules/npm/test/lib/commands/doctor.js +666 -0
  2092. nodejs_wheel/lib/node_modules/npm/test/lib/commands/edit.js +131 -0
  2093. nodejs_wheel/lib/node_modules/npm/test/lib/commands/exec.js +256 -0
  2094. nodejs_wheel/lib/node_modules/npm/test/lib/commands/explain.js +277 -0
  2095. nodejs_wheel/lib/node_modules/npm/test/lib/commands/explore.js +175 -0
  2096. nodejs_wheel/lib/node_modules/npm/test/lib/commands/find-dupes.js +84 -0
  2097. nodejs_wheel/lib/node_modules/npm/test/lib/commands/fund.js +824 -0
  2098. nodejs_wheel/lib/node_modules/npm/test/lib/commands/get.js +16 -0
  2099. nodejs_wheel/lib/node_modules/npm/test/lib/commands/help-search.js +90 -0
  2100. nodejs_wheel/lib/node_modules/npm/test/lib/commands/help.js +227 -0
  2101. nodejs_wheel/lib/node_modules/npm/test/lib/commands/hook.js +630 -0
  2102. nodejs_wheel/lib/node_modules/npm/test/lib/commands/init.js +432 -0
  2103. nodejs_wheel/lib/node_modules/npm/test/lib/commands/install-ci-test.js +65 -0
  2104. nodejs_wheel/lib/node_modules/npm/test/lib/commands/install-test.js +65 -0
  2105. nodejs_wheel/lib/node_modules/npm/test/lib/commands/install.js +290 -0
  2106. nodejs_wheel/lib/node_modules/npm/test/lib/commands/link.js +525 -0
  2107. nodejs_wheel/lib/node_modules/npm/test/lib/commands/ll.js +34 -0
  2108. nodejs_wheel/lib/node_modules/npm/test/lib/commands/login.js +159 -0
  2109. nodejs_wheel/lib/node_modules/npm/test/lib/commands/logout.js +154 -0
  2110. nodejs_wheel/lib/node_modules/npm/test/lib/commands/ls.js +5327 -0
  2111. nodejs_wheel/lib/node_modules/npm/test/lib/commands/org.js +570 -0
  2112. nodejs_wheel/lib/node_modules/npm/test/lib/commands/outdated.js +613 -0
  2113. nodejs_wheel/lib/node_modules/npm/test/lib/commands/owner.js +682 -0
  2114. nodejs_wheel/lib/node_modules/npm/test/lib/commands/pack.js +258 -0
  2115. nodejs_wheel/lib/node_modules/npm/test/lib/commands/ping.js +67 -0
  2116. nodejs_wheel/lib/node_modules/npm/test/lib/commands/pkg.js +718 -0
  2117. nodejs_wheel/lib/node_modules/npm/test/lib/commands/prefix.js +12 -0
  2118. nodejs_wheel/lib/node_modules/npm/test/lib/commands/profile.js +1120 -0
  2119. nodejs_wheel/lib/node_modules/npm/test/lib/commands/prune.js +21 -0
  2120. nodejs_wheel/lib/node_modules/npm/test/lib/commands/publish.js +906 -0
  2121. nodejs_wheel/lib/node_modules/npm/test/lib/commands/query.js +344 -0
  2122. nodejs_wheel/lib/node_modules/npm/test/lib/commands/rebuild.js +207 -0
  2123. nodejs_wheel/lib/node_modules/npm/test/lib/commands/repo.js +320 -0
  2124. nodejs_wheel/lib/node_modules/npm/test/lib/commands/restart.js +33 -0
  2125. nodejs_wheel/lib/node_modules/npm/test/lib/commands/root.js +12 -0
  2126. nodejs_wheel/lib/node_modules/npm/test/lib/commands/run-script.js +915 -0
  2127. nodejs_wheel/lib/node_modules/npm/test/lib/commands/sbom.js +503 -0
  2128. nodejs_wheel/lib/node_modules/npm/test/lib/commands/search.js +209 -0
  2129. nodejs_wheel/lib/node_modules/npm/test/lib/commands/set.js +49 -0
  2130. nodejs_wheel/lib/node_modules/npm/test/lib/commands/shrinkwrap.js +214 -0
  2131. nodejs_wheel/lib/node_modules/npm/test/lib/commands/star.js +61 -0
  2132. nodejs_wheel/lib/node_modules/npm/test/lib/commands/stars.js +127 -0
  2133. nodejs_wheel/lib/node_modules/npm/test/lib/commands/start.js +33 -0
  2134. nodejs_wheel/lib/node_modules/npm/test/lib/commands/stop.js +33 -0
  2135. nodejs_wheel/lib/node_modules/npm/test/lib/commands/team.js +432 -0
  2136. nodejs_wheel/lib/node_modules/npm/test/lib/commands/test.js +33 -0
  2137. nodejs_wheel/lib/node_modules/npm/test/lib/commands/token.js +519 -0
  2138. nodejs_wheel/lib/node_modules/npm/test/lib/commands/uninstall.js +202 -0
  2139. nodejs_wheel/lib/node_modules/npm/test/lib/commands/unpublish.js +648 -0
  2140. nodejs_wheel/lib/node_modules/npm/test/lib/commands/unstar.js +62 -0
  2141. nodejs_wheel/lib/node_modules/npm/test/lib/commands/update.js +83 -0
  2142. nodejs_wheel/lib/node_modules/npm/test/lib/commands/version.js +386 -0
  2143. nodejs_wheel/lib/node_modules/npm/test/lib/commands/view.js +605 -0
  2144. nodejs_wheel/lib/node_modules/npm/test/lib/commands/whoami.js +94 -0
  2145. nodejs_wheel/lib/node_modules/npm/test/lib/docs.js +136 -0
  2146. nodejs_wheel/lib/node_modules/npm/test/lib/es6/validate-engines.js +34 -0
  2147. nodejs_wheel/lib/node_modules/npm/test/lib/fixtures/sigstore/valid-sigstore-attestations.json +94 -0
  2148. nodejs_wheel/lib/node_modules/npm/test/lib/fixtures/sigstore/valid-tuf-js-attestations.json +94 -0
  2149. nodejs_wheel/lib/node_modules/npm/test/lib/lifecycle-cmd.js +32 -0
  2150. nodejs_wheel/lib/node_modules/npm/test/lib/load-all-commands.js +87 -0
  2151. nodejs_wheel/lib/node_modules/npm/test/lib/npm.js +723 -0
  2152. nodejs_wheel/lib/node_modules/npm/test/lib/utils/audit-error.js +121 -0
  2153. nodejs_wheel/lib/node_modules/npm/test/lib/utils/completion/installed-deep.js +205 -0
  2154. nodejs_wheel/lib/node_modules/npm/test/lib/utils/completion/installed-shallow.js +55 -0
  2155. nodejs_wheel/lib/node_modules/npm/test/lib/utils/did-you-mean.js +54 -0
  2156. nodejs_wheel/lib/node_modules/npm/test/lib/utils/display.js +161 -0
  2157. nodejs_wheel/lib/node_modules/npm/test/lib/utils/error-message.js +438 -0
  2158. nodejs_wheel/lib/node_modules/npm/test/lib/utils/exit-handler.js +630 -0
  2159. nodejs_wheel/lib/node_modules/npm/test/lib/utils/explain-dep.js +277 -0
  2160. nodejs_wheel/lib/node_modules/npm/test/lib/utils/explain-eresolve.js +31 -0
  2161. nodejs_wheel/lib/node_modules/npm/test/lib/utils/log-file.js +359 -0
  2162. nodejs_wheel/lib/node_modules/npm/test/lib/utils/log-shim.js +101 -0
  2163. nodejs_wheel/lib/node_modules/npm/test/lib/utils/open-url-prompt.js +156 -0
  2164. nodejs_wheel/lib/node_modules/npm/test/lib/utils/open-url.js +143 -0
  2165. nodejs_wheel/lib/node_modules/npm/test/lib/utils/otplease.js +145 -0
  2166. nodejs_wheel/lib/node_modules/npm/test/lib/utils/pulse-till-done.js +35 -0
  2167. nodejs_wheel/lib/node_modules/npm/test/lib/utils/queryable.js +965 -0
  2168. nodejs_wheel/lib/node_modules/npm/test/lib/utils/read-user-info.js +116 -0
  2169. nodejs_wheel/lib/node_modules/npm/test/lib/utils/reify-finish.js +95 -0
  2170. nodejs_wheel/lib/node_modules/npm/test/lib/utils/reify-output.js +438 -0
  2171. nodejs_wheel/lib/node_modules/npm/test/lib/utils/sbom-cyclonedx.js +261 -0
  2172. nodejs_wheel/lib/node_modules/npm/test/lib/utils/sbom-spdx.js +218 -0
  2173. nodejs_wheel/lib/node_modules/npm/test/lib/utils/tar.js +142 -0
  2174. nodejs_wheel/lib/node_modules/npm/test/lib/utils/timers.js +107 -0
  2175. nodejs_wheel/lib/node_modules/npm/test/lib/utils/update-notifier.js +246 -0
  2176. nodejs_wheel/lib/node_modules/npm/test/lib/utils/validate-lockfile.js +82 -0
  2177. nodejs_wheel/lib/node_modules/npm/test/lib/utils/web-auth.js +33 -0
  2178. nodejs_wheel/lib/node_modules/npm/test/lib/workspaces/get-workspaces.js +222 -0
  2179. nodejs_wheel/lib/node_modules/npm/test/schemas/cyclonedx/bom-1.5.schema.json +3799 -0
  2180. nodejs_wheel/lib/node_modules/npm/test/schemas/cyclonedx/jsf-0.82.schema.json +240 -0
  2181. nodejs_wheel/lib/node_modules/npm/test/schemas/cyclonedx/spdx.schema.json +621 -0
  2182. nodejs_wheel/lib/node_modules/npm/test/schemas/spdx/spdx-2.3.schema.json +740 -0
  2183. nodejs_wheel/node.exe +0 -0
  2184. nodejs_wheel_binaries-20.13.0.dist-info/METADATA +102 -0
  2185. nodejs_wheel_binaries-20.13.0.dist-info/RECORD +2187 -0
  2186. nodejs_wheel_binaries-20.13.0.dist-info/WHEEL +6 -0
  2187. nodejs_wheel_binaries-20.13.0.dist-info/licenses/LICENSE +7 -0
@@ -0,0 +1,12 @@
1
+ from .executable import (
2
+ node,
3
+ npm,
4
+ npx,
5
+ )
6
+
7
+
8
+ __all__ = [
9
+ "node",
10
+ "npm",
11
+ "npx",
12
+ ]
@@ -0,0 +1,4 @@
1
+ from .executable import _node_entry_point
2
+
3
+ if __name__ == "__main__":
4
+ _node_entry_point()
@@ -0,0 +1,92 @@
1
+ # -*- coding: utf-8 -*-
2
+ import os
3
+ import subprocess
4
+ import sys
5
+
6
+
7
+ ROOT_DIR = os.path.dirname(__file__)
8
+
9
+
10
+ def _program(name, args, **kwargs):
11
+ bin_dir = ROOT_DIR if os.name == 'nt' else os.path.join(ROOT_DIR, "bin")
12
+ return subprocess.call([os.path.join(bin_dir, name)] + args, **kwargs)
13
+
14
+
15
+ def call_node(*args, **kwargs):
16
+ suffix = '.exe' if os.name == 'nt' else ''
17
+ return _program('node' + suffix, list(args), **kwargs)
18
+
19
+
20
+ def node(args=None, **kwargs):
21
+ """Call the node executable with the given arguments.
22
+
23
+ Parameters
24
+ ----------
25
+ args : Optional[list[str]], default=None
26
+ List of arguments to pass to the node executable.
27
+ If None, the arguments are taken from sys.argv[1:].
28
+ **kwargs : dict[str, Any]
29
+ Other arguments passed to subprocess.call
30
+
31
+ Returns
32
+ -------
33
+ int
34
+ Return code of the node executable.
35
+ """
36
+ if args is None:
37
+ args = sys.argv[1:]
38
+ return call_node(*args, **kwargs)
39
+
40
+
41
+ def npm(args=None, **kwargs):
42
+ """Call the npm executable with the given arguments.
43
+
44
+ Parameters
45
+ ----------
46
+ args : Optional[list[str]], default=None
47
+ List of arguments to pass to the npm executable.
48
+ If None, the arguments are taken from sys.argv[1:].
49
+ **kwargs : dict[str, Any]
50
+ Other arguments passed to subprocess.call
51
+
52
+ Returns
53
+ -------
54
+ int
55
+ Return code of the npm executable.
56
+ """
57
+ if args is None:
58
+ args = sys.argv[1:]
59
+ return call_node(os.path.join(ROOT_DIR, "lib", "node_modules", "npm", "bin", "npm-cli.js"), *args, **kwargs)
60
+
61
+
62
+ def npx(args=None, **kwargs):
63
+ """Call the npx executable with the given arguments.
64
+
65
+ Parameters
66
+ ----------
67
+ args : Optional[list[str]], default=None
68
+ List of arguments to pass to the npx executable.
69
+ If None, the arguments are taken from sys.argv[1:].
70
+ **kwargs : dict[str, Any]
71
+ Other arguments passed to subprocess.call
72
+
73
+ Returns
74
+ -------
75
+ int
76
+ Return code of the npx executable.
77
+ """
78
+ if args is None:
79
+ args = sys.argv[1:]
80
+ return call_node(os.path.join(ROOT_DIR, "lib", "node_modules", "npm", "bin", "npx-cli.js"), *args, **kwargs)
81
+
82
+
83
+ def _node_entry_point():
84
+ raise SystemExit(node(close_fds=False))
85
+
86
+
87
+ def _npm_entry_point():
88
+ raise SystemExit(npm(close_fds=False))
89
+
90
+
91
+ def _npx_entry_point():
92
+ raise SystemExit(npx(close_fds=False))
File without changes
@@ -0,0 +1,235 @@
1
+ The npm application
2
+ Copyright (c) npm, Inc. and Contributors
3
+ Licensed on the terms of The Artistic License 2.0
4
+
5
+ Node package dependencies of the npm application
6
+ Copyright (c) their respective copyright owners
7
+ Licensed on their respective license terms
8
+
9
+ The npm public registry at https://registry.npmjs.org
10
+ and the npm website at https://www.npmjs.com
11
+ Operated by npm, Inc.
12
+ Use governed by terms published on https://www.npmjs.com
13
+
14
+ "Node.js"
15
+ Trademark Joyent, Inc., https://joyent.com
16
+ Neither npm nor npm, Inc. are affiliated with Joyent, Inc.
17
+
18
+ The Node.js application
19
+ Project of Node Foundation, https://nodejs.org
20
+
21
+ The npm Logo
22
+ Copyright (c) Mathias Pettersson and Brian Hammond
23
+
24
+ "Gubblebum Blocky" typeface
25
+ Copyright (c) Tjarda Koster, https://jelloween.deviantart.com
26
+ Used with permission
27
+
28
+
29
+ --------
30
+
31
+
32
+ The Artistic License 2.0
33
+
34
+ Copyright (c) 2000-2006, The Perl Foundation.
35
+
36
+ Everyone is permitted to copy and distribute verbatim copies
37
+ of this license document, but changing it is not allowed.
38
+
39
+ Preamble
40
+
41
+ This license establishes the terms under which a given free software
42
+ Package may be copied, modified, distributed, and/or redistributed.
43
+ The intent is that the Copyright Holder maintains some artistic
44
+ control over the development of that Package while still keeping the
45
+ Package available as open source and free software.
46
+
47
+ You are always permitted to make arrangements wholly outside of this
48
+ license directly with the Copyright Holder of a given Package. If the
49
+ terms of this license do not permit the full use that you propose to
50
+ make of the Package, you should contact the Copyright Holder and seek
51
+ a different licensing arrangement.
52
+
53
+ Definitions
54
+
55
+ "Copyright Holder" means the individual(s) or organization(s)
56
+ named in the copyright notice for the entire Package.
57
+
58
+ "Contributor" means any party that has contributed code or other
59
+ material to the Package, in accordance with the Copyright Holder's
60
+ procedures.
61
+
62
+ "You" and "your" means any person who would like to copy,
63
+ distribute, or modify the Package.
64
+
65
+ "Package" means the collection of files distributed by the
66
+ Copyright Holder, and derivatives of that collection and/or of
67
+ those files. A given Package may consist of either the Standard
68
+ Version, or a Modified Version.
69
+
70
+ "Distribute" means providing a copy of the Package or making it
71
+ accessible to anyone else, or in the case of a company or
72
+ organization, to others outside of your company or organization.
73
+
74
+ "Distributor Fee" means any fee that you charge for Distributing
75
+ this Package or providing support for this Package to another
76
+ party. It does not mean licensing fees.
77
+
78
+ "Standard Version" refers to the Package if it has not been
79
+ modified, or has been modified only in ways explicitly requested
80
+ by the Copyright Holder.
81
+
82
+ "Modified Version" means the Package, if it has been changed, and
83
+ such changes were not explicitly requested by the Copyright
84
+ Holder.
85
+
86
+ "Original License" means this Artistic License as Distributed with
87
+ the Standard Version of the Package, in its current version or as
88
+ it may be modified by The Perl Foundation in the future.
89
+
90
+ "Source" form means the source code, documentation source, and
91
+ configuration files for the Package.
92
+
93
+ "Compiled" form means the compiled bytecode, object code, binary,
94
+ or any other form resulting from mechanical transformation or
95
+ translation of the Source form.
96
+
97
+
98
+ Permission for Use and Modification Without Distribution
99
+
100
+ (1) You are permitted to use the Standard Version and create and use
101
+ Modified Versions for any purpose without restriction, provided that
102
+ you do not Distribute the Modified Version.
103
+
104
+
105
+ Permissions for Redistribution of the Standard Version
106
+
107
+ (2) You may Distribute verbatim copies of the Source form of the
108
+ Standard Version of this Package in any medium without restriction,
109
+ either gratis or for a Distributor Fee, provided that you duplicate
110
+ all of the original copyright notices and associated disclaimers. At
111
+ your discretion, such verbatim copies may or may not include a
112
+ Compiled form of the Package.
113
+
114
+ (3) You may apply any bug fixes, portability changes, and other
115
+ modifications made available from the Copyright Holder. The resulting
116
+ Package will still be considered the Standard Version, and as such
117
+ will be subject to the Original License.
118
+
119
+
120
+ Distribution of Modified Versions of the Package as Source
121
+
122
+ (4) You may Distribute your Modified Version as Source (either gratis
123
+ or for a Distributor Fee, and with or without a Compiled form of the
124
+ Modified Version) provided that you clearly document how it differs
125
+ from the Standard Version, including, but not limited to, documenting
126
+ any non-standard features, executables, or modules, and provided that
127
+ you do at least ONE of the following:
128
+
129
+ (a) make the Modified Version available to the Copyright Holder
130
+ of the Standard Version, under the Original License, so that the
131
+ Copyright Holder may include your modifications in the Standard
132
+ Version.
133
+
134
+ (b) ensure that installation of your Modified Version does not
135
+ prevent the user installing or running the Standard Version. In
136
+ addition, the Modified Version must bear a name that is different
137
+ from the name of the Standard Version.
138
+
139
+ (c) allow anyone who receives a copy of the Modified Version to
140
+ make the Source form of the Modified Version available to others
141
+ under
142
+
143
+ (i) the Original License or
144
+
145
+ (ii) a license that permits the licensee to freely copy,
146
+ modify and redistribute the Modified Version using the same
147
+ licensing terms that apply to the copy that the licensee
148
+ received, and requires that the Source form of the Modified
149
+ Version, and of any works derived from it, be made freely
150
+ available in that license fees are prohibited but Distributor
151
+ Fees are allowed.
152
+
153
+
154
+ Distribution of Compiled Forms of the Standard Version
155
+ or Modified Versions without the Source
156
+
157
+ (5) You may Distribute Compiled forms of the Standard Version without
158
+ the Source, provided that you include complete instructions on how to
159
+ get the Source of the Standard Version. Such instructions must be
160
+ valid at the time of your distribution. If these instructions, at any
161
+ time while you are carrying out such distribution, become invalid, you
162
+ must provide new instructions on demand or cease further distribution.
163
+ If you provide valid instructions or cease distribution within thirty
164
+ days after you become aware that the instructions are invalid, then
165
+ you do not forfeit any of your rights under this license.
166
+
167
+ (6) You may Distribute a Modified Version in Compiled form without
168
+ the Source, provided that you comply with Section 4 with respect to
169
+ the Source of the Modified Version.
170
+
171
+
172
+ Aggregating or Linking the Package
173
+
174
+ (7) You may aggregate the Package (either the Standard Version or
175
+ Modified Version) with other packages and Distribute the resulting
176
+ aggregation provided that you do not charge a licensing fee for the
177
+ Package. Distributor Fees are permitted, and licensing fees for other
178
+ components in the aggregation are permitted. The terms of this license
179
+ apply to the use and Distribution of the Standard or Modified Versions
180
+ as included in the aggregation.
181
+
182
+ (8) You are permitted to link Modified and Standard Versions with
183
+ other works, to embed the Package in a larger work of your own, or to
184
+ build stand-alone binary or bytecode versions of applications that
185
+ include the Package, and Distribute the result without restriction,
186
+ provided the result does not expose a direct interface to the Package.
187
+
188
+
189
+ Items That are Not Considered Part of a Modified Version
190
+
191
+ (9) Works (including, but not limited to, modules and scripts) that
192
+ merely extend or make use of the Package, do not, by themselves, cause
193
+ the Package to be a Modified Version. In addition, such works are not
194
+ considered parts of the Package itself, and are not subject to the
195
+ terms of this license.
196
+
197
+
198
+ General Provisions
199
+
200
+ (10) Any use, modification, and distribution of the Standard or
201
+ Modified Versions is governed by this Artistic License. By using,
202
+ modifying or distributing the Package, you accept this license. Do not
203
+ use, modify, or distribute the Package, if you do not accept this
204
+ license.
205
+
206
+ (11) If your Modified Version has been derived from a Modified
207
+ Version made by someone other than you, you are nevertheless required
208
+ to ensure that your Modified Version complies with the requirements of
209
+ this license.
210
+
211
+ (12) This license does not grant you the right to use any trademark,
212
+ service mark, tradename, or logo of the Copyright Holder.
213
+
214
+ (13) This license includes the non-exclusive, worldwide,
215
+ free-of-charge patent license to make, have made, use, offer to sell,
216
+ sell, import and otherwise transfer the Package with respect to any
217
+ patent claims licensable by the Copyright Holder that are necessarily
218
+ infringed by the Package. If you institute patent litigation
219
+ (including a cross-claim or counterclaim) against any party alleging
220
+ that the Package constitutes direct or contributory patent
221
+ infringement, then this Artistic License to you shall terminate on the
222
+ date that such litigation is filed.
223
+
224
+ (14) Disclaimer of Warranty:
225
+ THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
226
+ IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
227
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
228
+ NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
229
+ LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
230
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
231
+ DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
232
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
233
+
234
+
235
+ --------
@@ -0,0 +1,63 @@
1
+ # npm - a JavaScript package manager
2
+
3
+ [![npm version](https://img.shields.io/npm/v/npm.svg)](https://npm.im/npm)
4
+ [![license](https://img.shields.io/npm/l/npm.svg)](https://npm.im/npm)
5
+ [![CI - cli](https://github.com/npm/cli/actions/workflows/ci.yml/badge.svg)](https://github.com/npm/cli/actions/workflows/ci.yml)
6
+ [![Benchmark Suite](https://github.com/npm/cli/actions/workflows/benchmark.yml/badge.svg)](https://github.com/npm/cli/actions/workflows/benchmark.yml)
7
+
8
+ ### Requirements
9
+
10
+ One of the following versions of [Node.js](https://nodejs.org/en/download/) must be installed to run **`npm`**:
11
+
12
+ * `18.x.x` >= `18.17.0`
13
+ * `20.5.0` or higher
14
+
15
+ ### Installation
16
+
17
+ **`npm`** comes bundled with [**`node`**](https://nodejs.org/), & most third-party distributions, by default. Officially supported downloads/distributions can be found at: [nodejs.org/en/download](https://nodejs.org/en/download)
18
+
19
+ #### Direct Download
20
+
21
+ You can download & install **`npm`** directly from [**npmjs**.com](https://npmjs.com/) using our custom `install.sh` script:
22
+
23
+ ```bash
24
+ curl -qL https://www.npmjs.com/install.sh | sh
25
+ ```
26
+
27
+ #### Node Version Managers
28
+
29
+ If you're looking to manage multiple versions of **`Node.js`** &/or **`npm`**, consider using a [node version manager](https://github.com/search?q=node+version+manager+archived%3Afalse&type=repositories&ref=advsearch)
30
+
31
+ ### Usage
32
+
33
+ ```bash
34
+ npm <command>
35
+ ```
36
+
37
+ ### Links & Resources
38
+
39
+ * [**Documentation**](https://docs.npmjs.com/) - Official docs & how-tos for all things **npm**
40
+ * Note: you can also search docs locally with `npm help-search <query>`
41
+ * [**Bug Tracker**](https://github.com/npm/cli/issues) - Search or submit bugs against the CLI
42
+ * [**Roadmap**](https://github.com/orgs/github/projects/4247/views/1?filterQuery=npm) - Track & follow along with our public roadmap
43
+ * [**Feedback**](https://github.com/npm/feedback) - Contribute ideas & discussion around the npm registry, website & CLI
44
+ * [**RFCs**](https://github.com/npm/rfcs) - Contribute ideas & specifications for the API/design of the npm CLI
45
+ * [**Service Status**](https://status.npmjs.org/) - Monitor the current status & see incident reports for the website & registry
46
+ * [**Project Status**](https://npm.github.io/statusboard/) - See the health of all our maintained OSS projects in one view
47
+ * [**Events Calendar**](https://calendar.google.com/calendar/u/0/embed?src=npmjs.com_oonluqt8oftrt0vmgrfbg6q6go@group.calendar.google.com) - Keep track of our Open RFC calls, releases, meetups, conferences & more
48
+ * [**Support**](https://www.npmjs.com/support) - Experiencing problems with the **npm** [website](https://npmjs.com) or [registry](https://registry.npmjs.org)? File a ticket [here](https://www.npmjs.com/support)
49
+
50
+ ### Acknowledgments
51
+
52
+ * `npm` is configured to use the **npm Public Registry** at [https://registry.npmjs.org](https://registry.npmjs.org) by default; Usage of this registry is subject to **Terms of Use** available at [https://npmjs.com/policies/terms](https://npmjs.com/policies/terms)
53
+ * You can configure `npm` to use any other compatible registry you prefer. You can read more about configuring third-party registries [here](https://docs.npmjs.com/cli/v7/using-npm/registry)
54
+
55
+ ### FAQ on Branding
56
+
57
+ #### Is it "npm" or "NPM" or "Npm"?
58
+
59
+ **`npm`** should never be capitalized unless it is being displayed in a location that is customarily all-capitals (ex. titles on `man` pages).
60
+
61
+ #### Is "npm" an acronym for "Node Package Manager"?
62
+
63
+ Contrary to popular belief, **`npm`** **is not** in fact an acronym for "Node Package Manager"; It is a recursive bacronymic abbreviation for **"npm is not an acronym"** (if the project was named "ninaa", then it would be an acronym). The precursor to **`npm`** was actually a bash utility named **"pm"**, which was the shortform name of **"pkgmakeinst"** - a bash function that installed various things on various platforms. If **`npm`** were to ever have been considered an acronym, it would be as "node pm" or, potentially "new pm".
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env sh
2
+ if [ "x$npm_config_node_gyp" = "x" ]; then
3
+ node "`dirname "$0"`/../../node_modules/node-gyp/bin/node-gyp.js" "$@"
4
+ else
5
+ "$npm_config_node_gyp" "$@"
6
+ fi
@@ -0,0 +1,5 @@
1
+ if not defined npm_config_node_gyp (
2
+ node "%~dp0\..\..\node_modules\node-gyp\bin\node-gyp.js" %*
3
+ ) else (
4
+ node "%npm_config_node_gyp%" %*
5
+ )
@@ -0,0 +1,65 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # This is used by the Node.js installer, which expects the cygwin/mingw
4
+ # shell script to already be present in the npm dependency folder.
5
+
6
+ (set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix
7
+
8
+ basedir=`dirname "$0"`
9
+
10
+ case `uname` in
11
+ *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
12
+ esac
13
+
14
+ if [ `uname` = 'Linux' ] && type wslpath &>/dev/null ; then
15
+ IS_WSL="true"
16
+ fi
17
+
18
+ function no_node_dir {
19
+ # if this didn't work, then everything else below will fail
20
+ echo "Could not determine Node.js install directory" >&2
21
+ exit 1
22
+ }
23
+
24
+ NODE_EXE="$basedir/node.exe"
25
+ if ! [ -x "$NODE_EXE" ]; then
26
+ NODE_EXE="$basedir/node"
27
+ fi
28
+ if ! [ -x "$NODE_EXE" ]; then
29
+ NODE_EXE=node
30
+ fi
31
+
32
+ # this path is passed to node.exe, so it needs to match whatever
33
+ # kind of paths Node.js thinks it's using, typically win32 paths.
34
+ CLI_BASEDIR="$("$NODE_EXE" -p 'require("path").dirname(process.execPath)' 2> /dev/null)"
35
+ if [ $? -ne 0 ]; then
36
+ # this fails under WSL 1 so add an additional message. we also suppress stderr above
37
+ # because the actual error raised is not helpful. in WSL 1 node.exe cannot handle
38
+ # output redirection properly. See https://github.com/microsoft/WSL/issues/2370
39
+ if [ "$IS_WSL" == "true" ]; then
40
+ echo "WSL 1 is not supported. Please upgrade to WSL 2 or above." >&2
41
+ fi
42
+ no_node_dir
43
+ fi
44
+ NPM_PREFIX_JS="$CLI_BASEDIR/node_modules/npm/bin/npm-prefix.js"
45
+ NPM_CLI_JS="$CLI_BASEDIR/node_modules/npm/bin/npm-cli.js"
46
+ NPM_PREFIX=`"$NODE_EXE" "$NPM_PREFIX_JS"`
47
+ if [ $? -ne 0 ]; then
48
+ no_node_dir
49
+ fi
50
+ NPM_PREFIX_NPM_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npm-cli.js"
51
+
52
+ # a path that will fail -f test on any posix bash
53
+ NPM_WSL_PATH="/.."
54
+
55
+ # WSL can run Windows binaries, so we have to give it the win32 path
56
+ # however, WSL bash tests against posix paths, so we need to construct that
57
+ # to know if npm is installed globally.
58
+ if [ "$IS_WSL" == "true" ]; then
59
+ NPM_WSL_PATH=`wslpath "$NPM_PREFIX_NPM_CLI_JS"`
60
+ fi
61
+ if [ -f "$NPM_PREFIX_NPM_CLI_JS" ] || [ -f "$NPM_WSL_PATH" ]; then
62
+ NPM_CLI_JS="$NPM_PREFIX_NPM_CLI_JS"
63
+ fi
64
+
65
+ "$NODE_EXE" "$NPM_CLI_JS" "$@"
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../lib/cli.js')(process)
@@ -0,0 +1,30 @@
1
+ #!/usr/bin/env node
2
+ // This is a single-use bin to help windows discover the proper prefix for npm
3
+ // without having to load all of npm first
4
+ // It does not accept argv params
5
+
6
+ const path = require('path')
7
+ const Config = require('@npmcli/config')
8
+ const { definitions, flatten, shorthands } = require('@npmcli/config/lib/definitions')
9
+ const config = new Config({
10
+ npmPath: path.dirname(__dirname),
11
+ // argv is explicitly not looked at since prefix is not something that can be changed via argv
12
+ argv: [],
13
+ definitions,
14
+ flatten,
15
+ shorthands,
16
+ excludeNpmCwd: false,
17
+ })
18
+
19
+ async function main () {
20
+ try {
21
+ await config.load()
22
+ // eslint-disable-next-line no-console
23
+ console.log(config.globalPrefix)
24
+ } catch (err) {
25
+ // eslint-disable-next-line no-console
26
+ console.error(err)
27
+ process.exit(1)
28
+ }
29
+ }
30
+ main()
@@ -0,0 +1,20 @@
1
+ :: Created by npm, please don't edit manually.
2
+ @ECHO OFF
3
+
4
+ SETLOCAL
5
+
6
+ SET "NODE_EXE=%~dp0\node.exe"
7
+ IF NOT EXIST "%NODE_EXE%" (
8
+ SET "NODE_EXE=node"
9
+ )
10
+
11
+ SET "NPM_PREFIX_JS=%~dp0\node_modules\npm\bin\npm-prefix.js"
12
+ SET "NPM_CLI_JS=%~dp0\node_modules\npm\bin\npm-cli.js"
13
+ FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPM_PREFIX_JS%"') DO (
14
+ SET "NPM_PREFIX_NPM_CLI_JS=%%F\node_modules\npm\bin\npm-cli.js"
15
+ )
16
+ IF EXIST "%NPM_PREFIX_NPM_CLI_JS%" (
17
+ SET "NPM_CLI_JS=%NPM_PREFIX_NPM_CLI_JS%"
18
+ )
19
+
20
+ "%NODE_EXE%" "%NPM_CLI_JS%" %*
@@ -0,0 +1,35 @@
1
+ #!/usr/bin/env pwsh
2
+ $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
3
+
4
+ $exe=""
5
+ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
6
+ # Fix case when both the Windows and Linux builds of Node
7
+ # are installed in the same directory
8
+ $exe=".exe"
9
+ }
10
+ $ret=0
11
+
12
+ $nodeexe = "node$exe"
13
+ $nodebin = $(Get-Command $nodeexe -ErrorAction SilentlyContinue -ErrorVariable F).Source
14
+ if ($nodebin -eq $null) {
15
+ Write-Host "$nodeexe not found."
16
+ exit 1
17
+ }
18
+ $nodedir = $(New-Object -ComObject Scripting.FileSystemObject).GetFile("$nodebin").ParentFolder.Path
19
+
20
+ $npmprefixjs="$nodedir/node_modules/npm/bin/npm-prefix.js"
21
+ $npmprefix=(& $nodeexe $npmprefixjs)
22
+ if ($LASTEXITCODE -ne 0) {
23
+ Write-Host "Could not determine Node.js install directory"
24
+ exit 1
25
+ }
26
+ $npmprefixclijs="$npmprefix/node_modules/npm/bin/npm-cli.js"
27
+
28
+ # Support pipeline input
29
+ if ($MyInvocation.ExpectingInput) {
30
+ $input | & $nodeexe $npmprefixclijs $args
31
+ } else {
32
+ & $nodeexe $npmprefixclijs $args
33
+ }
34
+ $ret=$LASTEXITCODE
35
+ exit $ret
@@ -0,0 +1,65 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # This is used by the Node.js installer, which expects the cygwin/mingw
4
+ # shell script to already be present in the npm dependency folder.
5
+
6
+ (set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix
7
+
8
+ basedir=`dirname "$0"`
9
+
10
+ case `uname` in
11
+ *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
12
+ esac
13
+
14
+ if [ `uname` = 'Linux' ] && type wslpath &>/dev/null ; then
15
+ IS_WSL="true"
16
+ fi
17
+
18
+ function no_node_dir {
19
+ # if this didn't work, then everything else below will fail
20
+ echo "Could not determine Node.js install directory" >&2
21
+ exit 1
22
+ }
23
+
24
+ NODE_EXE="$basedir/node.exe"
25
+ if ! [ -x "$NODE_EXE" ]; then
26
+ NODE_EXE="$basedir/node"
27
+ fi
28
+ if ! [ -x "$NODE_EXE" ]; then
29
+ NODE_EXE=node
30
+ fi
31
+
32
+ # this path is passed to node.exe, so it needs to match whatever
33
+ # kind of paths Node.js thinks it's using, typically win32 paths.
34
+ CLI_BASEDIR="$("$NODE_EXE" -p 'require("path").dirname(process.execPath)' 2> /dev/null)"
35
+ if [ $? -ne 0 ]; then
36
+ # this fails under WSL 1 so add an additional message. we also suppress stderr above
37
+ # because the actual error raised is not helpful. in WSL 1 node.exe cannot handle
38
+ # output redirection properly. See https://github.com/microsoft/WSL/issues/2370
39
+ if [ "$IS_WSL" == "true" ]; then
40
+ echo "WSL 1 is not supported. Please upgrade to WSL 2 or above." >&2
41
+ fi
42
+ no_node_dir
43
+ fi
44
+ NPM_PREFIX_JS="$CLI_BASEDIR/node_modules/npm/bin/npm-prefix.js"
45
+ NPX_CLI_JS="$CLI_BASEDIR/node_modules/npm/bin/npx-cli.js"
46
+ NPM_PREFIX=`"$NODE_EXE" "$NPM_PREFIX_JS"`
47
+ if [ $? -ne 0 ]; then
48
+ no_node_dir
49
+ fi
50
+ NPM_PREFIX_NPX_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npx-cli.js"
51
+
52
+ # a path that will fail -f test on any posix bash
53
+ NPX_WSL_PATH="/.."
54
+
55
+ # WSL can run Windows binaries, so we have to give it the win32 path
56
+ # however, WSL bash tests against posix paths, so we need to construct that
57
+ # to know if npm is installed globally.
58
+ if [ "$IS_WSL" == "true" ]; then
59
+ NPX_WSL_PATH=`wslpath "$NPM_PREFIX_NPX_CLI_JS"`
60
+ fi
61
+ if [ -f "$NPM_PREFIX_NPX_CLI_JS" ] || [ -f "$NPX_WSL_PATH" ]; then
62
+ NPX_CLI_JS="$NPM_PREFIX_NPX_CLI_JS"
63
+ fi
64
+
65
+ "$NODE_EXE" "$NPX_CLI_JS" "$@"