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