forked from simonh1000/ftp-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "ftp-deploy",
"version": "2.4.1",
"author": "Simon Hampton",
"description": "Ftp a folder from your local disk to an ftp destination",
"main": "src/ftp-deploy",
"scripts": {
"test": "mocha **/**.spec.js",
"server": "node test/server.js"
},
"dependencies": {
"bluebird": "^3.7.2",
"minimatch": "3.0.4",
"promise-ftp": "^1.3.5",
"read": "^1.0.7",
"ssh2-sftp-client": "^5.3.2",
"upath": "^2.0.1"
},
"devDependencies": {
"chai": "^4.3.0",
"delete": "^1.1.0",
"ftp-srv": "^4.4.0",
"mocha": "^8.2.1"
},
"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": ">=8"
},
"contributors": [
{
"name": "Rick Bergfalk"
},
{
"name": "Ondrej",
"url": "https://github.com/der-On"
},
{
"name": "keyle",
"url": "https://github.com/keyle"
}
],
"prettier": {
"tabWidth": 4
}
}