1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00
ssh-key-action/package.json
dependabot[bot] 97f0615525
Bump got and npm-check-updates
Bumps [got](https://github.com/sindresorhus/got) to 12.5.2 and updates ancestor dependency [npm-check-updates](https://github.com/raineorshine/npm-check-updates). These dependencies need to be updated together.


Updates `got` from 9.6.0 to 12.5.2
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](https://github.com/sindresorhus/got/compare/v9.6.0...v12.5.2)

Updates `npm-check-updates` from 11.8.3 to 16.3.16
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](https://github.com/raineorshine/npm-check-updates/compare/v11.8.3...v16.3.16)

---
updated-dependencies:
- dependency-name: got
  dependency-type: indirect
- dependency-name: npm-check-updates
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-30 11:09:40 +00:00

46 lines
1.1 KiB
JSON

{
"name": "install-ssh-key",
"version": "2.3.1",
"private": true,
"description": "Install SSH key in .ssh",
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.0"
},
"scripts": {
"build": "ncc build src/main.ts -o lib",
"check-updates": "ncu",
"lint": "run-p lint:*",
"lint:ts": "eslint ./src --ext .ts",
"lint:md": "markdownlint . --ignore node_modules --ignore examples",
"lint:yaml": "yamllint **/{,.}*.{yml,yaml} --ignore=node_modules/**",
"verify": "run-p lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shimataro/ssh-key-action.git"
},
"keywords": [
"actions",
"github actions",
"rsync",
"ssh",
"ssh key"
],
"author": "shimataro",
"license": "MIT",
"devDependencies": {
"@actions/core": "1.4.0",
"@types/node": "16.4.10",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"@vercel/ncc": "0.29.0",
"eslint": "7.32.0",
"markdownlint-cli": "0.28.1",
"npm-check-updates": "16.3.16",
"npm-run-all": "4.1.5",
"typescript": "4.3.5",
"yaml-lint": "1.2.4"
}
}