forked from mscdex/node-ftp
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 922 Bytes
/
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
{
"name": "@icetee/ftp",
"version": "1.0.8",
"author": "Tamás András Horváth <[email protected]>",
"contributors": [
"Brian White <[email protected]>"
],
"description": "An FTP client module for node.js",
"main": "./lib/connection",
"engines": {
"node": ">=6.4.0"
},
"dependencies": {
"xregexp": "^3.2.0"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/_mocha --require babel-register ./test/*.spec.js"
},
"keywords": [
"ftp",
"client",
"transfer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/icetee/node-ftp.git"
},
"devDependencies": {
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"dotenv": "^4.0.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^5.1.1",
"sinon": "^4.0.2",
"sinon-chai": "^2.14.0"
}
}