-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "iobroker.sonoff",
"description": "The adapter allows to send and receive MQTT messages from ioBroker and to be a broker.",
"version": "4.1.0",
"author": "bluefox <dogafox@gmail.com>",
"homepage": "https://github.com/ioBroker/ioBroker.sonoff",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.sonoff"
},
"keywords": [
"ioBroker",
"sonoff",
"MQTT",
"tasmota",
"esp"
],
"dependencies": {
"@iobroker/adapter-core": "^3.4.3",
"@iobroker/dm-utils": "^3.2.0",
"mqtt": "^5.15.2",
"mqtt-connection": "^4.1.0"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.1",
"@alcalzone/release-script-plugin-iobroker": "^5.2.0",
"@alcalzone/release-script-plugin-license": "^5.2.2",
"@alcalzone/release-script-plugin-manual-review": "^5.2.0",
"@iobroker/adapter-dev": "^1.5.0",
"@iobroker/build-tools": "^3.0.1",
"@iobroker/eslint-config": "^2.3.4",
"@iobroker/testing": "^5.3.0",
"@iobroker/types": "^7.2.2",
"@tsconfig/node22": "^22.0.6",
"typescript": "~6.0.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.sonoff/issues"
},
"main": "build/main.js",
"files": [
"admin/",
"build/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test:unit": "mocha test/bridge.js test/checkStates.js test/deviceManager.js --exit",
"test:integration": "mocha test/integration.js --exit",
"test:package": "mocha test/testPackageFiles.js --exit",
"test": "npm run test:unit && npm run test:integration",
"lint": "eslint -c eslint.config.mjs",
"build": "node tasks.js && npm run build:tsc",
"build:tsc": "tsc -p tsconfig.build.json",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx -y npm-check-updates --upgrade"
},
"engines": {
"node": ">=22.19.0"
},
"license": "MIT"
}