generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1004 Bytes
/
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
{
"name": "ssh-key-and-known-hosts-action",
"version": "1.0.0",
"description": "Setup private key and add host to known hosts",
"author": "Wouter Peschier",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/kielabokkie/ssh-key-and-known-hosts-action#readme",
"scripts": {
"lint": "eslint index.js cleanup.js",
"package": "npm-run-all build:*",
"build:index": "ncc -C build index.js -o dist/main",
"build:cleanup": "ncc -C build cleanup.js -o dist/cleanup"
},
"dependencies": {
"@actions/core": "^1.9.1",
"execa": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^6.8.0",
"npm-run-all": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kielabokkie/ssh-key-and-known-hosts-action.git"
},
"bugs": {
"url": "https://github.com/kielabokkie/ssh-key-and-known-hosts-action/issues"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"SSH"
]
}