-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 839 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
{
"name": "rsync-snapshot",
"version": "1.1.0",
"description": "A incremental full system backup solution using rsync",
"main": "index.js",
"scripts": {
"test": "echo \"No test specified\""
},
"bin": {
"rsync-snapshot": "bin/rsync-snapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlyons0/Rsync-Snapshot.git"
},
"keywords": [
"rsync",
"backup",
"snapshot",
"incremental"
],
"author": "Matt Lyons <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/mattlyons0/Rsync-Snapshot/issues"
},
"homepage": "https://github.com/mattlyons0/Rsync-Snapshot#readme",
"preferGlobal": true,
"dependencies": {
"@mattlyons/rsync": "^0.6.3",
"debug": "^3.1.0",
"filesize": "^3.6.1",
"minimist": "^1.2.0"
}
}