-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 892 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 892 Bytes
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": "sshrun",
"version": "0.1.1",
"description": "Run a local script remotely through SSH",
"author": "Diego Guerra <dgoguerra.or@gmail.com>",
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dgoguerra/sshrun.git"
},
"bugs": {
"url": "https://github.com/dgoguerra/sshrun/issues"
},
"keywords": [
"ssh",
"ssh2",
"client",
"remote",
"cli"
],
"dependencies": {
"chalk": "^1.1.1",
"debug": "^2.2.0",
"lodash": "^4.0.0",
"minimist": "^1.2.0",
"q": "^1.4.1",
"split": "^1.0.0",
"ssh2": "^0.4.13",
"ssh2-auth": "^0.1.1"
},
"bin": {
"sshrun": "cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/dgoguerra/sshrun#readme",
"main": "index.js",
"devDependencies": {}
}