forked from b48736/axpert-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "axpert-monitor",
"version": "1.0.1",
"description": "Monitor Voltronic/Axpert inverter via USB",
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint .",
"test": "mocha",
"udev-setup": "./setup/udev-setup.sh"
},
"bin": {
"axpert-query": "./bin/axpert-query.js",
"axpert-set": "./bin/axpert-set.js",
"axpert-udev-setup": "./setup/udev-setup.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b48736/axpert-monitor.git"
},
"keywords": [
"Axpert",
"Inverter",
"Voltronic"
],
"author": "b48736",
"license": "MIT",
"bugs": {
"url": "https://github.com/b48736/axpert-monitor/issues"
},
"homepage": "https://github.com/b48736/axpert-monitor#readme",
"devDependencies": {
"eslint": "^7.32.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sinon": "^11.1.2"
},
"dependencies": {
"async": "^3.2.1",
"buffershift": "0.0.2",
"chai": "^4.3.4",
"crc": "^3.8.0",
"lodash": "^4.17.21",
"node-hid": "^2.1.1",
"serialport": "^9.2.4",
"yargs": "^17.2.1"
}
}