From 167cef296215ffffb7c2ba7b142be0ae35d44b50 Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 10 Jul 2020 18:05:08 -0700 Subject: [PATCH] chore: properly advertise version support We dropped support for node 6 and 8 with version 3, but didn't update the package.json file. This corrects that oversight. --- .travis.yml | 2 -- package.json | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c745936..8f8d507 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,3 @@ sudo: false node_js: - "12" - "10" - - "8" - - "6" diff --git a/package.json b/package.json index 4b5a619..980e4f3 100644 --- a/package.json +++ b/package.json @@ -39,5 +39,8 @@ "index.js", "git-host.js", "git-host-info.js" - ] + ], + "engines": { + "node": ">=10" + } }