forked from ISFH/ioBroker.wmbus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.09 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
{
"name": "iobroker.wireless-mbus",
"version": "0.9.4",
"description": "Receive data from Wireless Meter-Bus (wM-Bus) devices like gas or electricity meters",
"author": {
"name": "Christian Landvogt",
"email": "[email protected]"
},
"homepage": "https://github.com/lvogt/ioBroker.wireless-mbus",
"license": "GPL-2.0-only",
"keywords": [
"iobroker",
"ioBroker",
"wmbus",
"measure",
"mbus",
"wireless",
"meter",
"oms"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lvogt/ioBroker.wireless-mbus.git"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.2",
"node-aes-cmac": "^0.1.1",
"serialport": "^12.0.0"
},
"files": [
"io-package.json",
"README.md",
"NOTICE",
"main.js",
"admin/index_m.html",
"admin/wireless-mbus.png",
"admin/words.js",
"lib/receiver/*.js",
"lib/receiver/receiver.json",
"lib/SimpleLogger.js",
"lib/ObjectHelper.js",
"lib/prios-decoder.js",
"lib/tch-decoder.js",
"lib/vifinfo.js",
"lib/wmbus_decoder.js"
],
"devDependencies": {
"@iobroker/adapter-dev": "^1.3.0",
"@iobroker/testing": "^5.0.0",
"@serialport/binding-mock": "^10.2.2",
"@serialport/stream": "^12.0.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.7",
"axios": "^1.7.7",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"mockery": "^2.1.0",
"typescript": "^5.6.3"
},
"main": "main.js",
"scripts": {
"test:unit": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,lib/*.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:unit && npm run test:package",
"check": "tsc --noEmit -p tsconfig.check.json",
"lint": "eslint",
"translate": "translate-adapter"
},
"bugs": {
"url": "https://github.com/lvogt/ioBroker.wireless-mbus/issues"
},
"readmeFilename": "README.md"
}