-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
50 lines (50 loc) · 1.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
{
"name": "smartmeter-obis",
"version": "4.0.0",
"description": "This library supports the reading and parsing of smartmeter protocols that follow the OBIS number logic to make their data available.",
"author": "Ingo Fischer <[email protected]>",
"contributors": [],
"homepage": "",
"license": "MIT",
"keywords": [
"smartmeter",
"SML",
"D0",
"eHz",
"OBIS",
"EFR"
],
"repository": {
"type": "git",
"url": "https://github.com/Apollon77/smartmeter-obis"
},
"dependencies": {
"open-sml": "^1.0.4",
"serialport": "^12.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"@alcalzone/release-script": "^3.6.0",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"virtual-serialport": "https://[email protected]/Apollon77/virtual-serialport",
"mocha": "^10.2.0",
"chai": "^4.3.10",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"nock": "^13.3.8",
"mock-require": "^3.0.3",
"mock-stdin": "^1.0.0"
},
"bugs": {
"url": "https://github.com/Apollon77/smartmeter-obis/issues"
},
"engines": {
"node": ">=16.0.0"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc --reporter=lcov mocha --exit",
"release": "release-script"
}
}