From b70ed79d9a239593d128ea2914eea0c2107b03b2 Mon Sep 17 00:00:00 2001 From: Jonas Gloning <34194370+jonasgloning@users.noreply.github.com> Date: Sat, 29 Oct 2022 21:33:25 +0200 Subject: [PATCH] feat: drop Node {10,11,12,13} support BREAKING CHANGE: Node >= 14 required 14 is the oldest currently supported version. See https://github.com/nodejs/release#release-schedule --- package-lock.json | 16 ++++++++-------- package.json | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2964f7c..ea6ddc8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,7 @@ "@types/cors": "^2.8.6", "@types/express": "^4.17.3", "@types/mocha": "^7.0.2", - "@types/node": "^10.17.17", + "@types/node": "^14.18.33", "@types/uuid": "^3.4.8", "@types/ws": "^7.2.3", "@typescript-eslint/eslint-plugin": "^2.24.0", @@ -44,7 +44,7 @@ "typescript": "^4.1.2" }, "engines": { - "node": ">=10" + "node": ">=14" } }, "node_modules/@babel/code-frame": { @@ -1146,9 +1146,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "10.17.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.17.tgz", - "integrity": "sha512-gpNnRnZP3VWzzj5k3qrpRC6Rk3H/uclhAVo1aIvwzK5p5cOrs9yEyQ8H/HBsBY0u5rrWxXEiVPQ0dEB6pkjE8Q==", + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", "dev": true }, "node_modules/@types/normalize-package-data": { @@ -13866,9 +13866,9 @@ "dev": true }, "@types/node": { - "version": "10.17.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.17.tgz", - "integrity": "sha512-gpNnRnZP3VWzzj5k3qrpRC6Rk3H/uclhAVo1aIvwzK5p5cOrs9yEyQ8H/HBsBY0u5rrWxXEiVPQ0dEB6pkjE8Q==", + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", "dev": true }, "@types/normalize-package-data": { diff --git a/package.json b/package.json index 4e2a9e2..7a6a5e6 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "@types/express": "^4.17.3", "@types/ws": "^7.2.3", "@types/mocha": "^7.0.2", - "@types/node": "^10.17.17", + "@types/node": "^14.18.33", "@types/uuid": "^3.4.8", "@typescript-eslint/eslint-plugin": "^2.24.0", "@typescript-eslint/parser": "^2.24.0", @@ -72,6 +72,6 @@ "typescript": "^4.1.2" }, "engines": { - "node": ">=10" + "node": ">=14" } }