From 05a72d318ac73f9ad6f63a5b5b1373db25414677 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Sat, 8 Jan 2022 14:32:30 -0800 Subject: [PATCH] chore: update dependencies No change to logic. This updates dependencies, which includes shelljs/shelljs#1058. I'm updating some metadata in the package.json. This also bumps engines to node v8 because I think ShellJS is the only consumer of this package. --- .gitignore | 1 + package.json | 13 ++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c2658d7..504afef 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules/ +package-lock.json diff --git a/package.json b/package.json index e5baeb9..a144859 100644 --- a/package.json +++ b/package.json @@ -12,18 +12,25 @@ "bin": { "travis-check-changes": "travis-check-changes.js" }, + "repository": { + "type": "git", + "url": "https://github.com/nfischer/travis-check-changes" + }, "keywords": [ "travis", "CI", "changes", "after" ], - "author": "Nate Fischer", + "author": "Nate Fischer (https://github.com/nfischer)", "license": "MIT", "dependencies": { - "shelljs": "^0.7.0" + "shelljs": "^0.8.5" }, "devDependencies": { - "shelljs-release": "^0.1.4" + "shelljs-release": "^0.5.1" + }, + "engines": { + "node": ">=8" } }