forked from jedrichards/grunt-rsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "grunt-rsync",
"version": "0.0.5",
"description": "A Grunt task for accessing the file copying and syncing capabilities of the rsync command line utility. Uses the rsyncwrapper npm module for the core functionality.",
"main": "grunt.js",
"repository": {
"type": "git",
"url": "git://github.com/jedrichards/grunt-rsync.git"
},
"homepage": "https://github.com/jedrichards/grunt-rsync",
"bugs": "https://github.com/jedrichards/grunt-rsync/issues",
"scripts": {
"test": "grunt test"
},
"dependencies": {
"rsyncwrapper": "~0.0.7"
},
"devDependencies": {
"grunt": "~0.3.17",
"grunt-contrib-clean": "~0.3.0",
"vows": "~0.6.0",
"grunt-vows": "~0.2.0",
"grunt-shell": "~0.1.0"
},
"keywords": [
"rsync",
"grunt plugin",
"gruntplugin",
"grunt",
"grunt task",
"syncing",
"copying",
"file manipulation",
"remote",
"ssh",
"exclude patterns"
],
"author": {
"name": "Jed Richards",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
}