-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 979 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
42
{
"private": false,
"displayName": "Elephant Backup",
"name": "elephant-backup",
"version": "4.0.4",
"bin": "src/main.js",
"description": "Elephant Backup is an easy backup CLI to archive any number of ZFS filesystems containing lots of snapshots to another ZFS filesystem.",
"license": "BSD 2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/patineboot/elephant-backup.git"
},
"bugs": {
"url": "https://github.com/patineboot/elephant-backup/issues"
},
"engines": {
"node": ">=16.16.0"
},
"main": "src/main.js",
"type": "module",
"author": "Patineboot",
"keywords": [
"Elephant",
"Elephant Backup",
"elephant-backup",
"Backup",
"Archive",
"ZFS",
"Incremental"
],
"scripts": {
"start": "node src/main.js",
"test": "node --test test/"
},
"dependencies": {
"commander": "^9.4.1"
},
"devDependencies": {
"@types/node": "^18.8.5",
"node": "^18.10.0"
}
}