-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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": "jsftp-modi",
"id": "jsftp",
"version": "1.5.4",
"description": "A sane FTP client implementation for NodeJS",
"keywords": [
"ftp",
"protocol",
"files",
"server",
"client",
"async"
],
"author": "Sergi Mansilla <[email protected]> (http://sergimansilla.com)",
"homepage": "https://github.com/yahao87/jsftp-modi",
"repository": {
"type": "git",
"url": "https://github.com/yahao87/jsftp-modi"
},
"bugs": {
"url": "https://github.com/yahao87/jsftp-modi/issues"
},
"dependencies": {
"debug": "^2.2.0",
"event-stream": "^3.1.7",
"ftp-response-parser": "^1.0.1",
"once": "^1.3.3",
"parse-listing": "^1.1.3",
"unorm": "^1.4.1"
},
"devDependencies": {
"concat-stream": "^1.5.0",
"ftp-test-server": "0.0.2",
"istanbul": "^0.3.22",
"mocha": "^1.21.4",
"mocha-istanbul": "0.2.0",
"rimraf": "^2.2.8",
"sinon": "^1.17.1"
},
"main": "./jsftp.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "mocha -R spec -t 5000",
"clean": "rm -rf reports"
},
"license": "MIT"
}