forked from Mylogo/ftp-sftp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.27 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
{
"author": {
"name": "Gérard Le Cloërec",
"email": "gerard.le.cloerec@gmail.com"
},
"bugs": {
"url": "https://github.com/haegemonia76/ftp-sftp/issues"
},
"contributors": [
"Dennis Heckmann <denheckmann@googlemail.com>",
"Gérard Le Cloërec <gerard.le.cloerec@gmail.com>"
],
"dependencies": {
"@types/ftp": "^0.3.30",
"@types/ssh2-sftp-client": "^4.1.2",
"ftp": "^0.3.10",
"ssh2-sftp-client": "^4.3.0"
},
"devDependencies": {
"@types/node": "^12.12.15",
"@typescript-eslint/eslint-plugin": "2.10.0",
"@typescript-eslint/parser": "2.10.0",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.19.1",
"typescript": "^3.7.3"
},
"description": "Treat Local, FTP and SFTP file systems the same way.",
"homepage": "https://github.com/haegemonia76/ftp-sftp#readme",
"keywords": [
"local",
"ftp",
"sftp",
"file-system",
"async"
],
"license": "ISC",
"main": "build/index.js",
"types": "build/index.d.ts",
"name": "local-ftp-sftp",
"repository": {
"type": "git",
"url": "git+https://github.com/haegemonia76/ftp-sftp.git"
},
"version": "1.0.11",
"scripts": {
"build": "tsc",
"lint": "eslint ."
},
"files": [
"build/**/*"
]
}