-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
143 lines (143 loc) · 3.83 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "iobroker.backitup",
"version": "3.0.26",
"engines": {
"node": ">=18.0.0"
},
"description": "ioBroker.backitup allows you to backup and restore your ioBroker installation and other systems, such as databases, Zigbee, scripts and many more.",
"author": {
"name": "simatec",
"email": "[email protected]"
},
"contributors": [
{
"name": "simatec",
"email": "[email protected]"
},
{
"name": "bluefox",
"email": "[email protected]"
}
],
"homepage": "https://github.com/simatec/ioBroker.backitup",
"license": "MIT",
"keywords": [
"ioBroker",
"ioBroker.backitup",
"Smart Home",
"home automation",
"Backup",
"iob",
"Homematic",
"Grafana",
"Zigbee",
"MySql",
"InfluxDB",
"Onedrive",
"GoogleDrive",
"Dropbox",
"WebDav",
"NFS",
"CIFS",
"FTP",
"NAS",
"Backitup",
"JavaScript",
"Restore",
"Redis",
"Node-Red",
"Yahka"
],
"repository": {
"type": "git",
"url": "https://github.com/simatec/ioBroker.backitup"
},
"dependencies": {
"@googleapis/drive": "^8.14.0",
"@iobroker/adapter-core": "^3.2.2",
"axios": "^1.7.7",
"cors": "^2.8.5",
"cron-parser": "^4.9.0",
"dropbox-v2-api": "^2.5.11",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"ftp": "^0.3.10",
"google-auth-library": "^9.14.2",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.1",
"node-wol": "^0.1.1",
"onedrive-api": "^1.1.1",
"tar-fs": "^3.0.6",
"webdav": "^5.7.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
"@iobroker/adapter-dev": "^1.3.0",
"@iobroker/build-tools": "^2.0.6",
"@iobroker/testing": "^5.0.0",
"@iobroker/vis-2-widgets-react-dev": "^4.0.3",
"chai": "^4.5.0",
"mocha": "^10.8.2"
},
"main": "main.js",
"files": [
"admin/",
"!admin/**/*.map",
"admin{,/!(i18n)/**}/flat.txt",
"docs/",
"lib/",
"!lib/**/*.{sh,bat,log}",
"!lib/**/restore.json",
"!.dev-server",
"!.vscode",
"!.mount",
"!.github",
"!.git",
"!.DS_Store",
"!.gitignore",
"!.gitattributes",
"!node_modules",
"!tasks",
"!.idea",
"!test",
"www/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "npm run test:package && npm run test:unit",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"prepublishOnly": "npm run build",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"translate": "translate-adapter",
"update-packages": "ncu --upgrade && cd src && ncu --upgrade && cd ../src-admin && ncu --upgrade",
"npm": "npm i && cd src && npm i -f && cd ../src-admin && npm i -f",
"dev-server-run": "dev-server run backitup",
"dev-server-watch": "dev-server watch -x backitup",
"dev-server-upload": "dev-server upload backitup",
"admin-0-clean": "node tasks --admin-0-clean",
"admin-1-npm": "node tasks --admin-1-npm",
"admin-2-compile": "node tasks --admin-2-compile",
"admin-3-copy": "node tasks --admin-3-copy",
"admin-build": "node tasks --admin-build",
"0-clean": "node tasks --0-clean",
"1-npm": "node tasks --1-npm",
"2-build": "node tasks --2-build",
"3-copy": "node tasks --3-copy",
"4-patch": "node tasks --4-patch",
"build": "node tasks"
},
"bugs": {
"url": "https://github.com/simatec/ioBroker.backitup/issues"
},
"readmeFilename": "README.md"
}