mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "install-ssh-key",
|
|
"version": "1.6.4",
|
|
"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.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "13.5.0",
|
|
"@typescript-eslint/eslint-plugin": "2.17.0",
|
|
"@typescript-eslint/parser": "2.17.0",
|
|
"eslint": "6.8.0",
|
|
"eslint-plugin-import": "2.20.0",
|
|
"markdownlint-cli": "0.21.0",
|
|
"npm-check-updates": "4.0.1",
|
|
"npm-run-all": "4.1.5",
|
|
"typescript": "3.7.5",
|
|
"yaml-lint": "1.2.4"
|
|
}
|
|
}
|