forked from garygrossgarten/github-action-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 958 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
38
39
40
41
42
{
"name": "@garygrossgarten/github-action-ssh",
"version": "0.4.3",
"description": "Run commands on a remote server via SSH.",
"repository": {
"type": "git",
"url": "https://github.com/garygrossgarten/github-action-ssh"
},
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/tsc -p ."
},
"bin": {
"github-action-ssh": "dist/index.js"
},
"preferGlobal": false,
"keywords": [
"typescript",
"github",
"github-actions",
"actions",
"ssh"
],
"author": "garygrossgarten",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.12.18",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"@actions/core": "^1.2.2",
"@fivethree/billy-core": "0.18.0",
"@fivethree/billy-plugin-core": "0.18.0",
"@garygrossgarten/billy-plugin-github-actions": "0.5.0",
"node-ssh": "~6.0.0"
},
"files": [
"dist"
]
}