forked from israelroldan/grunt-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "grunt-ssh",
"description": "SSH and SFTP tasks for Grunt",
"version": "0.12.0",
"homepage": "https://github.com/andrewrjones/grunt-ssh",
"author": {
"name": "Andrew Jones",
"email": "andrew@arjones.co.uk",
"url": "http://andrew-jones.com"
},
"repository": {
"type": "git",
"url": "git://github.com/andrewrjones/grunt-ssh.git"
},
"bugs": {
"url": "https://github.com/andrewrjones/grunt-ssh/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/andrewrjones/grunt-ssh/blob/master/LICENSE-MIT"
}
],
"main": "grunt.js",
"engines": {
"node": ">= 0.8.7"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"ssh2": ">=0.2.25",
"async": "*",
"progress": "~1.1.3"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1",
"grunt-contrib-jshint": "~0.1.1",
"grunt-bump": "~0.0.2",
"nodeunit": "~0.7.4",
"grunt-contrib-nodeunit": "~0.2.2",
"sinon": "~1.6.0",
"grunt-beautify": "git+https://github.com/terryweiss/grunt-beautify.git#FixForGrunt040",
"grunt-npm": "0.0.2"
},
"peerDependencies": {
"grunt": "~0.4.1"
},
"keywords": [
"gruntplugin",
"ssh",
"scp",
"sftp",
"remote",
"exec",
"rexec"
],
"contributors": [
"Andrew Jones <andrew@arjones.co.uk>",
"Marcin Szczepanski <marcins@webqem.com>",
"David J. Bradshaw <dave@bradshaw.net>",
"John Wright <johngeorge.wright@gmail.com>",
"Mark Stosberg <mark@rideamigos.com>",
"Anders Johnson <adjohnson916@gmail.com>",
"Andrew Stewart <andy@rocketboots.com>",
"owenmead <owenmead@gmail.com>",
"Andy Royle <ajroyle@gmail.com>",
"Andy Shinn <andys@andyshinn.as>",
"Evan Stoner <evan.stoner@gmail.com>",
"James Wyse <james@jameswyse.net>",
"Jason Williams <jaswilli@gmail.com>",
"Justin Kulesza <justin.kulesza@atomicobject.com>",
"harriha <harri.halikka@gmail.com>",
"jabes <bull.justin@gmail.com>",
"Alexandre Richonnier <heralight+github@gmail.com>",
"Brian White <mscdex@mscdex.net>"
]
}