forked from sergi/jsftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "jsftp",
"id": "jsftp",
"version": "2.1.3",
"description": "A sane FTP client implementation for NodeJS",
"keywords": [
"ftp",
"protocol",
"files",
"server",
"client",
"async"
],
"author": "Sergi Mansilla <[email protected]> (https://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": {
"browserify": "^17.0.1",
"debug": "^3.1.0",
"ftp-response-parser": "^1.0.1",
"once": "^1.4.0",
"parse-listing": "^1.1.3",
"stream-combiner": "^0.2.2",
"unorm": "^1.4.1"
},
"devDependencies": {
"concat-stream": "^1.6.0",
"mocha": "^4.0.1",
"nyc": "^11.4.0",
"rimraf": "^2.6.1",
"sinon": "^4.1.2"
},
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "mkdir -p dist && npx browserify index-puter.js > dist/puter-jsftp.js"
},
"license": "MIT"
}