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] 66374eaff9
Bump @actions/core from 1.2.4 to 1.2.6 (#158)
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.4 to 1.2.6.
- [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)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-10 22:53:14 +09:00

47 lines
1.1 KiB
JSON

{
"name": "install-ssh-key",
"version": "2.1.0",
"private": true,
"description": "Install SSH key in .ssh",
"main": "lib/main.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.0"
},
"scripts": {
"build": "tsc",
"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",
"dependencies": {
"@actions/core": "1.2.6"
},
"devDependencies": {
"@types/node": "14.0.27",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"eslint": "7.7.0",
"markdownlint-cli": "0.23.2",
"npm-check-updates": "7.1.1",
"npm-run-all": "4.1.5",
"typescript": "3.9.7",
"yaml-lint": "1.2.4"
}
}