-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 1.15 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
{
"name": "gulp-ssh",
"version": "0.7.1",
"description": "SSH and SFTP tasks for gulp",
"license": "MIT",
"author": {
"name": "Yan Qing",
"email": "[email protected]",
"url": "https://github.com/zensh"
},
"engines": {
"node": ">=6"
},
"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": {
"ansicolors": "^0.3.2",
"fancy-log": "^1.3.2",
"plugin-error": "^1.0.1",
"ssh2": "~0.5.5",
"through2": "^2.0.3",
"vinyl": "^2.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"dirty-chai": "^2.0.1",
"fs-extra": "^5.0.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"standard": "^10.0.3",
"vinyl-fs": "^3.0.2"
},
"scripts": {
"coverage": "nyc mocha",
"test": "standard && mocha -t 5000"
},
"files": [
"README.md",
"index.js"
],
"nyc": {
"reporter": [
"lcov"
]
}
}