From 5ae68d3be9446b16a5d83850f8f7cb7ba85ed285 Mon Sep 17 00:00:00 2001 From: Marcos Marado Date: Sun, 2 Oct 2022 20:50:37 +0100 Subject: [PATCH] declare minimum Node version NodeJS versions prior to v14.13.0 do not support ESM (export keyword syntax), which is used in this module. Thus, this patch declares v14.13.0 as the minimum Node version. --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d89bcf..71c1020 100644 --- a/package.json +++ b/package.json @@ -59,9 +59,12 @@ "bloggify.json", "bloggify/" ], + "engines": { + "node": ">=14.13.0" + }, "blah": { "description": [ "For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized." ] } -} \ No newline at end of file +}