forked from shimataro/ssh-key-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "install-ssh-key",
"version": "2.5.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.10.0",
"@types/node": "18.15.7",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"@vercel/ncc": "0.36.1",
"eslint": "8.36.0",
"markdownlint-cli": "0.33.0",
"npm-check-updates": "16.8.0",
"npm-run-all": "4.1.5",
"typescript": "5.0.2",
"yaml-lint": "1.7.0"
}
}