-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 882 Bytes
/
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
{
"name": "sync-folders",
"version": "2.0.0",
"description": "A utility designed to copy local directories to a destination.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pk-nb/sync-folders.git"
},
"bin": {
"sync-folders": "./bin/sync-folders"
},
"files": [
"bin",
"index.js",
"source"
],
"keywords": [
"rsync",
"sync",
"copy",
"link",
"multiple",
"directory"
],
"author": "Nathanael Beisiegel",
"license": "ISC",
"bugs": {
"url": "https://github.com/pk-nb/sync-folders/issues"
},
"homepage": "https://github.com/pk-nb/sync-folders#readme",
"dependencies": {
"anymatch": "^2.0.0",
"chokidar": "^2.0.4",
"fs-extra": "^7.0.1",
"readdir-enhanced": "^2.2.2"
}
}