forked from steelbrain/node-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 KB
/
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
43
44
{
"name": "node-ssh",
"version": "5.1.1",
"description": "SS2 with Promises",
"main": "lib/index.js",
"scripts": {
"test": "(apm test) && (flow check) && (eslint . ) && (prettier -l '{src,spec}/**/*.js')",
"build": "sb-babel-cli -o lib src",
"watch": "npm run build -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/steelbrain/node-ssh"
},
"keywords": [
"ssh",
"ssh2",
"sftp"
],
"author": "steelbrain <i@steelbrain.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbrain/node-ssh/issues"
},
"dependencies": {
"p-map": "^1.2.0",
"sb-promisify": "^2.0.1",
"sb-scandir": "^2.0.0",
"shell-escape": "^0.2.0",
"ssh2": "^0.5.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-steelbrain": "^5.0.3",
"eslint-config-prettier": "^2.9.0",
"eslint-config-steelbrain": "^4.0.1",
"flow-bin": "^0.63.1",
"jasmine-fix": "^1.3.1",
"prettier": "^1.10.2",
"pty.js": "^0.3.1",
"sb-babel-cli": "0.1.1",
"ssh2-streams": "^0.1.20"
}
}