-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
66 lines (66 loc) · 1.75 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
65
66
{
"name": "ftp-deploy",
"version": "2.4.7",
"author": "Simon Hampton",
"description": "Ftp a folder from your local disk to an ftp destination",
"main": "src/ftp-deploy",
"scripts": {
"lint": "eslint .",
"test": "mocha **/**.spec.js",
"server": "node test/server.js",
"format": "prettier --write ./src --ignore-path=.gitignore --ignore-path=.prettierignore",
"format.check": "prettier --check ./src --ignore-path=.gitignore --ignore-path=.prettierignore"
},
"dependencies": {
"minimatch": "9.0.0",
"promise-ftp": "^1.3.5",
"read": "^2.1.0",
"ssh2-sftp-client": "^7.2.3",
"upath": "^2.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"chai": "^4.3.7",
"delete": "^1.1.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ftp-srv": "^4.6.2",
"globals": "^15.6.0",
"mocha": "^9.1.3",
"prettier": "^3.3.2"
},
"keywords": [
"ftp",
"deploy"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/simonh1000/ftp-deploy"
},
"bugs": {
"url": "https://github.com/simonh1000/ftp-deploy/issues"
},
"engines": {
"node": ">=12"
},
"contributors": [
{
"name": "Rick Bergfalk"
},
{
"name": "Ondrej",
"url": "https://github.com/der-On"
},
{
"name": "keyle",
"url": "https://github.com/keyle"
},
{
"name": "cyrdam",
"url": "https://github.com/cyrdam"
}
]
}