forked from rudchenkos/gulp-sftp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.31 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
{
"name": "gulp-sftp-clean",
"version": "0.1.7",
"description": "Upload files via SSH",
"license": "MIT",
"repository": "https://github.com/krysalead/gulp-sftp",
"homepage": "https://github.com/krysalead/gulp-sftp",
"bugs": {
"url": "https://github.com/krysalead/gulp-sftp/issues"
},
"author": {
"name": "Matthew Drake",
"email": "[email protected]",
"url": "http://mediadrake.com"
},
"contributors": [
"Benjamin P. Jung <[email protected]>",
"Carson Britt <[email protected]> <[email protected]>",
"Matthew Drake <[email protected]>",
"Valan Brown <[email protected]>",
"Sorin Guga <[email protected]>",
"Sergii Rudchenko <[email protected]>",
"Krys Alead <[email protected]>"
],
"engines": {
"node": ">=6.11.1"
},
"scripts": {
"test": "jest"
},
"files": [
"index.js",
"clear.js"
],
"keywords": [
"gulpplugin",
"sftp",
"file",
"files",
"transfer",
"protocol",
"server",
"client",
"upload",
"deploy",
"deployment"
],
"dependencies": {
"async": "~0.9.0",
"gulp-util": "~3.0.0",
"object-assign": "~0.3.1",
"parents": "~1.0.0",
"ssh2": "~0.3.4",
"through2": "~0.4.2"
},
"devDependencies": {
"gulp": "^3.9.1",
"jest": "^20.0.4"
}
}