forked from sergi/jsftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (44 loc) · 1.06 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
{
"name": "jsftp",
"id": "jsftp",
"version": "1.3.8",
"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": {
"event-stream": "3.1.7",
"ftp-response-parser": "1.0.0",
"parse-listing": "1.1.2",
"once": "1.3.0"
},
"devDependencies": {
"mocha": "1.21.4",
"istanbul": "0.3.2",
"mocha-istanbul": "0.2.0",
"sinon": "1.10.3",
"ftp-test-server": "0.0.1",
"rimraf": "2.2.8"
},
"main": "./jsftp.js",
"engines": {
"node": ">=0.6.21"
},
"scripts": {
"test": "mocha -R spec -t 5000",
"clean": "rm -rf reports"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sergi/jsftp/blob/master/LICENSE"
}
]
}