forked from steelbrain/node-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 804 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 804 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
{
"name": "node-ssh",
"version": "2.0.7",
"description": "SS2 with Promises",
"main": "Dist/SSH.js",
"scripts": {
"test": "mocha",
"build": "babel --presets es2015 Source/SSH.js --out-file Dist/SSH.js"
},
"repository": {
"type": "git",
"url": "https://github.com/steelbrain/node-ssh"
},
"keywords": [
"ssh",
"ssh2",
"sftp"
],
"author": "steelbrain <aneesiqbalbhatti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbrain/node-ssh/issues"
},
"dependencies": {
"js-toolkit": "0.0.5",
"shell-escape": "^0.2.0",
"ssh2": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mock-fs": "^3.11.0"
}
}