-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
83 lines (83 loc) · 2.24 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.modbus",
"version": "6.4.0",
"description": "Connect devices oder Modbus protocol to ioBroker",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"contributors": [
{
"name": "bluefox",
"email": "[email protected]"
}
],
"homepage": "https://github.com/ioBroker/ioBroker.modbus",
"license": "MIT",
"keywords": [
"ioBroker",
"modbus",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.modbus"
},
"engines": {
"node": ">=16"
},
"optionalDependencies": {
"serialport": "^12.0.0"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.2",
"crc": "4.3.2",
"put": "0.0.6",
"stampit": "^2.1.2",
"stampit-event-bus": "^0.1.1",
"stampit-state-machine": "^0.2.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/build-tools": "^2.0.7",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/testing": "^5.0.0",
"@iobroker/legacy-testing": "^2.0.1",
"mocha": "^10.8.2",
"chai": "^4.5.0",
"nan": "2.22.0",
"modbus-stack": "^0.2.1"
},
"main": "main.js",
"files": [
"admin/",
"img",
"lib",
"io-package.json",
"main.js",
"LICENSE"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha test/testAdapter.js --exit && node node_modules/mocha/bin/mocha test/testPackageFiles.js --exit",
"release": "release-script",
"lint": "eslint -c eslint.config.mjs",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"build": "node tasks",
"update-packages": "ncu --upgrade && cd src && ncu --upgrade && cd ..",
"npm": "npm i && cd src && npm i -f",
"0-clean": "node tasks.js --0-clean",
"1-npm": "node tasks.js --1-npm",
"2-build": "node tasks.js --2-build",
"3-copy": "node tasks.js --3-copy",
"4-patch": "node tasks.js --4-patch"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.modbus/issues"
},
"readmeFilename": "README.md"
}