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] 456fba57a1
Bump @actions/core from 1.4.0 to 1.9.1
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.4.0 to 1.9.1.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-18 19:16:23 +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.9.1",
"@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": "11.8.3",
"npm-run-all": "4.1.5",
"typescript": "4.3.5",
"yaml-lint": "1.2.4"
}
}