From 17efb9996a4e6fabe68319b7e5a1bb03e937d40c Mon Sep 17 00:00:00 2001 From: Helio Frota <00hf11@gmail.com> Date: Mon, 9 Nov 2020 10:33:35 -0300 Subject: [PATCH] chore: add support information --- .github/workflows/nodejs-ci-action.yml | 1 + package-support.json | 16 ++++++++++++++++ package.json | 3 ++- 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 package-support.json diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index bbb8e6c..9dac01a 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -31,3 +31,4 @@ jobs: - run: npm run coverage - run: echo 'repo_token:' ${{ secrets.COVERALLS_GITHUB_TOKEN }} > ./.coveralls.yml - run: cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js + - run: npx @pkgjs/support validate diff --git a/package-support.json b/package-support.json new file mode 100644 index 0000000..cb0069a --- /dev/null +++ b/package-support.json @@ -0,0 +1,16 @@ +{ + "versions": [ + { + "version": "*", + "target": { + "node": "lts" + }, + "response": { + "type": "regular-7" + }, + "backing": { + "company": "true" + } + } + ] +} diff --git a/package.json b/package.json index 4766029..ae49912 100644 --- a/package.json +++ b/package.json @@ -42,5 +42,6 @@ "preferGlobal": true, "bin": { "license-reporter": "bin/license-reporter" - } + }, + "support": true }