forked from steelbrain/node-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1003 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": "node-ssh",
"version": "4.2.0",
"description": "SS2 with Promises",
"main": "lib/index.js",
"scripts": {
"test": "(apm test) && (flow check) && (eslint . )",
"clean": "rm -rf lib",
"build": "npm run clean; babel src --out-dir lib",
"watch": "npm run clean; babel src --out-dir lib --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/steelbrain/node-ssh"
},
"keywords": [
"ssh",
"ssh2",
"sftp"
],
"author": "steelbrain <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbrain/node-ssh/issues"
},
"dependencies": {
"sb-promisify": "^2.0.1",
"sb-scandir": "^1.0.0",
"shell-escape": "^0.2.0",
"ssh2": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-steelbrain": "^5.0.0",
"eslint-config-steelbrain": "^3.0.0",
"flow-bin": "^0.43.0",
"jasmine-fix": "^1.0.1",
"pty.js": "^0.3.1",
"ssh2-streams": "^0.1.6"
}
}