-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
64 lines (64 loc) · 1.3 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ftps",
"version": "1.2.0",
"scripts": {
"lint": "eslint index.js test/",
"test": "mocha",
"precommit": "npm run lint"
},
"main": "./index.js",
"author": {
"name": "Sébastien Chopin",
"email": "[email protected]",
"url": "https://twitter.com/atinux"
},
"contributors": [
{
"name": "Steven Kissack",
"url": "https://github.com/stevokk"
},
{
"name": "Tyler Finethy",
"url": "https://github.com/tylfin"
},
{
"name": "@jeromew",
"url": "https://github.com/jeromew"
}
],
"maintainers": [
"atinux"
],
"description": "FTP, FTPS and SFTP client for node.js, mainly a lftp wrapper.",
"keywords": [
"ftp",
"ftps",
"sftp",
"node-ftp",
"node-sftp",
"node-ftps",
"lftp"
],
"repository": {
"type": "git",
"url": "https://github.com/Atinux/node-ftps.git"
},
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"duplex-child-process": "0.0.5",
"lodash": "^4.4.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0",
"q": "^1.4.1"
},
"license": "MIT"
}