-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
50 lines (50 loc) · 925 Bytes
/
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
{
"name": "gulp-ssh",
"version": "0.5.4",
"description": "SSH and SFTP tasks for gulp",
"license": "MIT",
"author": {
"name": "Yan Qing",
"email": "[email protected]",
"url": "https://github.com/zensh"
},
"engines": {
"node": ">=0.10.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/teambition/gulp-ssh"
},
"homepage": "https://github.com/teambition/gulp-ssh",
"keywords": [
"gulpplugin",
"ssh",
"ssh2",
"sftp",
"exec",
"shell",
"remote",
"client",
"upload"
],
"dependencies": {
"gulp-util": "^3.0.7",
"through2": "^2.0.1",
"ssh2": "~0.4.13"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-sequence": "^0.4.4",
"standard": "^6.0.5"
},
"scripts": {
"test": "standard && gulp test"
},
"ignore": [
"**/.*",
"node_modules",
"test",
"gulpfile.js"
]
}