-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.7 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
58
59
60
{
"name": "portainer-backup",
"version": "0.0.7",
"description": "Utility for scripting or scheduling scheduled backups for Portainer",
"readme": "README.md",
"keywords": [
"portainer",
"backup",
"docker",
"kubernetes",
"container"
],
"homepage": "https://github.com/SavageSoftware/portainer-backup",
"bugs": "https://github.com/SavageSoftware/portainer-backup/issues",
"author": {
"name": "SavageSoftware, LLC.",
"url": "https://savagesoftware.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SavageSoftware/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": "^0.27.2",
"cli-table3": "^0.6.2",
"colors": "^1.4.0",
"death": "^1.1.0",
"dev-null": "^0.1.1",
"figlet": "^1.5.2",
"figures": "^5.0.0",
"gradient-string": "^2.0.1",
"log-symbols": "^5.1.0",
"luxon": "^3.0.1",
"node-cron": "^3.0.1",
"pretty-bytes": "^6.0.0",
"sanitize-filename": "^1.6.3",
"semver-parser": "^4.0.1",
"uuid": "^8.3.2",
"yargs": "^17.5.1"
}
}