-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 747 Bytes
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
{
"name": "node-folder-rsync",
"version": "0.0.2",
"description": "Simple sync of local and remote folders using rsync",
"repository": {
"type": "git",
"url": "https://github.com/PalleZingmark/node-folder-rsync"
},
"author": {
"name": "Palle Zingmark",
"email": "palle@palleman.nu",
"url": "http://palleman.nu"
},
"license": "MIT",
"main": "sync.js",
"scripts": {
"lint": "eslint 'sync.js'; exit 0",
"sync": "node sync.js",
"watch": "chokidar './src/*' -c 'node sync.js'"
},
"devDependencies": {
"chokidar-cli": "^1.2.0",
"dotenv": "^2.0.0",
"eslint": "^3.8.1",
"rsyncwrapper": "^2.0.1"
},
"keywords": [
"folder",
"node",
"rsync",
"ssh",
"sync"
]
}