From 36819d7c19eaee7feb2f8c2df4890ef902d9ac44 Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Wed, 10 Jul 2024 09:53:55 +0200 Subject: [PATCH] [INTERNAL] package.json: Allow npm >= v8 There is no actual need to increase the minimum npm version. Lockfile v3 is already supported --- npm-shrinkwrap.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 83bc24a3..e218567c 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -52,7 +52,7 @@ }, "engines": { "node": "^20.11.0 || >=21.2.0", - "npm": ">= 10" + "npm": ">= 8" } }, "node_modules/@adobe/css-tools": { diff --git a/package.json b/package.json index 6e227fe9..a36ee191 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ }, "engines": { "node": "^20.11.0 || >=21.2.0", - "npm": ">= 10" + "npm": ">= 8" }, "scripts": { "test": "npm run lint && npm run jsdoc-generate && npm run coverage && npm run depcheck && npm run check-licenses",