From bfcf23d4973c39ed81199789444fd98fac9a1f6f Mon Sep 17 00:00:00 2001 From: John Gee Date: Fri, 26 Feb 2021 21:03:09 +1300 Subject: [PATCH 1/5] Add package support info --- package-support.json | 21 +++++++++++++++++++++ package.json | 6 ++++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 package-support.json diff --git a/package-support.json b/package-support.json new file mode 100644 index 000000000..29fde16c5 --- /dev/null +++ b/package-support.json @@ -0,0 +1,21 @@ +{ + "versions": [ + { + "version": "*", + "target": { + "node": "supported" + }, + "response": { + "type": "time-permitting" + }, + "backing": { + "donations": [ + "https://github.com/tj", + "https://github.com/shadowspawn", + "https://github.com/abetomo", + "https://tidelift.com/funding/github/npm/commander" + ] + } + } + ] +} diff --git a/package.json b/package.json index 0f4c0e441..f4eaa676f 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,8 @@ "files": [ "index.js", "esm.mjs", - "typings/index.d.ts" + "typings/index.d.ts", + "package-support.json" ], "type": "commonjs", "dependencies": {}, @@ -62,5 +63,6 @@ }, "engines": { "node": ">= 10" - } + }, + "support": true } From d5740c142acc1f2956a8ddce7fb2628e4541062e Mon Sep 17 00:00:00 2001 From: John Gee Date: Sat, 27 Feb 2021 10:25:12 +1300 Subject: [PATCH 2/5] Switch back to lts to match README --- package-support.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-support.json b/package-support.json index 29fde16c5..d87b1a2ae 100644 --- a/package-support.json +++ b/package-support.json @@ -3,7 +3,7 @@ { "version": "*", "target": { - "node": "supported" + "node": "lts" }, "response": { "type": "time-permitting" From 33488c78680e38958e93f362511e575e508b5fb0 Mon Sep 17 00:00:00 2001 From: John Gee Date: Sat, 27 Feb 2021 10:29:11 +1300 Subject: [PATCH 3/5] Remove tj as not active in support role. Still listed in FUNDING. --- package-support.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package-support.json b/package-support.json index d87b1a2ae..53579dcf9 100644 --- a/package-support.json +++ b/package-support.json @@ -10,7 +10,6 @@ }, "backing": { "donations": [ - "https://github.com/tj", "https://github.com/shadowspawn", "https://github.com/abetomo", "https://tidelift.com/funding/github/npm/commander" From 986253ac7a71258452442ef4cd2c6549c4b3f7f0 Mon Sep 17 00:00:00 2001 From: John Gee Date: Sat, 27 Feb 2021 10:39:46 +1300 Subject: [PATCH 4/5] Switch back to targetting 'supported' --- package-support.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-support.json b/package-support.json index 53579dcf9..98039242c 100644 --- a/package-support.json +++ b/package-support.json @@ -3,7 +3,7 @@ { "version": "*", "target": { - "node": "lts" + "node": "supported" }, "response": { "type": "time-permitting" From cf2ae74fffc3af7c4d9023fabc5453088183b334 Mon Sep 17 00:00:00 2001 From: John Gee Date: Sat, 27 Feb 2021 11:02:58 +1300 Subject: [PATCH 5/5] Switch backing to `npm_funding` --- package-support.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/package-support.json b/package-support.json index 98039242c..4eabb970e 100644 --- a/package-support.json +++ b/package-support.json @@ -9,11 +9,7 @@ "type": "time-permitting" }, "backing": { - "donations": [ - "https://github.com/shadowspawn", - "https://github.com/abetomo", - "https://tidelift.com/funding/github/npm/commander" - ] + "npm-funding": true } } ]