-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
47 lines (47 loc) · 1.27 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
47
{
"name": "install-ssh-key",
"version": "2.7.0",
"private": true,
"description": "Install SSH key in .ssh",
"main": "./dist/main.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.0"
},
"scripts": {
"build": "esbuild ./src/main.ts ./src/post.ts --bundle --platform=node --minify --sourcemap --outdir=./dist",
"check-updates": "ncu",
"lint": "run-p lint:*",
"lint:es": "eslint ./src --ext .ts",
"lint:ts": "tsc --noEmit ./src/main.ts ./src/post.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.1",
"@types/node": "20.11.17",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.20.0",
"eslint": "8.56.0",
"markdownlint-cli": "0.39.0",
"npm-check-updates": "16.14.15",
"npm-run-all": "4.1.5",
"typescript": "5.3.3",
"yaml-lint": "1.7.0"
}
}