From b9ffe0922d510cb7021f29edc2fd349dd585f395 Mon Sep 17 00:00:00 2001 From: John Gee Date: Fri, 5 Mar 2021 22:11:50 +1300 Subject: [PATCH] Add package support info (#1477) * Add package support info * Switch back to lts to match README * Remove tj as not active in support role. Still listed in FUNDING. * Switch back to targetting 'supported' * Switch backing to `npm_funding` --- package-support.json | 16 ++++++++++++++++ package.json | 6 ++++-- 2 files changed, 20 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..4eabb970e --- /dev/null +++ b/package-support.json @@ -0,0 +1,16 @@ +{ + "versions": [ + { + "version": "*", + "target": { + "node": "supported" + }, + "response": { + "type": "time-permitting" + }, + "backing": { + "npm-funding": true + } + } + ] +} 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 }