From f9fccb9cb47e7f9ffc82cd88e6f8c6c447eedb64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilmar=20T=C3=BCrk?= Date: Fri, 6 Dec 2024 13:23:27 +0200 Subject: [PATCH] Change package.json --- package-lock.json | 3 +++ package.json | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index c47b42b..b7fd7f6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,9 @@ "eslint-config-etherpad": "^4.0.4", "mocha": "^10.4.0", "typescript": "^5.4.3" + }, + "engines": { + "node": ">=18.0.0" } }, "node_modules/@eslint-community/eslint-utils": { diff --git a/package.json b/package.json index 72ea80a..a630547 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,10 @@ "typescript": "^5.4.3" }, "scripts": { - "lint": "eslint ." + "lint": "eslint .", + "lint:fix": "eslint --fix ." + }, + "engines": { + "node": ">=18.0.0" } }