mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00

* * remove eslint-plugin-import * * update TypeScript rules * * update valid-jsdoc * * update sort-imports * * update semicolon style * * update lines-between-class-members * * update id-length * * update function-paren-newline * * update dot-notation
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "install-ssh-key",
|
|
"version": "2.0.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.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "13.7.0",
|
|
"@typescript-eslint/eslint-plugin": "2.19.0",
|
|
"@typescript-eslint/parser": "2.19.0",
|
|
"eslint": "6.8.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"
|
|
}
|
|
}
|