-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "p1-monitor",
"version": "1.0.4",
"description": "Module to monitor a Smart Meter using its P1 port",
"author": "Daniel Gelling <daniel@gelling.me>",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest --verbose --coverage",
"lint": "eslint ./src --ext .ts --max-warnings 0"
},
"repository": {
"type": "git",
"url": "https://github.com/danielgelling/p1-monitor"
},
"dependencies": {
"luxon": "^3.4.4",
"node": ">20.10.0",
"serialport": "^12.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/luxon": "^3.3.8",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}