-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 KB
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
57
58
59
60
61
{
"name": "webdev-backup",
"version": "1.7.0",
"description": "A robust backup solution for web development projects",
"main": "webdev-backup.sh",
"scripts": {
"start": "./webdev-backup.sh",
"backup": "./backup.sh",
"backup:quick": "./quick-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 $HOME/backups",
"test": "./run-tests.sh",
"test:backup": "./test-backup.sh",
"test:cron": "./test/test-cron.sh",
"test:tar": "./test/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",
"organize": "./cleanup-backup-files.sh",
"organize:all": "./cleanup-backup-files.sh --all",
"organize:dry": "./cleanup-backup-files.sh --dry-run",
"release": "./update-changelog.sh",
"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": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}