forked from haegemonia76/ftp-sftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"author": {
"name": "Wertarbyte",
"email": "info@wertarbyte.com"
},
"bugs": {
"url": "https://github.com/TeamWertarbyte/ftp-sftp/issues"
},
"contributors": [
"Dennis Heckmann <denheckmann@googlemail.com>",
"Gérard Le Cloërec <gerard.le.cloerec@gmail.com>",
"Wertarbyte <info@wertarbyte.com>"
],
"dependencies": {
"@types/ftp": "^0.3.32",
"ftp": "^0.3.10",
"ssh2-sftp-client": "^10.0.3"
},
"devDependencies": {
"@types/node": "^14.17.5",
"@types/ssh2-sftp-client": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ssh2": "^1.1.0",
"typescript": "^4.3.5"
},
"description": "Treat Local, FTP and SFTP file systems the same way.",
"homepage": "https://github.com/TeamWertarbyte/ftp-sftp#readme",
"keywords": [
"local",
"ftp",
"sftp",
"file-system",
"async"
],
"license": "ISC",
"main": "build/index.js",
"types": "build/index.d.ts",
"name": "@wertarbyte/local-ftp-sftp",
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/ftp-sftp.git"
},
"version": "0.4.0",
"scripts": {
"build": "rimraf build && tsc",
"lint": "eslint './**/*.{ts,js,json}' --fix",
"prepublish": "rimraf build && tsc"
},
"files": [
"build/**/*"
],
"engines": {
"node": ">=14"
}
}