forked from sergi/jsftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.11 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
50
51
52
{
"name": "jsftp",
"id": "jsftp",
"version": "1.5.0",
"description": "A sane FTP client implementation for NodeJS",
"keywords": [
"ftp",
"protocol",
"files",
"server",
"client",
"async"
],
"author": "Sergi Mansilla <sergi.mansilla@gmail.com> (http://sergimansilla.com)",
"homepage": "https://github.com/sergi/jsftp",
"repository": {
"type": "git",
"url": "https://github.com/sergi/jsftp.git"
},
"bugs": {
"url": "https://github.com/sergi/jsftp/issues"
},
"dependencies": {
"debug": "2.1.1",
"event-stream": "3.1.7",
"ftp-response-parser": "1.0.0",
"once": "1.3.0",
"parse-listing": "1.1.2"
},
"devDependencies": {
"mocha": "1.21.4",
"istanbul": "0.3.2",
"mocha-istanbul": "0.2.0",
"sinon": "1.10.3",
"ftp-test-server": "0.0.2",
"rimraf": "2.2.8"
},
"main": "./jsftp.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "mocha -R spec -t 5000",
"clean": "rm -rf reports"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sergi/jsftp/blob/master/LICENSE"
}
]
}