nodejs published a security release yesterday.

The fixes relevant for the OpenBSD port are:

* Node.js Permissions policies can be bypassed via process.mainModule (High) (CVE-2023-23918) * Node.js OpenSSL error handling issues in nodejs crypto library (Medium) (CVE-2023-23919) * Fetch API in Node.js did not protect against CRLF injection in host headers (Medium) (CVE-2023-23936) * Regular Expression Denial of Service in Headers in Node.js fetch API(Low) (CVE-2023-24807)

Note: It might be a good idea to have a look at whether it makes sense to apply the equivalent of https://github.com/nodejs/node/commit/8393ebc72d to textproc/icu4c (Cc: Maintainer aja@)

The effective changes vs. v18.14.0 are mostly in javascript code (except for https://github.com/nodejs/node/commit/004e34d046) and as far as I can see, have no potential to break on other platforms - Therefore only built and tested on amd64; v18.14.0 has been tested on i386 and arm64 as well.

On 2/16/23 21:47, A Tammy wrote:

On 2/12/23 09:02, Volker Schlecht wrote:
ping

On 2/5/23 14:17, Volker Schlecht wrote:
Update lang/node to 18.14.0

* reinstate old patch to disable building the bundled googletest,
because that could lead to build-time conflicts when devel/gtest is
installed, now that the version of devel/gtest has diverged from the
bundled version again

* This fixes a build issue on riscv64 that slipped into v18.13.0
https://github.com/nodejs/node/commit/1e11247b91

* PLIST churn due to updated npm

Built and tested on amd64, i386 and arm64; riscv64 is very likely to
work now as well ...

builds and works for me on amd64, ok aisha@

don't have any other arch around so can't test. Anyone wants to weigh in?

Aisha
Index: Makefile
===================================================================
RCS file: /cvs/ports/lang/node/Makefile,v
retrieving revision 1.116
diff -u -p -r1.116 Makefile
--- Makefile	28 Jan 2023 12:46:46 -0000	1.116
+++ Makefile	17 Feb 2023 11:46:09 -0000
@@ -5,12 +5,11 @@ USE_WXNEEDED =		Yes
 
 COMMENT = JavaScript runtime built on Chrome's V8 JavaScript engine
 
-NODE_VERSION =		v18.12.1
+NODE_VERSION =		v18.14.1
 PLEDGE_VER =		1.1.3
 DISTFILES =		node-pledge-{}${PLEDGE_VER}.tar.gz:0 \
 			${DISTNAME}-headers.tar.gz \
 			${DISTNAME}.tar.xz
-REVISION =		2
 
 DISTNAME =		node-${NODE_VERSION}
 PKGNAME =		${DISTNAME:S/v//g}
Index: distinfo
===================================================================
RCS file: /cvs/ports/lang/node/distinfo,v
retrieving revision 1.66
diff -u -p -r1.66 distinfo
--- distinfo	29 Dec 2022 23:34:13 -0000	1.66
+++ distinfo	17 Feb 2023 11:46:09 -0000
@@ -1,6 +1,6 @@
 SHA256 (node-pledge-1.1.3.tar.gz) = fEaXvLg6hYEJ69K+mgQFizf8DiJY2/DtyFJB/pEanVU=
-SHA256 (node-v18.12.1-headers.tar.gz) = nVXuByum1aFB2wks7xoPcV99P8k4KFptknodCgx0Qvc=
-SHA256 (node-v18.12.1.tar.xz) = T6QGRRvFJlmikOUs/bIWKnYL1UnaS4u+vmop8pbZON8=
+SHA256 (node-v18.14.1-headers.tar.gz) = kYs1rpQ/zRuzrVkM638EQYgezfWUCiA55PtXYsQEgNI=
+SHA256 (node-v18.14.1.tar.xz) = 7sNTQ4Jm/QrvU6lEa+ELMu5udNCOMt1UVLOC/2eT2gQ=
 SIZE (node-pledge-1.1.3.tar.gz) = 3167
-SIZE (node-v18.12.1-headers.tar.gz) = 8563785
-SIZE (node-v18.12.1.tar.xz) = 38454588
+SIZE (node-v18.14.1-headers.tar.gz) = 8568128
+SIZE (node-v18.14.1.tar.xz) = 41439328
Index: patches/patch-Makefile
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-Makefile,v
retrieving revision 1.16
diff -u -p -r1.16 patch-Makefile
--- patches/patch-Makefile	29 Dec 2022 23:34:13 -0000	1.16
+++ patches/patch-Makefile	17 Feb 2023 11:46:09 -0000
@@ -1,7 +1,7 @@
 Index: Makefile
 --- Makefile.orig
 +++ Makefile
-@@ -185,7 +185,7 @@ config.gypi: configure configure.py src/node_version.h
+@@ -186,7 +186,7 @@ config.gypi: configure configure.py src/node_version.h
  	fi
  
  .PHONY: install
@@ -10,7 +10,7 @@ Index: Makefile
  	$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
  
  .PHONY: uninstall
-@@ -416,6 +416,12 @@ test/addons/.buildstamp: $(ADDONS_PREREQS) \
+@@ -417,6 +417,12 @@ test/addons/.buildstamp: $(ADDONS_PREREQS) \
  # Just goes to show that recursive make really is harmful...
  # TODO(bnoordhuis) Force rebuild after gyp update.
  build-addons: | $(NODE_EXE) test/addons/.buildstamp
Index: patches/patch-common_gypi
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-common_gypi,v
retrieving revision 1.24
diff -u -p -r1.24 patch-common_gypi
--- patches/patch-common_gypi	29 Dec 2022 23:34:13 -0000	1.24
+++ patches/patch-common_gypi	17 Feb 2023 11:46:09 -0000
@@ -9,7 +9,7 @@ Index: common.gypi
          'conditions': [
            ['enable_lto=="true"', {
              'cflags': ['<(lto)'],
-@@ -413,7 +412,9 @@
+@@ -409,7 +408,9 @@
            }],
            ['OS=="openbsd"', {
              'cflags': [ '-I/usr/local/include' ],
Index: patches/patch-configure
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-configure,v
retrieving revision 1.1
diff -u -p -r1.1 patch-configure
--- patches/patch-configure	23 Sep 2022 19:28:50 -0000	1.1
+++ patches/patch-configure	17 Feb 2023 11:46:09 -0000
@@ -1,10 +1,11 @@
 Index: configure
 --- configure.orig
 +++ configure
-@@ -4,11 +4,6 @@
+@@ -4,12 +4,6 @@
  # Note that the mix of single and double quotes is intentional,
  # as is the fact that the ] goes on a new line.
  _=[ 'exec' '/bin/sh' '-c' '''
+-command -v python3.11 >/dev/null && exec python3.11 "$0" "$@"
 -command -v python3.10 >/dev/null && exec python3.10 "$0" "$@"
 -command -v python3.9 >/dev/null && exec python3.9 "$0" "$@"
 -command -v python3.8 >/dev/null && exec python3.8 "$0" "$@"
Index: patches/patch-deps_npm_node_modules_node-gyp_gyp_pylib_gyp_generator_make_py
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-deps_npm_node_modules_node-gyp_gyp_pylib_gyp_generator_make_py,v
retrieving revision 1.11
diff -u -p -r1.11 patch-deps_npm_node_modules_node-gyp_gyp_pylib_gyp_generator_make_py
--- patches/patch-deps_npm_node_modules_node-gyp_gyp_pylib_gyp_generator_make_py	29 Dec 2022 23:34:13 -0000	1.11
+++ patches/patch-deps_npm_node_modules_node-gyp_gyp_pylib_gyp_generator_make_py	17 Feb 2023 11:46:09 -0000
@@ -1,7 +1,7 @@
 Index: deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
 --- deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py.orig
 +++ deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
-@@ -301,6 +301,8 @@ all_deps :=
+@@ -372,6 +372,8 @@ all_deps :=
  
  %(make_global_settings)s
  
Index: patches/patch-deps_v8_src_execution_isolate_cc
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-deps_v8_src_execution_isolate_cc,v
retrieving revision 1.1
diff -u -p -r1.1 patch-deps_v8_src_execution_isolate_cc
--- patches/patch-deps_v8_src_execution_isolate_cc	28 Jan 2023 12:46:46 -0000	1.1
+++ patches/patch-deps_v8_src_execution_isolate_cc	17 Feb 2023 11:46:09 -0000
@@ -12,7 +12,7 @@ Index: deps/v8/src/execution/isolate.cc
  extern "C" const uint8_t* v8_Default_embedded_blob_code_;
  extern "C" uint32_t v8_Default_embedded_blob_code_size_;
  extern "C" const uint8_t* v8_Default_embedded_blob_data_;
-@@ -3682,6 +3686,11 @@ void Isolate::InitializeDefaultEmbeddedBlob() {
+@@ -3691,6 +3695,11 @@ void Isolate::InitializeDefaultEmbeddedBlob() {
    uint32_t code_size = DefaultEmbeddedBlobCodeSize();
    const uint8_t* data = DefaultEmbeddedBlobData();
    uint32_t data_size = DefaultEmbeddedBlobDataSize();
Index: patches/patch-lib_internal_modules_cjs_loader_js
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-lib_internal_modules_cjs_loader_js,v
retrieving revision 1.9
diff -u -p -r1.9 patch-lib_internal_modules_cjs_loader_js
--- patches/patch-lib_internal_modules_cjs_loader_js	29 Dec 2022 23:34:13 -0000	1.9
+++ patches/patch-lib_internal_modules_cjs_loader_js	17 Feb 2023 11:46:09 -0000
@@ -1,7 +1,7 @@
 Index: lib/internal/modules/cjs/loader.js
 --- lib/internal/modules/cjs/loader.js.orig
 +++ lib/internal/modules/cjs/loader.js
-@@ -1294,7 +1294,10 @@ Module._initPaths = function() {
+@@ -1389,7 +1389,10 @@ Module._initPaths = function() {
      path.resolve(process.execPath, '..') :
      path.resolve(process.execPath, '..', '..');
  
Index: patches/patch-lib_net_js
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-lib_net_js,v
retrieving revision 1.6
diff -u -p -r1.6 patch-lib_net_js
--- patches/patch-lib_net_js	29 Dec 2022 23:34:13 -0000	1.6
+++ patches/patch-lib_net_js	17 Feb 2023 11:46:09 -0000
@@ -13,7 +13,7 @@ for "any address" but that's not really 
 Index: lib/net.js
 --- lib/net.js.orig
 +++ lib/net.js
-@@ -1447,22 +1447,12 @@ function setupListenHandle(address, port, addressType,
+@@ -1702,22 +1702,12 @@ function setupListenHandle(address, port, addressType,
  
      let rval = null;
  
Index: patches/patch-node_gyp
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-node_gyp,v
retrieving revision 1.16
diff -u -p -r1.16 patch-node_gyp
--- patches/patch-node_gyp	29 Dec 2022 23:34:13 -0000	1.16
+++ patches/patch-node_gyp	17 Feb 2023 11:46:09 -0000
@@ -1,14 +1,37 @@
+Disable build of googletest to avoid build-time conflict with
+devel/gtest if installed.
+
 Index: node.gyp
 --- node.gyp.orig
 +++ node.gyp
-@@ -1270,6 +1270,10 @@
+@@ -462,7 +462,7 @@
+       ],
+       'dependencies': [
+         'deps/base64/base64.gyp:base64',
+-        'deps/googletest/googletest.gyp:gtest_prod',
++        # 'deps/googletest/googletest.gyp:gtest_prod',
+         'deps/histogram/histogram.gyp:histogram',
+         'deps/uvwasi/uvwasi.gyp:uvwasi',
+         'deps/simdutf/simdutf.gyp:simdutf',
+@@ -1205,8 +1205,8 @@
+       'dependencies': [
+         '<(node_lib_target_name)',
+         'deps/base64/base64.gyp:base64',
+-        'deps/googletest/googletest.gyp:gtest',
+-        'deps/googletest/googletest.gyp:gtest_main',
++        #'deps/googletest/googletest.gyp:gtest',
++        #'deps/googletest/googletest.gyp:gtest_main',
+         'deps/histogram/histogram.gyp:histogram',
+         'deps/uvwasi/uvwasi.gyp:uvwasi',
+         'node_dtrace_header',
+@@ -1281,6 +1281,10 @@
+         }],
          ['OS=="solaris"', {
            'ldflags': [ '-I<(SHARED_INTERMEDIATE_DIR)' ]
-         }],
++        }],
 +        # Skip cctest while building for OpenBSD
 +        [ 'OS=="openbsd"', {
 +          'type': 'none',
-+        }],
+         }],
          # Skip cctest while building shared lib node for Windows
          [ 'OS=="win" and node_shared=="true"', {
-           'type': 'none',
Index: patches/patch-src_env_cc
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-src_env_cc,v
retrieving revision 1.4
diff -u -p -r1.4 patch-src_env_cc
--- patches/patch-src_env_cc	29 Dec 2022 23:34:13 -0000	1.4
+++ patches/patch-src_env_cc	17 Feb 2023 11:46:09 -0000
@@ -1,7 +1,7 @@
 Index: src/env.cc
 --- src/env.cc.orig
 +++ src/env.cc
-@@ -630,29 +630,7 @@ void Environment::CreateProperties() {
+@@ -613,29 +613,7 @@ std::unique_ptr<v8::BackingStore> Environment::release
  }
  
  std::string GetExecPath(const std::vector<std::string>& argv) {
@@ -10,7 +10,7 @@ Index: src/env.cc
 -  std::string exec_path;
 -  if (uv_exepath(exec_path_buf, &exec_path_len) == 0) {
 -    exec_path = std::string(exec_path_buf, exec_path_len);
--  } else {
+-  } else if (argv.size() > 0) {
 -    exec_path = argv[0];
 -  }
 -
Index: patches/patch-tools_test_py
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-tools_test_py,v
retrieving revision 1.11
diff -u -p -r1.11 patch-tools_test_py
--- patches/patch-tools_test_py	1 Sep 2022 20:42:56 -0000	1.11
+++ patches/patch-tools_test_py	17 Feb 2023 11:46:09 -0000
@@ -1,7 +1,7 @@
 Index: tools/test.py
 --- tools/test.py.orig
 +++ tools/test.py
-@@ -938,9 +938,9 @@ class Context(object):
+@@ -944,9 +944,9 @@ class Context(object):
      if self.vm is not None:
        return self.vm
      if arch == 'none':
Index: patches/patch-tools_v8_gypfiles_v8_gyp
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-tools_v8_gypfiles_v8_gyp,v
retrieving revision 1.8
diff -u -p -r1.8 patch-tools_v8_gypfiles_v8_gyp
--- patches/patch-tools_v8_gypfiles_v8_gyp	29 Dec 2022 23:34:13 -0000	1.8
+++ patches/patch-tools_v8_gypfiles_v8_gyp	17 Feb 2023 11:46:09 -0000
@@ -25,7 +25,7 @@ Index: tools/v8_gypfiles/v8.gyp
                    'sources': [
                      '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn"  "\\"v8_base_without_compiler.*?v8_current_cpu == \\"x64\\".*?v8_enable_webassembly.*?is_linux.*?sources \\+= ")',
                    ],
-@@ -979,7 +979,7 @@
+@@ -977,7 +977,7 @@
          }],
          # Platforms that don't have Compare-And-Swap (CAS) support need to link atomic library
          # to implement atomic memory access
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/lang/node/pkg/PLIST,v
retrieving revision 1.53
diff -u -p -r1.53 PLIST
--- pkg/PLIST	29 Dec 2022 23:34:13 -0000	1.53
+++ pkg/PLIST	17 Feb 2023 11:46:09 -0000
@@ -179,15 +179,12 @@ lib/node_modules/@npmcli/arborist/lib/ve
 lib/node_modules/@npmcli/arborist/lib/vuln.js
 lib/node_modules/@npmcli/arborist/lib/yarn-lock.js
 lib/node_modules/@npmcli/arborist/package.json
-lib/node_modules/@npmcli/ci-detect/
-lib/node_modules/@npmcli/ci-detect/LICENSE
-lib/node_modules/@npmcli/ci-detect/lib/
-lib/node_modules/@npmcli/ci-detect/lib/index.js
-lib/node_modules/@npmcli/ci-detect/package.json
 lib/node_modules/@npmcli/config/
 lib/node_modules/@npmcli/config/LICENSE
+lib/node_modules/@npmcli/config/README.md
 lib/node_modules/@npmcli/config/lib/
 lib/node_modules/@npmcli/config/lib/env-replace.js
+lib/node_modules/@npmcli/config/lib/errors.js
 lib/node_modules/@npmcli/config/lib/index.js
 lib/node_modules/@npmcli/config/lib/nerf-dart.js
 lib/node_modules/@npmcli/config/lib/parse-field.js
@@ -207,25 +204,15 @@ lib/node_modules/@npmcli/fs/lib/
 lib/node_modules/@npmcli/fs/lib/common/
 lib/node_modules/@npmcli/fs/lib/common/get-options.js
 lib/node_modules/@npmcli/fs/lib/common/node.js
-lib/node_modules/@npmcli/fs/lib/common/owner-sync.js
-lib/node_modules/@npmcli/fs/lib/common/owner.js
-lib/node_modules/@npmcli/fs/lib/copy-file.js
 lib/node_modules/@npmcli/fs/lib/cp/
 lib/node_modules/@npmcli/fs/lib/cp/LICENSE
+lib/node_modules/@npmcli/fs/lib/cp/errors.js
 lib/node_modules/@npmcli/fs/lib/cp/index.js
 lib/node_modules/@npmcli/fs/lib/cp/polyfill.js
-lib/node_modules/@npmcli/fs/lib/errors.js
-lib/node_modules/@npmcli/fs/lib/fs.js
 lib/node_modules/@npmcli/fs/lib/index.js
-lib/node_modules/@npmcli/fs/lib/mkdir.js
-lib/node_modules/@npmcli/fs/lib/mkdtemp.js
-lib/node_modules/@npmcli/fs/lib/rm/
-lib/node_modules/@npmcli/fs/lib/rm/index.js
-lib/node_modules/@npmcli/fs/lib/rm/polyfill.js
-lib/node_modules/@npmcli/fs/lib/with-owner-sync.js
-lib/node_modules/@npmcli/fs/lib/with-owner.js
+lib/node_modules/@npmcli/fs/lib/move-file.js
+lib/node_modules/@npmcli/fs/lib/readdir-scoped.js
 lib/node_modules/@npmcli/fs/lib/with-temp-dir.js
-lib/node_modules/@npmcli/fs/lib/write-file.js
 lib/node_modules/@npmcli/fs/package.json
 lib/node_modules/@npmcli/git/
 lib/node_modules/@npmcli/git/LICENSE
@@ -247,12 +234,8 @@ lib/node_modules/@npmcli/git/package.jso
 lib/node_modules/@npmcli/installed-package-contents/
 lib/node_modules/@npmcli/installed-package-contents/LICENSE
 lib/node_modules/@npmcli/installed-package-contents/README.md
-lib/node_modules/@npmcli/installed-package-contents/index.js
-lib/node_modules/@npmcli/installed-package-contents/node_modules/
-lib/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/
-lib/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/LICENSE
-lib/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/index.js
-lib/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/package.json
+lib/node_modules/@npmcli/installed-package-contents/lib/
+lib/node_modules/@npmcli/installed-package-contents/lib/index.js
 lib/node_modules/@npmcli/installed-package-contents/package.json
 lib/node_modules/@npmcli/map-workspaces/
 lib/node_modules/@npmcli/map-workspaces/LICENSE.md
@@ -267,11 +250,6 @@ lib/node_modules/@npmcli/metavuln-calcul
 lib/node_modules/@npmcli/metavuln-calculator/lib/hash.js
 lib/node_modules/@npmcli/metavuln-calculator/lib/index.js
 lib/node_modules/@npmcli/metavuln-calculator/package.json
-lib/node_modules/@npmcli/move-file/
-lib/node_modules/@npmcli/move-file/LICENSE.md
-lib/node_modules/@npmcli/move-file/lib/
-lib/node_modules/@npmcli/move-file/lib/index.js
-lib/node_modules/@npmcli/move-file/package.json
 lib/node_modules/@npmcli/name-from-folder/
 lib/node_modules/@npmcli/name-from-folder/LICENSE
 lib/node_modules/@npmcli/name-from-folder/index.js
@@ -291,6 +269,7 @@ lib/node_modules/@npmcli/package-json/pa
 lib/node_modules/@npmcli/promise-spawn/
 lib/node_modules/@npmcli/promise-spawn/LICENSE
 lib/node_modules/@npmcli/promise-spawn/lib/
+lib/node_modules/@npmcli/promise-spawn/lib/escape.js
 lib/node_modules/@npmcli/promise-spawn/lib/index.js
 lib/node_modules/@npmcli/promise-spawn/package.json
 lib/node_modules/@npmcli/query/
@@ -301,7 +280,6 @@ lib/node_modules/@npmcli/query/package.j
 lib/node_modules/@npmcli/run-script/
 lib/node_modules/@npmcli/run-script/LICENSE
 lib/node_modules/@npmcli/run-script/lib/
-lib/node_modules/@npmcli/run-script/lib/escape.js
 lib/node_modules/@npmcli/run-script/lib/is-server-package.js
 lib/node_modules/@npmcli/run-script/lib/is-windows.js
 lib/node_modules/@npmcli/run-script/lib/make-spawn-args.js
@@ -331,8 +309,24 @@ lib/node_modules/@tootallnate/once/dist/
 lib/node_modules/@tootallnate/once/package.json
 lib/node_modules/abbrev/
 lib/node_modules/abbrev/LICENSE
-lib/node_modules/abbrev/abbrev.js
+lib/node_modules/abbrev/lib/
+lib/node_modules/abbrev/lib/index.js
 lib/node_modules/abbrev/package.json
+lib/node_modules/abort-controller/
+lib/node_modules/abort-controller/LICENSE
+lib/node_modules/abort-controller/browser.js
+lib/node_modules/abort-controller/browser.mjs
+lib/node_modules/abort-controller/dist/
+lib/node_modules/abort-controller/dist/abort-controller.d.ts
+lib/node_modules/abort-controller/dist/abort-controller.js
+lib/node_modules/abort-controller/dist/abort-controller.js.map
+lib/node_modules/abort-controller/dist/abort-controller.mjs
+lib/node_modules/abort-controller/dist/abort-controller.mjs.map
+lib/node_modules/abort-controller/dist/abort-controller.umd.js
+lib/node_modules/abort-controller/dist/abort-controller.umd.js.map
+lib/node_modules/abort-controller/package.json
+lib/node_modules/abort-controller/polyfill.js
+lib/node_modules/abort-controller/polyfill.mjs
 lib/node_modules/agent-base/
 lib/node_modules/agent-base/dist/
 lib/node_modules/agent-base/dist/src/
@@ -347,7 +341,6 @@ lib/node_modules/agent-base/src/
 lib/node_modules/agent-base/src/index.ts
 lib/node_modules/agent-base/src/promisify.ts
 lib/node_modules/agentkeepalive/
-lib/node_modules/agentkeepalive/History.md
 lib/node_modules/agentkeepalive/LICENSE
 lib/node_modules/agentkeepalive/browser.js
 lib/node_modules/agentkeepalive/index.d.ts
@@ -362,19 +355,16 @@ lib/node_modules/aggregate-error/index.d
 lib/node_modules/aggregate-error/index.js
 lib/node_modules/aggregate-error/license
 lib/node_modules/aggregate-error/package.json
-lib/node_modules/aggregate-error/readme.md
 lib/node_modules/ansi-regex/
 lib/node_modules/ansi-regex/index.d.ts
 lib/node_modules/ansi-regex/index.js
 lib/node_modules/ansi-regex/license
 lib/node_modules/ansi-regex/package.json
-lib/node_modules/ansi-regex/readme.md
 lib/node_modules/ansi-styles/
 lib/node_modules/ansi-styles/index.d.ts
 lib/node_modules/ansi-styles/index.js
 lib/node_modules/ansi-styles/license
 lib/node_modules/ansi-styles/package.json
-lib/node_modules/ansi-styles/readme.md
 lib/node_modules/aproba/
 lib/node_modules/aproba/LICENSE
 lib/node_modules/aproba/index.js
@@ -394,19 +384,63 @@ lib/node_modules/are-we-there-yet/lib/tr
 lib/node_modules/are-we-there-yet/lib/tracker-group.js
 lib/node_modules/are-we-there-yet/lib/tracker-stream.js
 lib/node_modules/are-we-there-yet/lib/tracker.js
+lib/node_modules/are-we-there-yet/node_modules/
+lib/node_modules/are-we-there-yet/node_modules/buffer/
+lib/node_modules/are-we-there-yet/node_modules/buffer/AUTHORS.md
+lib/node_modules/are-we-there-yet/node_modules/buffer/LICENSE
+lib/node_modules/are-we-there-yet/node_modules/buffer/index.d.ts
+lib/node_modules/are-we-there-yet/node_modules/buffer/index.js
+lib/node_modules/are-we-there-yet/node_modules/buffer/package.json
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_passthrough.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/buffer_list.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/compose.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/destroy.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/duplex.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/duplexify.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/end-of-stream.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/lazy_transform.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/legacy.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/operators.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/passthrough.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/pipeline.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/readable.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/state.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/transform.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/utils.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/writable.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/validators.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ours/
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ours/browser.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ours/errors.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ours/index.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ours/primordials.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/ours/util.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/stream/
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/stream.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/lib/stream/promises.js
+lib/node_modules/are-we-there-yet/node_modules/readable-stream/package.json
 lib/node_modules/are-we-there-yet/package.json
-lib/node_modules/asap/
-lib/node_modules/asap/CHANGES.md
-lib/node_modules/asap/LICENSE.md
-lib/node_modules/asap/asap.js
-lib/node_modules/asap/browser-asap.js
-lib/node_modules/asap/browser-raw.js
-lib/node_modules/asap/package.json
-lib/node_modules/asap/raw.js
 lib/node_modules/balanced-match/
 lib/node_modules/balanced-match/LICENSE.md
 lib/node_modules/balanced-match/index.js
 lib/node_modules/balanced-match/package.json
+lib/node_modules/base64-js/
+lib/node_modules/base64-js/LICENSE
+lib/node_modules/base64-js/base64js.min.js
+lib/node_modules/base64-js/index.d.ts
+lib/node_modules/base64-js/index.js
+lib/node_modules/base64-js/package.json
 lib/node_modules/bin-links/
 lib/node_modules/bin-links/LICENSE
 lib/node_modules/bin-links/lib/
@@ -425,12 +459,6 @@ lib/node_modules/bin-links/lib/link-gent
 lib/node_modules/bin-links/lib/link-mans.js
 lib/node_modules/bin-links/lib/man-target.js
 lib/node_modules/bin-links/lib/shim-bin.js
-lib/node_modules/bin-links/node_modules/
-lib/node_modules/bin-links/node_modules/npm-normalize-package-bin/
-lib/node_modules/bin-links/node_modules/npm-normalize-package-bin/LICENSE
-lib/node_modules/bin-links/node_modules/npm-normalize-package-bin/lib/
-lib/node_modules/bin-links/node_modules/npm-normalize-package-bin/lib/index.js
-lib/node_modules/bin-links/node_modules/npm-normalize-package-bin/package.json
 lib/node_modules/bin-links/package.json
 lib/node_modules/binary-extensions/
 lib/node_modules/binary-extensions/binary-extensions.json
@@ -439,14 +467,12 @@ lib/node_modules/binary-extensions/index
 lib/node_modules/binary-extensions/index.js
 lib/node_modules/binary-extensions/license
 lib/node_modules/binary-extensions/package.json
-lib/node_modules/binary-extensions/readme.md
 lib/node_modules/brace-expansion/
 lib/node_modules/brace-expansion/LICENSE
 lib/node_modules/brace-expansion/index.js
 lib/node_modules/brace-expansion/package.json
 lib/node_modules/builtins/
 lib/node_modules/builtins/License
-lib/node_modules/builtins/Readme.md
 lib/node_modules/builtins/index.js
 lib/node_modules/builtins/package.json
 lib/node_modules/cacache/
@@ -464,7 +490,7 @@ lib/node_modules/cacache/lib/memoization
 lib/node_modules/cacache/lib/put.js
 lib/node_modules/cacache/lib/rm.js
 lib/node_modules/cacache/lib/util/
-lib/node_modules/cacache/lib/util/fix-owner.js
+lib/node_modules/cacache/lib/util/glob.js
 lib/node_modules/cacache/lib/util/hash-to-segments.js
 lib/node_modules/cacache/lib/util/move-file.js
 lib/node_modules/cacache/lib/util/tmp.js
@@ -474,7 +500,6 @@ lib/node_modules/chalk/
 lib/node_modules/chalk/index.d.ts
 lib/node_modules/chalk/license
 lib/node_modules/chalk/package.json
-lib/node_modules/chalk/readme.md
 lib/node_modules/chalk/source/
 lib/node_modules/chalk/source/index.js
 lib/node_modules/chalk/source/templates.js
@@ -483,6 +508,12 @@ lib/node_modules/chownr/
 lib/node_modules/chownr/LICENSE
 lib/node_modules/chownr/chownr.js
 lib/node_modules/chownr/package.json
+lib/node_modules/ci-info/
+lib/node_modules/ci-info/LICENSE
+lib/node_modules/ci-info/index.d.ts
+lib/node_modules/ci-info/index.js
+lib/node_modules/ci-info/package.json
+lib/node_modules/ci-info/vendors.json
 lib/node_modules/cidr-regex/
 lib/node_modules/cidr-regex/LICENSE
 lib/node_modules/cidr-regex/index.d.ts
@@ -493,11 +524,10 @@ lib/node_modules/clean-stack/index.d.ts
 lib/node_modules/clean-stack/index.js
 lib/node_modules/clean-stack/license
 lib/node_modules/clean-stack/package.json
-lib/node_modules/clean-stack/readme.md
 lib/node_modules/cli-columns/
-lib/node_modules/cli-columns/LICENSE
 lib/node_modules/cli-columns/color.js
 lib/node_modules/cli-columns/index.js
+lib/node_modules/cli-columns/license
 lib/node_modules/cli-columns/package.json
 lib/node_modules/cli-columns/test.js
 lib/node_modules/cli-table3/
@@ -542,7 +572,6 @@ lib/node_modules/color-support/package.j
 lib/node_modules/columnify/
 lib/node_modules/columnify/LICENSE
 lib/node_modules/columnify/Makefile
-lib/node_modules/columnify/Readme.md
 lib/node_modules/columnify/columnify.js
 lib/node_modules/columnify/index.js
 lib/node_modules/columnify/package.json
@@ -637,17 +666,12 @@ lib/node_modules/debug/node_modules/ms/
 lib/node_modules/debug/node_modules/ms/index.js
 lib/node_modules/debug/node_modules/ms/license.md
 lib/node_modules/debug/node_modules/ms/package.json
-lib/node_modules/debug/node_modules/ms/readme.md
 lib/node_modules/debug/package.json
 lib/node_modules/debug/src/
 lib/node_modules/debug/src/browser.js
 lib/node_modules/debug/src/common.js
 lib/node_modules/debug/src/index.js
 lib/node_modules/debug/src/node.js
-lib/node_modules/debuglog/
-lib/node_modules/debuglog/LICENSE
-lib/node_modules/debuglog/debuglog.js
-lib/node_modules/debuglog/package.json
 lib/node_modules/defaults/
 lib/node_modules/defaults/LICENSE
 lib/node_modules/defaults/index.js
@@ -657,13 +681,11 @@ lib/node_modules/delegates/
 lib/node_modules/delegates/History.md
 lib/node_modules/delegates/License
 lib/node_modules/delegates/Makefile
-lib/node_modules/delegates/Readme.md
 lib/node_modules/delegates/index.js
 lib/node_modules/delegates/package.json
 lib/node_modules/depd/
 lib/node_modules/depd/History.md
 lib/node_modules/depd/LICENSE
-lib/node_modules/depd/Readme.md
 lib/node_modules/depd/index.js
 lib/node_modules/depd/lib/
 lib/node_modules/depd/lib/browser/
@@ -673,10 +695,6 @@ lib/node_modules/depd/lib/compat/callsit
 lib/node_modules/depd/lib/compat/event-listener-count.js
 lib/node_modules/depd/lib/compat/index.js
 lib/node_modules/depd/package.json
-lib/node_modules/dezalgo/
-lib/node_modules/dezalgo/LICENSE
-lib/node_modules/dezalgo/dezalgo.js
-lib/node_modules/dezalgo/package.json
 lib/node_modules/diff/
 lib/node_modules/diff/CONTRIBUTING.md
 lib/node_modules/diff/LICENSE
@@ -730,21 +748,74 @@ lib/node_modules/env-paths/index.d.ts
 lib/node_modules/env-paths/index.js
 lib/node_modules/env-paths/license
 lib/node_modules/env-paths/package.json
-lib/node_modules/env-paths/readme.md
 lib/node_modules/err-code/
 lib/node_modules/err-code/bower.json
 lib/node_modules/err-code/index.js
 lib/node_modules/err-code/index.umd.js
 lib/node_modules/err-code/package.json
+lib/node_modules/event-target-shim/
+lib/node_modules/event-target-shim/LICENSE
+lib/node_modules/event-target-shim/dist/
+lib/node_modules/event-target-shim/dist/event-target-shim.js
+lib/node_modules/event-target-shim/dist/event-target-shim.js.map
+lib/node_modules/event-target-shim/dist/event-target-shim.mjs
+lib/node_modules/event-target-shim/dist/event-target-shim.mjs.map
+lib/node_modules/event-target-shim/dist/event-target-shim.umd.js
+lib/node_modules/event-target-shim/dist/event-target-shim.umd.js.map
+lib/node_modules/event-target-shim/index.d.ts
+lib/node_modules/event-target-shim/package.json
+lib/node_modules/events/
+lib/node_modules/events/.airtap.yml
+lib/node_modules/events/History.md
+lib/node_modules/events/LICENSE
+lib/node_modules/events/events.js
+lib/node_modules/events/package.json
+lib/node_modules/events/security.md
+lib/node_modules/events/tests/
+lib/node_modules/events/tests/add-listeners.js
+lib/node_modules/events/tests/check-listener-leaks.js
+lib/node_modules/events/tests/common.js
+lib/node_modules/events/tests/errors.js
+lib/node_modules/events/tests/events-list.js
+lib/node_modules/events/tests/events-once.js
+lib/node_modules/events/tests/index.js
+lib/node_modules/events/tests/legacy-compat.js
+lib/node_modules/events/tests/listener-count.js
+lib/node_modules/events/tests/listeners-side-effects.js
+lib/node_modules/events/tests/listeners.js
+lib/node_modules/events/tests/max-listeners.js
+lib/node_modules/events/tests/method-names.js
+lib/node_modules/events/tests/modify-in-emit.js
+lib/node_modules/events/tests/num-args.js
+lib/node_modules/events/tests/once.js
+lib/node_modules/events/tests/prepend.js
+lib/node_modules/events/tests/remove-all-listeners.js
+lib/node_modules/events/tests/remove-listeners.js
+lib/node_modules/events/tests/set-max-listeners-side-effects.js
+lib/node_modules/events/tests/special-event-names.js
+lib/node_modules/events/tests/subclass.js
+lib/node_modules/events/tests/symbols.js
 lib/node_modules/fastest-levenshtein/
 lib/node_modules/fastest-levenshtein/LICENSE.md
-lib/node_modules/fastest-levenshtein/index.d.ts
-lib/node_modules/fastest-levenshtein/index.js
+lib/node_modules/fastest-levenshtein/bench.js
+lib/node_modules/fastest-levenshtein/esm/
+lib/node_modules/fastest-levenshtein/esm/mod.d.ts
+lib/node_modules/fastest-levenshtein/esm/mod.d.ts.map
+lib/node_modules/fastest-levenshtein/esm/mod.js
+lib/node_modules/fastest-levenshtein/mod.d.ts
+lib/node_modules/fastest-levenshtein/mod.js
 lib/node_modules/fastest-levenshtein/package.json
 lib/node_modules/fastest-levenshtein/test.js
+lib/node_modules/fastest-levenshtein/test.ts
 lib/node_modules/fs-minipass/
 lib/node_modules/fs-minipass/LICENSE
 lib/node_modules/fs-minipass/index.js
+lib/node_modules/fs-minipass/node_modules/
+lib/node_modules/fs-minipass/node_modules/minipass/
+lib/node_modules/fs-minipass/node_modules/minipass/LICENSE
+lib/node_modules/fs-minipass/node_modules/minipass/index.d.ts
+lib/node_modules/fs-minipass/node_modules/minipass/index.js
+lib/node_modules/fs-minipass/node_modules/minipass/package.json
 lib/node_modules/fs-minipass/package.json
 lib/node_modules/fs.realpath/
 lib/node_modules/fs.realpath/LICENSE
@@ -794,7 +865,6 @@ lib/node_modules/has-flag/index.d.ts
 lib/node_modules/has-flag/index.js
 lib/node_modules/has-flag/license
 lib/node_modules/has-flag/package.json
-lib/node_modules/has-flag/readme.md
 lib/node_modules/has-unicode/
 lib/node_modules/has-unicode/LICENSE
 lib/node_modules/has-unicode/index.js
@@ -806,9 +876,10 @@ lib/node_modules/has/src/index.js
 lib/node_modules/hosted-git-info/
 lib/node_modules/hosted-git-info/LICENSE
 lib/node_modules/hosted-git-info/lib/
-lib/node_modules/hosted-git-info/lib/git-host-info.js
-lib/node_modules/hosted-git-info/lib/git-host.js
+lib/node_modules/hosted-git-info/lib/from-url.js
+lib/node_modules/hosted-git-info/lib/hosts.js
 lib/node_modules/hosted-git-info/lib/index.js
+lib/node_modules/hosted-git-info/lib/parse-url.js
 lib/node_modules/hosted-git-info/package.json
 lib/node_modules/http-cache-semantics/
 lib/node_modules/http-cache-semantics/LICENSE
@@ -836,12 +907,10 @@ lib/node_modules/https-proxy-agent/dist/
 lib/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map
 lib/node_modules/https-proxy-agent/package.json
 lib/node_modules/humanize-ms/
-lib/node_modules/humanize-ms/History.md
 lib/node_modules/humanize-ms/LICENSE
 lib/node_modules/humanize-ms/index.js
 lib/node_modules/humanize-ms/package.json
 lib/node_modules/iconv-lite/
-lib/node_modules/iconv-lite/Changelog.md
 lib/node_modules/iconv-lite/LICENSE
 lib/node_modules/iconv-lite/encodings/
 lib/node_modules/iconv-lite/encodings/dbcs-codec.js
@@ -869,6 +938,11 @@ lib/node_modules/iconv-lite/lib/index.d.
 lib/node_modules/iconv-lite/lib/index.js
 lib/node_modules/iconv-lite/lib/streams.js
 lib/node_modules/iconv-lite/package.json
+lib/node_modules/ieee754/
+lib/node_modules/ieee754/LICENSE
+lib/node_modules/ieee754/index.d.ts
+lib/node_modules/ieee754/index.js
+lib/node_modules/ieee754/package.json
 lib/node_modules/ignore-walk/
 lib/node_modules/ignore-walk/LICENSE
 lib/node_modules/ignore-walk/lib/
@@ -883,7 +957,6 @@ lib/node_modules/indent-string/index.d.t
 lib/node_modules/indent-string/index.js
 lib/node_modules/indent-string/license
 lib/node_modules/indent-string/package.json
-lib/node_modules/indent-string/readme.md
 lib/node_modules/infer-owner/
 lib/node_modules/infer-owner/LICENSE
 lib/node_modules/infer-owner/index.js
@@ -914,7 +987,6 @@ lib/node_modules/ip-regex/index.d.ts
 lib/node_modules/ip-regex/index.js
 lib/node_modules/ip-regex/license
 lib/node_modules/ip-regex/package.json
-lib/node_modules/ip-regex/readme.md
 lib/node_modules/ip/lib/
 lib/node_modules/ip/lib/ip.js
 lib/node_modules/ip/package.json
@@ -933,7 +1005,6 @@ lib/node_modules/is-fullwidth-code-point
 lib/node_modules/is-fullwidth-code-point/index.js
 lib/node_modules/is-fullwidth-code-point/license
 lib/node_modules/is-fullwidth-code-point/package.json
-lib/node_modules/is-fullwidth-code-point/readme.md
 lib/node_modules/is-lambda/
 lib/node_modules/is-lambda/LICENSE
 lib/node_modules/is-lambda/index.js
@@ -947,7 +1018,8 @@ lib/node_modules/isexe/package.json
 lib/node_modules/isexe/windows.js
 lib/node_modules/json-parse-even-better-errors/
 lib/node_modules/json-parse-even-better-errors/LICENSE.md
-lib/node_modules/json-parse-even-better-errors/index.js
+lib/node_modules/json-parse-even-better-errors/lib/
+lib/node_modules/json-parse-even-better-errors/lib/index.js
 lib/node_modules/json-parse-even-better-errors/package.json
 lib/node_modules/json-stringify-nice/
 lib/node_modules/json-stringify-nice/LICENSE
@@ -1095,6 +1167,12 @@ lib/node_modules/minipass/
 lib/node_modules/minipass-collect/
 lib/node_modules/minipass-collect/LICENSE
 lib/node_modules/minipass-collect/index.js
+lib/node_modules/minipass-collect/node_modules/
+lib/node_modules/minipass-collect/node_modules/minipass/
+lib/node_modules/minipass-collect/node_modules/minipass/LICENSE
+lib/node_modules/minipass-collect/node_modules/minipass/index.d.ts
+lib/node_modules/minipass-collect/node_modules/minipass/index.js
+lib/node_modules/minipass-collect/node_modules/minipass/package.json
 lib/node_modules/minipass-collect/package.json
 lib/node_modules/minipass-fetch/
 lib/node_modules/minipass-fetch/LICENSE
@@ -1111,19 +1189,42 @@ lib/node_modules/minipass-fetch/package.
 lib/node_modules/minipass-flush/
 lib/node_modules/minipass-flush/LICENSE
 lib/node_modules/minipass-flush/index.js
+lib/node_modules/minipass-flush/node_modules/
+lib/node_modules/minipass-flush/node_modules/minipass/
+lib/node_modules/minipass-flush/node_modules/minipass/LICENSE
+lib/node_modules/minipass-flush/node_modules/minipass/index.d.ts
+lib/node_modules/minipass-flush/node_modules/minipass/index.js
+lib/node_modules/minipass-flush/node_modules/minipass/package.json
 lib/node_modules/minipass-flush/package.json
 lib/node_modules/minipass-json-stream/
 lib/node_modules/minipass-json-stream/LICENSE
 lib/node_modules/minipass-json-stream/index.js
+lib/node_modules/minipass-json-stream/node_modules/
+lib/node_modules/minipass-json-stream/node_modules/minipass/
+lib/node_modules/minipass-json-stream/node_modules/minipass/LICENSE
+lib/node_modules/minipass-json-stream/node_modules/minipass/index.d.ts
+lib/node_modules/minipass-json-stream/node_modules/minipass/index.js
+lib/node_modules/minipass-json-stream/node_modules/minipass/package.json
 lib/node_modules/minipass-json-stream/package.json
 lib/node_modules/minipass-pipeline/
 lib/node_modules/minipass-pipeline/LICENSE
 lib/node_modules/minipass-pipeline/index.js
+lib/node_modules/minipass-pipeline/node_modules/
+lib/node_modules/minipass-pipeline/node_modules/minipass/
+lib/node_modules/minipass-pipeline/node_modules/minipass/LICENSE
+lib/node_modules/minipass-pipeline/node_modules/minipass/index.d.ts
+lib/node_modules/minipass-pipeline/node_modules/minipass/index.js
+lib/node_modules/minipass-pipeline/node_modules/minipass/package.json
 lib/node_modules/minipass-pipeline/package.json
 lib/node_modules/minipass-sized/
 lib/node_modules/minipass-sized/LICENSE
 lib/node_modules/minipass-sized/index.js
-lib/node_modules/minipass-sized/package-lock.json
+lib/node_modules/minipass-sized/node_modules/
+lib/node_modules/minipass-sized/node_modules/minipass/
+lib/node_modules/minipass-sized/node_modules/minipass/LICENSE
+lib/node_modules/minipass-sized/node_modules/minipass/index.d.ts
+lib/node_modules/minipass-sized/node_modules/minipass/index.js
+lib/node_modules/minipass-sized/node_modules/minipass/package.json
 lib/node_modules/minipass-sized/package.json
 lib/node_modules/minipass/LICENSE
 lib/node_modules/minipass/index.d.ts
@@ -1133,13 +1234,14 @@ lib/node_modules/minizlib/
 lib/node_modules/minizlib/LICENSE
 lib/node_modules/minizlib/constants.js
 lib/node_modules/minizlib/index.js
+lib/node_modules/minizlib/node_modules/
+lib/node_modules/minizlib/node_modules/minipass/
+lib/node_modules/minizlib/node_modules/minipass/LICENSE
+lib/node_modules/minizlib/node_modules/minipass/index.d.ts
+lib/node_modules/minizlib/node_modules/minipass/index.js
+lib/node_modules/minizlib/node_modules/minipass/package.json
 lib/node_modules/minizlib/package.json
 lib/node_modules/mkdirp/
-lib/node_modules/mkdirp-infer-owner/
-lib/node_modules/mkdirp-infer-owner/LICENSE
-lib/node_modules/mkdirp-infer-owner/index.js
-lib/node_modules/mkdirp-infer-owner/package.json
-lib/node_modules/mkdirp/CHANGELOG.md
 lib/node_modules/mkdirp/LICENSE
 lib/node_modules/mkdirp/bin/
 lib/node_modules/mkdirp/bin/cmd.js
@@ -1157,7 +1259,6 @@ lib/node_modules/ms/
 lib/node_modules/ms/index.js
 lib/node_modules/ms/license.md
 lib/node_modules/ms/package.json
-lib/node_modules/ms/readme.md
 lib/node_modules/mute-stream/
 lib/node_modules/mute-stream/LICENSE
 lib/node_modules/mute-stream/mute.js
@@ -1214,7 +1315,6 @@ lib/node_modules/node-gyp/gyp/LICENSE
 lib/node_modules/node-gyp/gyp/README.md
 ${MODPY_COMMENT}lib/node_modules/node-gyp/gyp/${MODPY_PYCACHE}/
 lib/node_modules/node-gyp/gyp/${MODPY_PYCACHE}gyp_main.${MODPY_PYC_MAGIC_TAG}pyc
-lib/node_modules/node-gyp/gyp/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc
 lib/node_modules/node-gyp/gyp/${MODPY_PYCACHE}test_gyp.${MODPY_PYC_MAGIC_TAG}pyc
 lib/node_modules/node-gyp/gyp/data/
 lib/node_modules/node-gyp/gyp/data/win/
@@ -1309,8 +1409,7 @@ lib/node_modules/node-gyp/gyp/pylib/gyp/
 lib/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py
 lib/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
 lib/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
-lib/node_modules/node-gyp/gyp/requirements_dev.txt
-lib/node_modules/node-gyp/gyp/setup.py
+lib/node_modules/node-gyp/gyp/pyproject.toml
 lib/node_modules/node-gyp/gyp/test_gyp.py
 lib/node_modules/node-gyp/gyp/tools/
 lib/node_modules/node-gyp/gyp/tools/README
@@ -1355,22 +1454,157 @@ lib/node_modules/node-gyp/lib/util.js
 lib/node_modules/node-gyp/macOS_Catalina.md
 lib/node_modules/node-gyp/macOS_Catalina_acid_test.sh
 lib/node_modules/node-gyp/node_modules/
+lib/node_modules/node-gyp/node_modules/@npmcli/
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/LICENSE.md
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/common/
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/common/get-options.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/common/node.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/common/owner-sync.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/common/owner.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/copy-file.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/cp/
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/cp/LICENSE
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/cp/index.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/cp/polyfill.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/errors.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/fs.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/index.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/mkdir.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/mkdtemp.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/rm/
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/rm/index.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/rm/polyfill.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/with-owner-sync.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/with-owner.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/with-temp-dir.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/lib/write-file.js
+lib/node_modules/node-gyp/node_modules/@npmcli/fs/package.json
+lib/node_modules/node-gyp/node_modules/@npmcli/move-file/
+lib/node_modules/node-gyp/node_modules/@npmcli/move-file/LICENSE.md
+lib/node_modules/node-gyp/node_modules/@npmcli/move-file/lib/
+lib/node_modules/node-gyp/node_modules/@npmcli/move-file/lib/index.js
+lib/node_modules/node-gyp/node_modules/@npmcli/move-file/package.json
+lib/node_modules/node-gyp/node_modules/abbrev/
+lib/node_modules/node-gyp/node_modules/abbrev/LICENSE
+lib/node_modules/node-gyp/node_modules/abbrev/abbrev.js
+lib/node_modules/node-gyp/node_modules/abbrev/package.json
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/LICENSE.md
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/lib/
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/lib/index.js
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-base.js
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-group.js
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-stream.js
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker.js
+lib/node_modules/node-gyp/node_modules/are-we-there-yet/package.json
 lib/node_modules/node-gyp/node_modules/brace-expansion/
 lib/node_modules/node-gyp/node_modules/brace-expansion/LICENSE
 lib/node_modules/node-gyp/node_modules/brace-expansion/index.js
 lib/node_modules/node-gyp/node_modules/brace-expansion/package.json
+lib/node_modules/node-gyp/node_modules/cacache/
+lib/node_modules/node-gyp/node_modules/cacache/LICENSE.md
+lib/node_modules/node-gyp/node_modules/cacache/lib/
+lib/node_modules/node-gyp/node_modules/cacache/lib/content/
+lib/node_modules/node-gyp/node_modules/cacache/lib/content/path.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/content/read.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/content/rm.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/content/write.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/entry-index.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/get.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/index.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/memoization.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/put.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/rm.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/util/
+lib/node_modules/node-gyp/node_modules/cacache/lib/util/fix-owner.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/util/hash-to-segments.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/util/move-file.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/util/tmp.js
+lib/node_modules/node-gyp/node_modules/cacache/lib/verify.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/LICENSE
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/index.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/package.json
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/glob/
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/glob/LICENSE
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/glob/common.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/glob/glob.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/glob/package.json
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/glob/sync.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/LICENSE
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/lib/
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/lib/path.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/minimatch.js
+lib/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/package.json
+lib/node_modules/node-gyp/node_modules/cacache/package.json
+lib/node_modules/node-gyp/node_modules/gauge/
+lib/node_modules/node-gyp/node_modules/gauge/LICENSE.md
+lib/node_modules/node-gyp/node_modules/gauge/lib/
+lib/node_modules/node-gyp/node_modules/gauge/lib/base-theme.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/error.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/has-color.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/index.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/plumbing.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/process.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/progress-bar.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/render-template.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/set-immediate.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/set-interval.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/spin.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/template-item.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/theme-set.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/themes.js
+lib/node_modules/node-gyp/node_modules/gauge/lib/wide-truncate.js
+lib/node_modules/node-gyp/node_modules/gauge/package.json
 lib/node_modules/node-gyp/node_modules/glob/
 lib/node_modules/node-gyp/node_modules/glob/LICENSE
 lib/node_modules/node-gyp/node_modules/glob/common.js
 lib/node_modules/node-gyp/node_modules/glob/glob.js
 lib/node_modules/node-gyp/node_modules/glob/package.json
 lib/node_modules/node-gyp/node_modules/glob/sync.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/LICENSE
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/agent.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/entry.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/errors.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/index.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/key.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/policy.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/dns.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/fetch.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/index.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/options.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/pipeline.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/remote.js
+lib/node_modules/node-gyp/node_modules/make-fetch-happen/package.json
 lib/node_modules/node-gyp/node_modules/minimatch/
 lib/node_modules/node-gyp/node_modules/minimatch/LICENSE
 lib/node_modules/node-gyp/node_modules/minimatch/minimatch.js
 lib/node_modules/node-gyp/node_modules/minimatch/package.json
+lib/node_modules/node-gyp/node_modules/minipass/
+lib/node_modules/node-gyp/node_modules/minipass-fetch/
+lib/node_modules/node-gyp/node_modules/minipass-fetch/LICENSE
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/abort-error.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/blob.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/body.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/fetch-error.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/headers.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/index.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/request.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/lib/response.js
+lib/node_modules/node-gyp/node_modules/minipass-fetch/package.json
+lib/node_modules/node-gyp/node_modules/minipass/LICENSE
+lib/node_modules/node-gyp/node_modules/minipass/index.d.ts
+lib/node_modules/node-gyp/node_modules/minipass/index.js
+lib/node_modules/node-gyp/node_modules/minipass/package.json
 lib/node_modules/node-gyp/node_modules/nopt/
-lib/node_modules/node-gyp/node_modules/nopt/CHANGELOG.md
 lib/node_modules/node-gyp/node_modules/nopt/LICENSE
 lib/node_modules/node-gyp/node_modules/nopt/README.md
 lib/node_modules/node-gyp/node_modules/nopt/bin/
@@ -1378,6 +1612,33 @@ lib/node_modules/node-gyp/node_modules/n
 lib/node_modules/node-gyp/node_modules/nopt/lib/
 lib/node_modules/node-gyp/node_modules/nopt/lib/nopt.js
 lib/node_modules/node-gyp/node_modules/nopt/package.json
+lib/node_modules/node-gyp/node_modules/npmlog/
+lib/node_modules/node-gyp/node_modules/npmlog/LICENSE.md
+lib/node_modules/node-gyp/node_modules/npmlog/lib/
+lib/node_modules/node-gyp/node_modules/npmlog/lib/log.js
+lib/node_modules/node-gyp/node_modules/npmlog/package.json
+lib/node_modules/node-gyp/node_modules/ssri/
+lib/node_modules/node-gyp/node_modules/ssri/LICENSE.md
+lib/node_modules/node-gyp/node_modules/ssri/lib/
+lib/node_modules/node-gyp/node_modules/ssri/lib/index.js
+lib/node_modules/node-gyp/node_modules/ssri/package.json
+lib/node_modules/node-gyp/node_modules/unique-filename/
+lib/node_modules/node-gyp/node_modules/unique-filename/LICENSE
+lib/node_modules/node-gyp/node_modules/unique-filename/lib/
+lib/node_modules/node-gyp/node_modules/unique-filename/lib/index.js
+lib/node_modules/node-gyp/node_modules/unique-filename/package.json
+lib/node_modules/node-gyp/node_modules/unique-slug/
+lib/node_modules/node-gyp/node_modules/unique-slug/LICENSE
+lib/node_modules/node-gyp/node_modules/unique-slug/lib/
+lib/node_modules/node-gyp/node_modules/unique-slug/lib/index.js
+lib/node_modules/node-gyp/node_modules/unique-slug/package.json
+lib/node_modules/node-gyp/node_modules/which/
+lib/node_modules/node-gyp/node_modules/which/LICENSE
+lib/node_modules/node-gyp/node_modules/which/README.md
+lib/node_modules/node-gyp/node_modules/which/bin/
+lib/node_modules/node-gyp/node_modules/which/bin/node-which
+lib/node_modules/node-gyp/node_modules/which/package.json
+lib/node_modules/node-gyp/node_modules/which/which.js
 lib/node_modules/node-gyp/package.json
 lib/node_modules/node-gyp/src/
 lib/node_modules/node-gyp/src/win_delay_load_hook.cc
@@ -1438,12 +1699,6 @@ lib/node_modules/npm-bundled/
 lib/node_modules/npm-bundled/LICENSE
 lib/node_modules/npm-bundled/lib/
 lib/node_modules/npm-bundled/lib/index.js
-lib/node_modules/npm-bundled/node_modules/
-lib/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/
-lib/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/LICENSE
-lib/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/lib/
-lib/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/lib/index.js
-lib/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/package.json
 lib/node_modules/npm-bundled/package.json
 lib/node_modules/npm-install-checks/
 lib/node_modules/npm-install-checks/LICENSE
@@ -1452,8 +1707,8 @@ lib/node_modules/npm-install-checks/lib/
 lib/node_modules/npm-install-checks/package.json
 lib/node_modules/npm-normalize-package-bin/
 lib/node_modules/npm-normalize-package-bin/LICENSE
-lib/node_modules/npm-normalize-package-bin/index.js
-lib/node_modules/npm-normalize-package-bin/package-lock.json
+lib/node_modules/npm-normalize-package-bin/lib/
+lib/node_modules/npm-normalize-package-bin/lib/index.js
 lib/node_modules/npm-normalize-package-bin/package.json
 lib/node_modules/npm-package-arg/
 lib/node_modules/npm-package-arg/LICENSE
@@ -1462,28 +1717,13 @@ lib/node_modules/npm-package-arg/lib/npa
 lib/node_modules/npm-package-arg/package.json
 lib/node_modules/npm-packlist/
 lib/node_modules/npm-packlist/LICENSE
-lib/node_modules/npm-packlist/README.md
-lib/node_modules/npm-packlist/bin/
-lib/node_modules/npm-packlist/bin/index.js
 lib/node_modules/npm-packlist/lib/
 lib/node_modules/npm-packlist/lib/index.js
-lib/node_modules/npm-packlist/node_modules/
-lib/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/
-lib/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/LICENSE
-lib/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/lib/
-lib/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/lib/index.js
-lib/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/package.json
 lib/node_modules/npm-packlist/package.json
 lib/node_modules/npm-pick-manifest/
 lib/node_modules/npm-pick-manifest/LICENSE.md
 lib/node_modules/npm-pick-manifest/lib/
 lib/node_modules/npm-pick-manifest/lib/index.js
-lib/node_modules/npm-pick-manifest/node_modules/
-lib/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/
-lib/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/LICENSE
-lib/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/lib/
-lib/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/lib/index.js
-lib/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/package.json
 lib/node_modules/npm-pick-manifest/package.json
 lib/node_modules/npm-profile/
 lib/node_modules/npm-profile/LICENSE.md
@@ -1518,12 +1758,12 @@ lib/node_modules/npm/bin/npx
 lib/node_modules/npm/bin/npx-cli.js
 lib/node_modules/npm/bin/npx.cmd
 lib/node_modules/npm/docs/
+lib/node_modules/npm/docs/README.md
 lib/node_modules/npm/docs/content/
 lib/node_modules/npm/docs/content/commands/
 lib/node_modules/npm/docs/content/commands/npm-access.md
 lib/node_modules/npm/docs/content/commands/npm-adduser.md
 lib/node_modules/npm/docs/content/commands/npm-audit.md
-lib/node_modules/npm/docs/content/commands/npm-bin.md
 lib/node_modules/npm/docs/content/commands/npm-bugs.md
 lib/node_modules/npm/docs/content/commands/npm-cache.md
 lib/node_modules/npm/docs/content/commands/npm-ci.md
@@ -1549,6 +1789,7 @@ lib/node_modules/npm/docs/content/comman
 lib/node_modules/npm/docs/content/commands/npm-install-test.md
 lib/node_modules/npm/docs/content/commands/npm-install.md
 lib/node_modules/npm/docs/content/commands/npm-link.md
+lib/node_modules/npm/docs/content/commands/npm-login.md
 lib/node_modules/npm/docs/content/commands/npm-logout.md
 lib/node_modules/npm/docs/content/commands/npm-ls.md
 lib/node_modules/npm/docs/content/commands/npm-org.md
@@ -1568,7 +1809,6 @@ lib/node_modules/npm/docs/content/comman
 lib/node_modules/npm/docs/content/commands/npm-root.md
 lib/node_modules/npm/docs/content/commands/npm-run-script.md
 lib/node_modules/npm/docs/content/commands/npm-search.md
-lib/node_modules/npm/docs/content/commands/npm-set-script.md
 lib/node_modules/npm/docs/content/commands/npm-shrinkwrap.md
 lib/node_modules/npm/docs/content/commands/npm-star.md
 lib/node_modules/npm/docs/content/commands/npm-stars.md
@@ -1610,7 +1850,6 @@ lib/node_modules/npm/docs/output/command
 lib/node_modules/npm/docs/output/commands/npm-access.html
 lib/node_modules/npm/docs/output/commands/npm-adduser.html
 lib/node_modules/npm/docs/output/commands/npm-audit.html
-lib/node_modules/npm/docs/output/commands/npm-bin.html
 lib/node_modules/npm/docs/output/commands/npm-bugs.html
 lib/node_modules/npm/docs/output/commands/npm-cache.html
 lib/node_modules/npm/docs/output/commands/npm-ci.html
@@ -1636,6 +1875,7 @@ lib/node_modules/npm/docs/output/command
 lib/node_modules/npm/docs/output/commands/npm-install-test.html
 lib/node_modules/npm/docs/output/commands/npm-install.html
 lib/node_modules/npm/docs/output/commands/npm-link.html
+lib/node_modules/npm/docs/output/commands/npm-login.html
 lib/node_modules/npm/docs/output/commands/npm-logout.html
 lib/node_modules/npm/docs/output/commands/npm-ls.html
 lib/node_modules/npm/docs/output/commands/npm-org.html
@@ -1655,7 +1895,6 @@ lib/node_modules/npm/docs/output/command
 lib/node_modules/npm/docs/output/commands/npm-root.html
 lib/node_modules/npm/docs/output/commands/npm-run-script.html
 lib/node_modules/npm/docs/output/commands/npm-search.html
-lib/node_modules/npm/docs/output/commands/npm-set-script.html
 lib/node_modules/npm/docs/output/commands/npm-shrinkwrap.html
 lib/node_modules/npm/docs/output/commands/npm-star.html
 lib/node_modules/npm/docs/output/commands/npm-stars.html
@@ -1695,19 +1934,12 @@ lib/node_modules/npm/docs/output/using-n
 lib/node_modules/npm/index.js
 lib/node_modules/npm/lib/
 lib/node_modules/npm/lib/arborist-cmd.js
-lib/node_modules/npm/lib/auth/
-lib/node_modules/npm/lib/auth/legacy.js
-lib/node_modules/npm/lib/auth/oauth.js
-lib/node_modules/npm/lib/auth/saml.js
-lib/node_modules/npm/lib/auth/sso.js
 lib/node_modules/npm/lib/base-command.js
 lib/node_modules/npm/lib/cli.js
 lib/node_modules/npm/lib/commands/
 lib/node_modules/npm/lib/commands/access.js
 lib/node_modules/npm/lib/commands/adduser.js
 lib/node_modules/npm/lib/commands/audit.js
-lib/node_modules/npm/lib/commands/bin.js
-lib/node_modules/npm/lib/commands/birthday.js
 lib/node_modules/npm/lib/commands/bugs.js
 lib/node_modules/npm/lib/commands/cache.js
 lib/node_modules/npm/lib/commands/ci.js
@@ -1735,6 +1967,7 @@ lib/node_modules/npm/lib/commands/instal
 lib/node_modules/npm/lib/commands/install.js
 lib/node_modules/npm/lib/commands/link.js
 lib/node_modules/npm/lib/commands/ll.js
+lib/node_modules/npm/lib/commands/login.js
 lib/node_modules/npm/lib/commands/logout.js
 lib/node_modules/npm/lib/commands/ls.js
 lib/node_modules/npm/lib/commands/org.js
@@ -1754,7 +1987,6 @@ lib/node_modules/npm/lib/commands/restar
 lib/node_modules/npm/lib/commands/root.js
 lib/node_modules/npm/lib/commands/run-script.js
 lib/node_modules/npm/lib/commands/search.js
-lib/node_modules/npm/lib/commands/set-script.js
 lib/node_modules/npm/lib/commands/set.js
 lib/node_modules/npm/lib/commands/shrinkwrap.js
 lib/node_modules/npm/lib/commands/star.js
@@ -1777,6 +2009,7 @@ lib/node_modules/npm/lib/package-url-cmd
 lib/node_modules/npm/lib/utils/
 lib/node_modules/npm/lib/utils/ansi-trim.js
 lib/node_modules/npm/lib/utils/audit-error.js
+lib/node_modules/npm/lib/utils/auth.js
 lib/node_modules/npm/lib/utils/cmd-list.js
 lib/node_modules/npm/lib/utils/completion/
 lib/node_modules/npm/lib/utils/completion.sh
@@ -1785,8 +2018,6 @@ lib/node_modules/npm/lib/utils/completio
 lib/node_modules/npm/lib/utils/config/
 lib/node_modules/npm/lib/utils/config/definition.js
 lib/node_modules/npm/lib/utils/config/definitions.js
-lib/node_modules/npm/lib/utils/config/describe-all.js
-lib/node_modules/npm/lib/utils/config/flatten.js
 lib/node_modules/npm/lib/utils/config/index.js
 lib/node_modules/npm/lib/utils/did-you-mean.js
 lib/node_modules/npm/lib/utils/display.js
@@ -1824,7 +2055,6 @@ lib/node_modules/npm/man/man1/
 @man lib/node_modules/npm/man/man1/npm-access.1
 @man lib/node_modules/npm/man/man1/npm-adduser.1
 @man lib/node_modules/npm/man/man1/npm-audit.1
-@man lib/node_modules/npm/man/man1/npm-bin.1
 @man lib/node_modules/npm/man/man1/npm-bugs.1
 @man lib/node_modules/npm/man/man1/npm-cache.1
 @man lib/node_modules/npm/man/man1/npm-ci.1
@@ -1850,6 +2080,7 @@ lib/node_modules/npm/man/man1/
 @man lib/node_modules/npm/man/man1/npm-install-test.1
 @man lib/node_modules/npm/man/man1/npm-install.1
 @man lib/node_modules/npm/man/man1/npm-link.1
+@man lib/node_modules/npm/man/man1/npm-login.1
 @man lib/node_modules/npm/man/man1/npm-logout.1
 @man lib/node_modules/npm/man/man1/npm-ls.1
 @man lib/node_modules/npm/man/man1/npm-org.1
@@ -1869,7 +2100,6 @@ lib/node_modules/npm/man/man1/
 @man lib/node_modules/npm/man/man1/npm-root.1
 @man lib/node_modules/npm/man/man1/npm-run-script.1
 @man lib/node_modules/npm/man/man1/npm-search.1
-@man lib/node_modules/npm/man/man1/npm-set-script.1
 @man lib/node_modules/npm/man/man1/npm-shrinkwrap.1
 @man lib/node_modules/npm/man/man1/npm-star.1
 @man lib/node_modules/npm/man/man1/npm-stars.1
@@ -1890,6 +2120,8 @@ lib/node_modules/npm/man/man1/
 lib/node_modules/npm/man/man5/
 @man lib/node_modules/npm/man/man5/folders.5
 @man lib/node_modules/npm/man/man5/install.5
+@man lib/node_modules/npm/man/man5/npm-global.5
+@man lib/node_modules/npm/man/man5/npm-json.5
 @man lib/node_modules/npm/man/man5/npm-shrinkwrap-json.5
 @man lib/node_modules/npm/man/man5/npmrc.5
 @man lib/node_modules/npm/man/man5/package-json.5
@@ -1913,6 +2145,7 @@ lib/node_modules/npm/node_modules/@isaac
 lib/node_modules/npm/node_modules/@npmcli
 lib/node_modules/npm/node_modules/@tootallnate
 lib/node_modules/npm/node_modules/abbrev
+lib/node_modules/npm/node_modules/abort-controller
 lib/node_modules/npm/node_modules/agent-base
 lib/node_modules/npm/node_modules/agentkeepalive
 lib/node_modules/npm/node_modules/aggregate-error
@@ -1921,8 +2154,8 @@ lib/node_modules/npm/node_modules/ansi-s
 lib/node_modules/npm/node_modules/aproba
 lib/node_modules/npm/node_modules/archy
 lib/node_modules/npm/node_modules/are-we-there-yet
-lib/node_modules/npm/node_modules/asap
 lib/node_modules/npm/node_modules/balanced-match
+lib/node_modules/npm/node_modules/base64-js
 lib/node_modules/npm/node_modules/bin-links
 lib/node_modules/npm/node_modules/binary-extensions
 lib/node_modules/npm/node_modules/brace-expansion
@@ -1930,6 +2163,7 @@ lib/node_modules/npm/node_modules/builti
 lib/node_modules/npm/node_modules/cacache
 lib/node_modules/npm/node_modules/chalk
 lib/node_modules/npm/node_modules/chownr
+lib/node_modules/npm/node_modules/ci-info
 lib/node_modules/npm/node_modules/cidr-regex
 lib/node_modules/npm/node_modules/clean-stack
 lib/node_modules/npm/node_modules/cli-columns
@@ -1945,16 +2179,16 @@ lib/node_modules/npm/node_modules/concat
 lib/node_modules/npm/node_modules/console-control-strings
 lib/node_modules/npm/node_modules/cssesc
 lib/node_modules/npm/node_modules/debug
-lib/node_modules/npm/node_modules/debuglog
 lib/node_modules/npm/node_modules/defaults
 lib/node_modules/npm/node_modules/delegates
 lib/node_modules/npm/node_modules/depd
-lib/node_modules/npm/node_modules/dezalgo
 lib/node_modules/npm/node_modules/diff
 lib/node_modules/npm/node_modules/emoji-regex
 lib/node_modules/npm/node_modules/encoding
 lib/node_modules/npm/node_modules/env-paths
 lib/node_modules/npm/node_modules/err-code
+lib/node_modules/npm/node_modules/event-target-shim
+lib/node_modules/npm/node_modules/events
 lib/node_modules/npm/node_modules/fastest-levenshtein
 lib/node_modules/npm/node_modules/fs-minipass
 lib/node_modules/npm/node_modules/fs.realpath
@@ -1971,6 +2205,7 @@ lib/node_modules/npm/node_modules/http-p
 lib/node_modules/npm/node_modules/https-proxy-agent
 lib/node_modules/npm/node_modules/humanize-ms
 lib/node_modules/npm/node_modules/iconv-lite
+lib/node_modules/npm/node_modules/ieee754
 lib/node_modules/npm/node_modules/ignore-walk
 lib/node_modules/npm/node_modules/imurmurhash
 lib/node_modules/npm/node_modules/indent-string
@@ -2014,7 +2249,6 @@ lib/node_modules/npm/node_modules/minipa
 lib/node_modules/npm/node_modules/minipass-sized
 lib/node_modules/npm/node_modules/minizlib
 lib/node_modules/npm/node_modules/mkdirp
-lib/node_modules/npm/node_modules/mkdirp-infer-owner
 lib/node_modules/npm/node_modules/ms
 lib/node_modules/npm/node_modules/mute-stream
 lib/node_modules/npm/node_modules/negotiator
@@ -2034,13 +2268,13 @@ lib/node_modules/npm/node_modules/npm-re
 lib/node_modules/npm/node_modules/npm-user-validate
 lib/node_modules/npm/node_modules/npmlog
 lib/node_modules/npm/node_modules/once
-lib/node_modules/npm/node_modules/opener
 lib/node_modules/npm/node_modules/p-map
 lib/node_modules/npm/node_modules/pacote
 lib/node_modules/npm/node_modules/parse-conflict-json
 lib/node_modules/npm/node_modules/path-is-absolute
 lib/node_modules/npm/node_modules/postcss-selector-parser
 lib/node_modules/npm/node_modules/proc-log
+lib/node_modules/npm/node_modules/process
 lib/node_modules/npm/node_modules/promise-all-reject-late
 lib/node_modules/npm/node_modules/promise-call-limit
 lib/node_modules/npm/node_modules/promise-inflight
@@ -2052,7 +2286,6 @@ lib/node_modules/npm/node_modules/read-c
 lib/node_modules/npm/node_modules/read-package-json
 lib/node_modules/npm/node_modules/read-package-json-fast
 lib/node_modules/npm/node_modules/readable-stream
-lib/node_modules/npm/node_modules/readdir-scoped-modules
 lib/node_modules/npm/node_modules/retry
 lib/node_modules/npm/node_modules/rimraf
 lib/node_modules/npm/node_modules/safe-buffer
@@ -2098,20 +2331,11 @@ lib/node_modules/once/
 lib/node_modules/once/LICENSE
 lib/node_modules/once/once.js
 lib/node_modules/once/package.json
-lib/node_modules/opener/
-lib/node_modules/opener/LICENSE.txt
-lib/node_modules/opener/README.md
-lib/node_modules/opener/bin/
-lib/node_modules/opener/bin/opener-bin.js
-lib/node_modules/opener/lib/
-lib/node_modules/opener/lib/opener.js
-lib/node_modules/opener/package.json
 lib/node_modules/p-map/
 lib/node_modules/p-map/index.d.ts
 lib/node_modules/p-map/index.js
 lib/node_modules/p-map/license
 lib/node_modules/p-map/package.json
-lib/node_modules/p-map/readme.md
 lib/node_modules/pacote/
 lib/node_modules/pacote/LICENSE
 lib/node_modules/pacote/README.md
@@ -2141,7 +2365,6 @@ lib/node_modules/path-is-absolute/
 lib/node_modules/path-is-absolute/index.js
 lib/node_modules/path-is-absolute/license
 lib/node_modules/path-is-absolute/package.json
-lib/node_modules/path-is-absolute/readme.md
 lib/node_modules/postcss-selector-parser/
 lib/node_modules/postcss-selector-parser/API.md
 lib/node_modules/postcss-selector-parser/LICENSE-MIT
@@ -2185,10 +2408,15 @@ lib/node_modules/proc-log/LICENSE
 lib/node_modules/proc-log/lib/
 lib/node_modules/proc-log/lib/index.js
 lib/node_modules/proc-log/package.json
+lib/node_modules/process/
+lib/node_modules/process/LICENSE
+lib/node_modules/process/browser.js
+lib/node_modules/process/index.js
+lib/node_modules/process/package.json
+lib/node_modules/process/test.js
 lib/node_modules/promise-all-reject-late/
 lib/node_modules/promise-all-reject-late/LICENSE
 lib/node_modules/promise-all-reject-late/index.js
-lib/node_modules/promise-all-reject-late/package-lock.json
 lib/node_modules/promise-all-reject-late/package.json
 lib/node_modules/promise-call-limit/
 lib/node_modules/promise-call-limit/LICENSE
@@ -2249,17 +2477,12 @@ lib/node_modules/read-cmd-shim/package.j
 lib/node_modules/read-package-json/
 lib/node_modules/read-package-json-fast/
 lib/node_modules/read-package-json-fast/LICENSE
-lib/node_modules/read-package-json-fast/index.js
+lib/node_modules/read-package-json-fast/lib/
+lib/node_modules/read-package-json-fast/lib/index.js
 lib/node_modules/read-package-json-fast/package.json
 lib/node_modules/read-package-json/LICENSE
 lib/node_modules/read-package-json/lib/
 lib/node_modules/read-package-json/lib/read-json.js
-lib/node_modules/read-package-json/node_modules/
-lib/node_modules/read-package-json/node_modules/npm-normalize-package-bin/
-lib/node_modules/read-package-json/node_modules/npm-normalize-package-bin/LICENSE
-lib/node_modules/read-package-json/node_modules/npm-normalize-package-bin/lib/
-lib/node_modules/read-package-json/node_modules/npm-normalize-package-bin/lib/index.js
-lib/node_modules/read-package-json/node_modules/npm-normalize-package-bin/package.json
 lib/node_modules/read-package-json/package.json
 lib/node_modules/read/LICENSE
 lib/node_modules/read/lib/
@@ -2293,10 +2516,6 @@ lib/node_modules/readable-stream/lib/int
 lib/node_modules/readable-stream/package.json
 lib/node_modules/readable-stream/readable-browser.js
 lib/node_modules/readable-stream/readable.js
-lib/node_modules/readdir-scoped-modules/
-lib/node_modules/readdir-scoped-modules/LICENSE
-lib/node_modules/readdir-scoped-modules/package.json
-lib/node_modules/readdir-scoped-modules/readdir.js
 lib/node_modules/retry/
 lib/node_modules/retry/License
 lib/node_modules/retry/Makefile
@@ -2310,7 +2529,6 @@ lib/node_modules/retry/lib/retry.js
 lib/node_modules/retry/lib/retry_operation.js
 lib/node_modules/retry/package.json
 lib/node_modules/rimraf/
-lib/node_modules/rimraf/CHANGELOG.md
 lib/node_modules/rimraf/LICENSE
 lib/node_modules/rimraf/README.md
 lib/node_modules/rimraf/bin.js
@@ -2339,7 +2557,6 @@ lib/node_modules/safe-buffer/package.jso
 lib/node_modules/safer-buffer/
 lib/node_modules/safer-buffer/LICENSE
 lib/node_modules/safer-buffer/Porting-Buffer.md
-lib/node_modules/safer-buffer/Readme.md
 lib/node_modules/safer-buffer/dangerous.js
 lib/node_modules/safer-buffer/package.json
 lib/node_modules/safer-buffer/safer.js
@@ -2502,7 +2719,6 @@ lib/node_modules/string-width/index.d.ts
 lib/node_modules/string-width/index.js
 lib/node_modules/string-width/license
 lib/node_modules/string-width/package.json
-lib/node_modules/string-width/readme.md
 lib/node_modules/string_decoder/
 lib/node_modules/string_decoder/LICENSE
 lib/node_modules/string_decoder/lib/
@@ -2513,13 +2729,11 @@ lib/node_modules/strip-ansi/index.d.ts
 lib/node_modules/strip-ansi/index.js
 lib/node_modules/strip-ansi/license
 lib/node_modules/strip-ansi/package.json
-lib/node_modules/strip-ansi/readme.md
 lib/node_modules/supports-color/
 lib/node_modules/supports-color/browser.js
 lib/node_modules/supports-color/index.js
 lib/node_modules/supports-color/license
 lib/node_modules/supports-color/package.json
-lib/node_modules/supports-color/readme.md
 lib/node_modules/tar/
 lib/node_modules/tar/LICENSE
 lib/node_modules/tar/index.js
@@ -2560,7 +2774,6 @@ lib/node_modules/text-table/example/doub
 lib/node_modules/text-table/example/table.js
 lib/node_modules/text-table/index.js
 lib/node_modules/text-table/package.json
-lib/node_modules/text-table/readme.markdown
 lib/node_modules/tiny-relative-date/
 lib/node_modules/tiny-relative-date/LICENSE.md
 lib/node_modules/tiny-relative-date/lib/
@@ -2615,20 +2828,19 @@ lib/node_modules/walk-up-path/index.js
 lib/node_modules/walk-up-path/package.json
 lib/node_modules/wcwidth/
 lib/node_modules/wcwidth/LICENSE
-lib/node_modules/wcwidth/Readme.md
 lib/node_modules/wcwidth/combining.js
 lib/node_modules/wcwidth/docs/
 lib/node_modules/wcwidth/docs/index.md
 lib/node_modules/wcwidth/index.js
 lib/node_modules/wcwidth/package.json
 lib/node_modules/which/
-lib/node_modules/which/CHANGELOG.md
 lib/node_modules/which/LICENSE
 lib/node_modules/which/README.md
 lib/node_modules/which/bin/
-lib/node_modules/which/bin/node-which
+lib/node_modules/which/bin/which.js
+lib/node_modules/which/lib/
+lib/node_modules/which/lib/index.js
 lib/node_modules/which/package.json
-lib/node_modules/which/which.js
 lib/node_modules/wide-align/
 lib/node_modules/wide-align/LICENSE
 lib/node_modules/wide-align/align.js

Reply via email to