-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
56
{
"name": "webdev-backup",
"version": "1.6.0",
"description": "A robust backup solution for web development projects",
"main": "webdev-backup.sh",
"scripts": {
"start": "./webdev-backup.sh",
"backup": "./backup.sh",
"backup:cloud": "./backup.sh --external",
"backup:dry": "./backup.sh --dry-run",
"backup:incremental": "./backup.sh --incremental",
"backup:differential": "./backup.sh --differential",
"backup:external": "./backup.sh --destination /path/to/custom/volume",
"test": "./run-tests.sh",
"test:backup": "./test-backup.sh",
"test:cron": "./test-cron.sh",
"test:tar": "./test-tar-compatibility.sh",
"cleanup": "./cleanup.sh",
"cleanup:dry": "./cleanup.sh --dry-run",
"cleanup:all": "./cleanup.sh --clear-backups",
"cleanup:logs": "./cleanup.sh --all-logs",
"restore": "./restore.sh",
"restore:list": "./restore.sh --list",
"cron": "./configure-cron.sh"
},
"keywords": [
"backup",
"webdev",
"node_modules",
"tar",
"gzip",
"restoration",
"incremental",
"differential"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"os": [
"linux",
"darwin"
],
"private": true,
"bin": {
"webdev-backup": "./webdev-backup.sh",
"backup": "./backup.sh",
"restore": "./restore.sh",
"cleanup": "./cleanup.sh"
},
"directories": {
"test": "test"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}