forked from Apollon77/ioBroker.mbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "iobroker.mbus",
"version": "2.4.0",
"description": "MBus Adapter",
"author": "Ingo Fischer <[email protected]>",
"contributors": [],
"homepage": "",
"license": "MIT",
"keywords": [
"iobroker",
"mbus",
"iot"
],
"repository": {
"type": "git",
"url": "https://github.com/Apollon77/ioBroker.mbus"
},
"engines": {
"node": ">=12.0.0"
},
"optionalDependencies": {
"serialport": "^10.4.0"
},
"dependencies": {
"node-mbus": "^2.0.0",
"@iobroker/adapter-core": "^2.6.0",
"@sentry/node": "^7.3.1",
"@sentry/integrations": "^7.3.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@iobroker/adapter-dev": "^1.0.0",
"mocha": "^9.2.2",
"chai": "^4.3.6",
"nyc": "^15.1.0"
},
"bugs": {
"url": "https://github.com/Apollon77/ioBroker.mbus/issues"
},
"main": "main.js",
"scripts": {
"test": "nyc --reporter=lcov node_modules/mocha/bin/mocha test/testAdapter.js --exit && node node_modules/mocha/bin/mocha test/testPackageFiles.js",
"release": "release-script",
"translate": "translate-adapter"
},
"nyc": {
"exclude": [
"!**/node_modules/"
],
"include": [
"**/tmp/node_modules/iobroker.mbus/*.js"
],
"produce-source-map": true
}
}