Update dependencies: @actions/core to 1.6.0, markdownlint-cli2 to 0.4.0, @vercel/ncc to 0.33.1, eslint to 8.7.0, eslint-plugin-unicorn to 40.1.0.

This commit is contained in:
David Anson
2022-01-22 15:33:41 -08:00
parent 6c03395cfa
commit d43ffab996
3 changed files with 263 additions and 166 deletions
+8 -7
View File
@@ -16,17 +16,18 @@
"build": "ncc build markdownlint-cli2-action.js",
"docker-npm-install": "docker run --rm --tty --name npm-install --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm install",
"docker-npm-run-upgrade": "docker run --rm --tty --name npm-run-upgrade --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm run upgrade",
"test": "eslint *.js",
"lint": "eslint *.js",
"test": "npm run lint && npm run build",
"upgrade": "npx --yes npm-check-updates --upgrade"
},
"dependencies": {
"@actions/core": "~1.5.0",
"markdownlint-cli2": "~0.3.1"
"@actions/core": "1.6.0",
"markdownlint-cli2": "0.4.0"
},
"devDependencies": {
"@vercel/ncc": "~0.31.1",
"eslint": "~7.32.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-unicorn": "~36.0.0"
"@vercel/ncc": "0.33.1",
"eslint": "8.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "40.1.0"
}
}