forked from garygrossgarten/github-action-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 929 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
{
"name": "@garygrossgarten/github-action-ssh",
"version": "0.2.0",
"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": {
"@fivethree/billy-core": "0.15.3",
"@fivethree/billy-plugin-core": "0.15.3",
"@garygrossgarten/billy-plugin-github-actions": "~0.1.21",
"node-ssh": "~6.0.0"
},
"files": [
"dist"
]
}