forked from tomusdrw/grunt-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "grunt-sync",
"description": "Task to synchronize two directories. Similar to grunt-copy but updates only files that have been changed.",
"version": "0.5.1",
"homepage": "https://github.com/tomusdrw/grunt-sync.git",
"author": {
"name": "Tomasz Drwiega",
"email": "[email protected]",
"url": "http://blacksoft.eu"
},
"repository": {
"type": "git",
"url": "git://github.com/tomusdrw/grunt-sync.git"
},
"bugs": {
"url": "https://github.com/tomusdrw/grunt-sync/issues"
},
"licences": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "Gruntfile.js",
"readmeFilename": "readme.md",
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"lint": "semistandard",
"test": "mocha"
},
"dependencies": {
"glob": "^4.0.5",
"lodash": "^3.10.1",
"md5-file": "^2.0.3",
"promised-io": "0.3.3"
},
"devDependencies": {
"chai": "1.4.2",
"grunt": "0.4.x",
"grunt-complexity": "^0.1.51",
"grunt-contrib-jshint": "0.1.x",
"grunt-simple-mocha": "0.3.x",
"mocha": "~1.8.1",
"semistandard": "^6.1.2",
"time-grunt": "^0.4.0"
},
"keywords": [
"gruntplugin",
"sync",
"synchronize",
"copy"
]
}