-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.49 KB
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
{
"name": "iobroker.msghub",
"version": "0.0.2",
"description": "a hub for all your messages, tasks and notifications",
"author": {
"name": "Ben",
"email": "iobroker@hiddenplaces.eu"
},
"contributors": [],
"homepage": "https://github.com/stacknerd/ioBroker.msghub",
"license": "MIT",
"keywords": [
"template",
"automation",
"IoT",
"integration"
],
"repository": {
"type": "git",
"url": "git@github.com:stacknerd/ioBroker.msghub.git"
},
"engines": {
"node": ">= 22"
},
"dependencies": {
"@iobroker/adapter-core": "^3.3.2"
},
"devDependencies": {
"@alcalzone/release-script": "^5.0.0",
"@alcalzone/release-script-plugin-iobroker": "^4.0.0",
"@alcalzone/release-script-plugin-license": "^4.0.0",
"@alcalzone/release-script-plugin-manual-review": "^4.0.0",
"@iobroker/adapter-dev": "^1.5.0",
"@iobroker/dev-server": "^0.8.0",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/testing": "^5.2.2",
"@tsconfig/node22": "^22.0.5",
"@types/iobroker": "npm:@iobroker/types@^7.1.0",
"@types/node": "^22.19.3",
"typescript": "~5.9.3"
},
"main": "main.js",
"files": [
"admin{,/!(lib)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
"admin{,/!(lib)/**}/*.{html,css,png,svg,jpg,js}",
"i18n/",
"lib/",
"src/",
"www/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"docs:generate": "node generate-doc-index.mjs",
"docs:check": "node generate-doc-index.mjs --check",
"test:js": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,*.test.js,test/**/test!(PackageFiles|Startup).js}\"",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:js && npm run test:package",
"check": "tsc --noEmit -p tsconfig.check.json",
"lint": "eslint -c eslint.config.mjs .",
"translate": "translate-adapter",
"release": "release-script",
"dev-server": "dev-server",
"i18n:generate": "node i18n-generate.mjs --scope all",
"i18n:generate:remove": "node i18n-generate.mjs --scope all --remove",
"i18n:mirror:admin-to-runtime": "node i18n-mirror-admin-to-runtime.mjs",
"i18n:mirror:admin-to-runtime:check": "node i18n-mirror-admin-to-runtime.mjs --check",
"i18n:check": "node i18n-check.mjs --scope all",
"i18n:sort": "node i18n-sort.mjs --scope all"
},
"bugs": {
"url": "https://github.com/stacknerd/ioBroker.msghub/issues"
},
"readmeFilename": "README.md"
}