From 5036258a90e5115009807d5f486075c3e90c5880 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Tue, 24 Nov 2020 11:27:30 -0500 Subject: [PATCH 1/2] doc: add support info Add support info as per: https://github.com/nodejs/package-maintenance/blob/main/docs/PACKAGE-SUPPORT.md Signed-off-by: Michael Dawson --- package-support.json | 21 +++++++++++++++++++++ package.json | 3 ++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 package-support.json diff --git a/package-support.json b/package-support.json new file mode 100644 index 000000000..12305eeb4 --- /dev/null +++ b/package-support.json @@ -0,0 +1,21 @@ +{ + "versions": [ + { + "version": "*", + "target": { + "node": "lts" + }, + "response": { + "type": "time-permitting", + "paid": false, + "contact": { + "name": "node-addon-api team", + "url": "https://github.com/nodejs/node-addon-api/issues" + } + }, + "backing": [ { "project": "https://github.com/nodejs" }, + { "foundation": "https://openjsf.org/" } + ] + } + ] +} diff --git a/package.json b/package.json index 85d6ea2d1..343c1b624 100644 --- a/package.json +++ b/package.json @@ -307,5 +307,6 @@ "lint:fix": "git-clang-format" }, "pre-commit": "lint", - "version": "3.0.2" + "version": "3.0.2", + "support": true } From dd8495497ce262971fcaf36a5e8d9f24bd7bf67f Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Wed, 25 Nov 2020 13:39:54 -0500 Subject: [PATCH 2/2] squash: address comment --- package-support.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-support.json b/package-support.json index 12305eeb4..10d3607ac 100644 --- a/package-support.json +++ b/package-support.json @@ -3,7 +3,7 @@ { "version": "*", "target": { - "node": "lts" + "node": "active" }, "response": { "type": "time-permitting",