-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "ftpsync",
"version": "0.2.0",
"description": "Intelligent file syncronization over FTP",
"keywords": [
"ftp",
"client",
"transfer",
"sync",
"synchronise"
],
"author": {
"name": "Evan Plaice",
"email": "[email protected]",
"url": "http://evanplaice.com"
},
"homepage": "http://github.com/evanplaice/node-ftpsync",
"repository": {
"type": "git",
"url": "http://github.com/evanplaice/node-ftpsync.git"
},
"bugs": {
"url": "https://github.com/evanplaice/node-ftpsync/issues"
},
"license": "MIT",
"main": "lib/ftpsync.js",
"bin": "bin/ftpsync",
"preferGlobal": true,
"engines": {
"node": "*"
},
"dependencies": {
"async": "^1.5.1",
"commander": "^2.9.0",
"jsftp": "1.5.5",
"minimatch": "^3.0.0",
"touch": "^1.0.0"
},
"devDependencies": {
"ftpd": "^0.2.12",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-nodeunit": "^0.4.1"
}
}