Browse Source

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
Jonas Gloning 2 years ago
parent
commit
b70ed79d9a
2 changed files with 10 additions and 10 deletions
  1. 8 8
      package-lock.json
  2. 2 2
      package.json

+ 8 - 8
package-lock.json

@@ -26,7 +26,7 @@
         "@types/cors": "^2.8.6",
         "@types/cors": "^2.8.6",
         "@types/express": "^4.17.3",
         "@types/express": "^4.17.3",
         "@types/mocha": "^7.0.2",
         "@types/mocha": "^7.0.2",
-        "@types/node": "^10.17.17",
+        "@types/node": "^14.18.33",
         "@types/uuid": "^3.4.8",
         "@types/uuid": "^3.4.8",
         "@types/ws": "^7.2.3",
         "@types/ws": "^7.2.3",
         "@typescript-eslint/eslint-plugin": "^2.24.0",
         "@typescript-eslint/eslint-plugin": "^2.24.0",
@@ -44,7 +44,7 @@
         "typescript": "^4.1.2"
         "typescript": "^4.1.2"
       },
       },
       "engines": {
       "engines": {
-        "node": ">=10"
+        "node": ">=14"
       }
       }
     },
     },
     "node_modules/@babel/code-frame": {
     "node_modules/@babel/code-frame": {
@@ -1146,9 +1146,9 @@
       "dev": true
       "dev": true
     },
     },
     "node_modules/@types/node": {
     "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
       "dev": true
     },
     },
     "node_modules/@types/normalize-package-data": {
     "node_modules/@types/normalize-package-data": {
@@ -13866,9 +13866,9 @@
       "dev": true
       "dev": true
     },
     },
     "@types/node": {
     "@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
       "dev": true
     },
     },
     "@types/normalize-package-data": {
     "@types/normalize-package-data": {

+ 2 - 2
package.json

@@ -55,7 +55,7 @@
     "@types/express": "^4.17.3",
     "@types/express": "^4.17.3",
     "@types/ws": "^7.2.3",
     "@types/ws": "^7.2.3",
     "@types/mocha": "^7.0.2",
     "@types/mocha": "^7.0.2",
-    "@types/node": "^10.17.17",
+    "@types/node": "^14.18.33",
     "@types/uuid": "^3.4.8",
     "@types/uuid": "^3.4.8",
     "@typescript-eslint/eslint-plugin": "^2.24.0",
     "@typescript-eslint/eslint-plugin": "^2.24.0",
     "@typescript-eslint/parser": "^2.24.0",
     "@typescript-eslint/parser": "^2.24.0",
@@ -72,6 +72,6 @@
     "typescript": "^4.1.2"
     "typescript": "^4.1.2"
   },
   },
   "engines": {
   "engines": {
-    "node": ">=10"
+    "node": ">=14"
   }
   }
 }
 }