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
2020-06-06 15:22:19 +09:00

47 lines
1.1 KiB
JSON

{
"name": "install-ssh-key",
"version": "2.0.3",
"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.4"
},
"devDependencies": {
"@types/node": "14.0.11",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "3.1.0",
"eslint": "7.2.0",
"markdownlint-cli": "0.23.1",
"npm-check-updates": "6.0.1",
"npm-run-all": "4.1.5",
"typescript": "3.9.5",
"yaml-lint": "1.2.4"
}
}