forked from realtymaps/promise-sftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (46 loc) · 947 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
42
43
44
45
46
47
{
"name": "promise-sftp",
"description": "a promise-based sftp client for node.js",
"version": "0.9.6",
"main": "index.js",
"author": "RealtyMaps",
"contributors": [
"Joe Ibershoff <[email protected]>"
],
"files": [
"dist",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/realtymaps/promise-sftp"
},
"keywords": [
"sftp",
"client",
"promise",
"node"
],
"dependencies": {
"bluebird": "2.x",
"ssh2": "git://github.com/realtymaps/ssh2.git"
},
"devDependencies": {
"coffee-script": "1.x"
},
"peerDependencies": {
"promise-ftp-common": "^1.1.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/realtymaps/promise-sftp/issues"
},
"engines": {
"node": ">=0.11.13",
"iojs": "*"
},
"scripts": {
"prepublish": "coffee --compile --output dist/ lib/",
"dev": "coffee --watch --output dist lib/"
}
}