-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
83 lines (83 loc) · 2.1 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
{
"name": "iobroker.backitup",
"version": "2.6.23",
"engines": {
"node": ">=14.0.0"
},
"description": "ioBroker.backitup enables the cyclic creation of backups of an IoBroker / Homematic installation",
"author": {
"name": "simatec",
"email": "backitup@simateccloud.de"
},
"contributors": [
{
"name": "simatec",
"email": "backitup@simateccloud.de"
},
{
"name": "bluefox",
"email": "dogafox@gmail.com"
}
],
"homepage": "https://github.com/simatec/ioBroker.backitup",
"license": "MIT",
"keywords": [
"ioBroker",
"ioBroker.backitup",
"Smart Home",
"home automation",
"Backup"
],
"repository": {
"type": "git",
"url": "https://github.com/simatec/ioBroker.backitup"
},
"dependencies": {
"@iobroker/adapter-core": "^2.6.8",
"dropbox-v2-api": "^2.5.10",
"webdav": "^4.11.2",
"ftp": "^0.3.10",
"node-schedule": "^2.1.1",
"@googleapis/drive": "^5.1.0",
"node-wol": "^0.1.1",
"request": "^2.88.2",
"google-auth-library": "^8.8.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"axios": "^1.4.0",
"tar-fs": "^2.1.1",
"onedrive-api": "^1.0.9"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@iobroker/testing": "^4.1.0",
"chai": "^4.3.7",
"gulp": "^4.0.2",
"mocha": "^10.2.0"
},
"main": "main.js",
"files": [
"admin/",
"docs/",
"lib/",
"main.js",
"io-package.json",
"LICENSE"
],
"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",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes"
},
"bugs": {
"url": "https://github.com/simatec/ioBroker.backitup/issues"
},
"readmeFilename": "README.md"
}