-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "grunt-rsync",
"version": "3.0.0",
"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": "~3.0.1"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-shell": "1.3.1",
"grunt-vows": "0.4.2",
"vows": "0.8.1"
},
"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.10.25"
}
}