forked from SavageSoftware/portainer-backup
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
57
{
"name": "portainer-backup",
"private": true,
"version": "0.0.0-development",
"description": "Utility for scripting or scheduling scheduled backups for Portainer",
"readme": "readme.md",
"keywords": [
"portainer",
"backup",
"docker",
"kubernetes",
"container"
],
"homepage": "https://github.com/dockur/portainer-backup",
"bugs": "https://github.com/dockur/portainer-backup/issues",
"repository": {
"type": "git",
"url": "https://github.com/dockur/portainer-backup.git"
},
"engines": {
"node": ">=16"
},
"license": "Apache",
"main": "index.js",
"type": "module",
"bin": {
"portainer-backup": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"build": "npm install",
"help": "node src/index.js help",
"schedule": "node src/index.js schedule",
"backup": "node src/index.js backup",
"stacks": "node src/index.js stacks",
"info": "node src/index.js info",
"restore": "node src/index.js restore"
},
"dependencies": {
"axios": "^1.7.7",
"cli-table3": "^0.6.4",
"colors": "^1.4.0",
"death": "^1.1.0",
"dev-null": "^0.1.1",
"figlet": "^1.7.0",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"log-symbols": "^7.0.0",
"luxon": "^3.4.4",
"node-cron": "^3.0.3",
"pretty-bytes": "^6.1.1",
"sanitize-filename": "^1.6.3",
"semver-parser": "^4.1.6",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
}
}