chore: @node/types -> 16.x

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-03-31 21:12:46 +02:00
parent 8aeb703cc9
commit 2538bf72e3
68 changed files with 84 additions and 85 deletions
+1 -1
View File
@@ -59,7 +59,7 @@
"@changesets/cli": "^2.14.0",
"@octokit/rest": "^18.12.0",
"@spotify/prettier-config": "^13.0.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/webpack": "^5.28.0",
"command-exists": "^1.2.9",
"cross-env": "^7.0.0",
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react": "^16.13.1 || ^17.0.0"
},
"files": [
+1 -1
View File
@@ -84,7 +84,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/jquery": "^3.3.34",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react-dom": "*",
"@types/zen-observable": "^0.8.0",
"cross-env": "^7.0.0",
+1 -1
View File
@@ -137,7 +137,7 @@
"@types/inquirer": "^8.1.3",
"@types/minimatch": "^3.0.5",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/npm-packlist": "^3.0.0",
"@types/recursive-readdir": "^2.2.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.0",
+1 -1
View File
@@ -41,7 +41,7 @@
},
"devDependencies": {
"@types/jscodeshift": "^0.11.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"commander": "^6.1.0",
"ts-node": "^10.0.0"
},
+1 -1
View File
@@ -54,7 +54,7 @@
"@types/jest": "^26.0.7",
"@types/json-schema-merge-allof": "^0.6.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/yup": "^0.29.13",
"mock-fs": "^5.1.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -56,7 +56,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/zen-observable": "^0.8.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -93,7 +93,7 @@
"@types/dagre": "^0.7.44",
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react-helmet": "^6.1.0",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/react-virtualized-auto-sizer": "^1.0.1",
+1 -1
View File
@@ -54,7 +54,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/prop-types": "^15.7.3",
"@types/zen-observable": "^0.8.0",
"cross-fetch": "^3.1.5",
+1 -1
View File
@@ -45,7 +45,7 @@
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^8.1.3",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/recursive-readdir": "^2.2.0",
"mock-fs": "^5.1.1",
"ts-node": "^10.0.0"
+1 -1
View File
@@ -32,7 +32,7 @@
"@backstage/cli-common": "^0.1.8",
"@backstage/errors": "^1.0.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/puppeteer": "^5.4.4",
"chalk": "^4.0.0",
"commander": "^6.1.0",
+6 -4
View File
@@ -372,8 +372,9 @@ async function testAppServe(pluginName: string, appDir: string) {
}
} finally {
// Kill entire process group, otherwise we'll end up with hanging serve processes
await new Promise<void>((res, rej) =>
killTree(startApp.pid, err => (err ? rej(err) : res())),
await new Promise<void>(
(res, rej) =>
startApp.pid && killTree(startApp.pid, err => (err ? rej(err) : res())),
);
}
@@ -477,8 +478,9 @@ async function testBackendStart(appDir: string, isPostgres: boolean) {
} finally {
print('Stopping the child process');
// Kill entire process group, otherwise we'll end up with hanging serve processes
await new Promise<void>((res, rej) =>
killTree(child.pid, err => (err ? rej(err) : res())),
await new Promise<void>(
(res, rej) =>
child.pid && killTree(child.pid, err => (err ? rej(err) : res())),
);
}
+1 -1
View File
@@ -45,7 +45,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0",
"cross-fetch": "^3.1.5"
},
@@ -34,7 +34,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react-dom": "*",
"cross-env": "^7.0.0",
"cypress": "^9.5.0",
+1 -1
View File
@@ -42,7 +42,7 @@
"@types/fs-extra": "^9.0.6",
"@types/http-proxy": "^1.17.4",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/serve-handler": "^6.1.0",
"@types/webpack-env": "^1.15.3",
"cypress": "^9.5.0",
+1 -1
View File
@@ -57,7 +57,7 @@
"devDependencies": {
"@backstage/cli": "^0.17.0-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -48,7 +48,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/object-hash": "^2.2.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0",
+1 -1
View File
@@ -48,7 +48,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -46,7 +46,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -44,7 +44,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -64,7 +64,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/swagger-ui-react": "^4.1.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -57,7 +57,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -54,7 +54,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/recharts": "^1.8.15",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -64,7 +64,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/humanize-duration": "^3.25.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -49,7 +49,7 @@
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.9",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/highlightjs": "^10.1.0",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/recharts": "^1.8.15",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -49,7 +49,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -68,7 +68,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/pluralize": "^0.0.29",
"@types/recharts": "^1.8.14",
"@types/regression": "^2.0.0",
+1 -1
View File
@@ -43,7 +43,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -61,7 +61,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -47,7 +47,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -61,7 +61,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -54,7 +54,7 @@
"@types/gapi.auth2": "^0.0.56",
"@types/gapi.client.calendar": "^3.0.10",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/sanitize-html": "^2.6.2",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -52,7 +52,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/recharts": "^1.8.15",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -63,7 +63,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -56,7 +56,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -59,7 +59,7 @@
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.173",
"@types/luxon": "^2.0.4",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -57,7 +57,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/codemirror": "^0.0.108",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0",
"react-router-dom": "6.0.0-beta.0"
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/testing-library__jest-dom": "^5.9.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -48,7 +48,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"jest-when": "^3.1.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -66,7 +66,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -57,7 +57,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
@@ -36,7 +36,7 @@
"devDependencies": {
"@backstage/cli": "^0.17.0-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.1",
"@types/mock-fs": "^4.13.0",
+1 -1
View File
@@ -90,7 +90,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/humanize-duration": "^3.18.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"event-source-polyfill": "1.0.25",
"msw": "^0.35.0"
+1 -1
View File
@@ -65,7 +65,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -50,7 +50,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -61,7 +61,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -49,7 +49,7 @@
"@backstage/dev-utils": "^1.0.1-next.0",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -59,7 +59,7 @@
"@types/color": "^3.0.1",
"@types/d3-force": "^2.1.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -74,7 +74,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/dompurify": "^2.2.2",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"canvas": "^2.6.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -53,7 +53,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"react-router": "6.0.0-beta.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -49,7 +49,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^14.14.32",
"@types/node": "^16.x",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+12 -15
View File
@@ -2839,9 +2839,9 @@
integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==
"@grpc/grpc-js@~1.4.0":
version "1.4.5"
resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.4.5.tgz#0cd840b47180624eeedf066f2cdc422d052401f8"
integrity sha512-A6cOzSu7dqXZ7rzvh/9JZf+Jg/MOpLEMP0IdT8pT8hrWJZ6TB4ydN/MRuqOtAugInJe/VQ9F8BPricUpYZSaZA==
version "1.4.6"
resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.4.6.tgz#8108d7ab7c0c21b38c538c1a48583edbbf2c2412"
integrity sha512-Byau4xiXfIixb1PnW30V/P9mkrZ05lknyNqiK+cVY9J5hj3gecxd/anwaUbAM8j834zg1x78NvAbwGnMfWEu7A==
dependencies:
"@grpc/proto-loader" "^0.6.4"
"@types/node" ">=12.12.47"
@@ -6432,6 +6432,11 @@
resolved "https://registry.npmjs.org/@types/node/-/node-15.14.9.tgz#bc43c990c3c9be7281868bbc7b8fdd6e2b57adfa"
integrity sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==
"@types/node@^16.x":
version "16.11.26"
resolved "https://registry.npmjs.org/@types/node/-/node-16.11.26.tgz#63d204d136c9916fb4dcd1b50f9740fe86884e47"
integrity sha512-GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ==
"@types/normalize-package-data@^2.4.0":
version "2.4.0"
resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
@@ -6779,18 +6784,10 @@
dependencies:
"@types/node" "*"
"@types/ssh2@*":
version "0.5.47"
resolved "https://registry.npmjs.org/@types/ssh2/-/ssh2-0.5.47.tgz#67a8b35a0527b2bb668f6dea4c84be6ff1abdc19"
integrity sha512-ZhqJg8BRV7OsCi0KVqPr27lUMMmLEeHYw1VXUNGGDlQEDq9HTsKx+wYvi8E6oNC6gRZ7PV99ZMZmMr5vztcYYA==
dependencies:
"@types/node" "*"
"@types/ssh2-streams" "*"
"@types/ssh2@^0.5.48":
version "0.5.48"
resolved "https://registry.npmjs.org/@types/ssh2/-/ssh2-0.5.48.tgz#0d9e8654a76eaaf4cfeaeb88d74c4489cfcf7aea"
integrity sha512-cmQu0gp/6RtDXe1r2xXGgi0V0TeCdueDSRMEvBX8cTRT/sSREkUpgCYZLyh+iI8Ql+VNV8Az9toQoYa/IdgHbQ==
"@types/ssh2@*", "@types/ssh2@^0.5.48":
version "0.5.52"
resolved "https://registry.npmjs.org/@types/ssh2/-/ssh2-0.5.52.tgz#9dbd8084e2a976e551d5e5e70b978ed8b5965741"
integrity sha512-lbLLlXxdCZOSJMCInKH2+9V/77ET2J6NPQHpFI0kda61Dd1KglJs+fPQBchizmzYSOJBgdTajhPqBO1xxLywvg==
dependencies:
"@types/node" "*"
"@types/ssh2-streams" "*"