Run npm audit

This syncs our dependencies to the latest version. There is still
a reported vulnerability in postcss, but we are luckily unaffected.
However, we can't upgrade postcss yet, as stylelint requires it
and can not use postcss 8 yet:
https://github.com/stylelint/stylelint/issues/4942#issuecomment-823513767

Also updated manage_node_deps.py to not run the full install when
running `ls`, to allow for easier inspection of our dependency graph.

R=jacktfranklin@chromium.org

Bug: none
Change-Id: I1c9e4836fca25500e2e7277ec82b13bf2b881dca
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2887731
Commit-Queue: Tim van der Lippe <tvanderlippe@chromium.org>
Commit-Queue: Jack Franklin <jacktfranklin@chromium.org>
Auto-Submit: Tim van der Lippe <tvanderlippe@chromium.org>
Reviewed-by: Jack Franklin <jacktfranklin@chromium.org>
diff --git a/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.js b/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.js
index 7eee556..3150dc3 100644
--- a/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.js
+++ b/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.js
@@ -24,15 +24,13 @@
 		return false;
 	}
 
-	// TODO: Issue #4985
-	// eslint-disable-next-line no-shadow
-	return Object.values(value).every((value) => {
-		if (!Array.isArray(value)) {
+	return Object.values(value).every((array) => {
+		if (!Array.isArray(array)) {
 			return false;
 		}
 
 		// Make sure the array items are strings
-		return value.every((item) => {
+		return array.every((item) => {
 			if (Array.isArray(validator)) {
 				return validator.some((v) => v(item));
 			}