-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "@sensenode/node-mbus",
"version": "1.0.2",
"description": "A TypeScript M-Bus implementation of the common libmbus library.",
"repository": {
"type": "git",
"url": "git+https://github.com/Sensenode/node-mbus.git"
},
"main": "dist/index.js",
"scripts": {
"test": "echo \"TODO: Implement some tests :)\"",
"build": "tsc"
},
"author": "PH Lundblom (ph.lundblom@sensenode.com)",
"license": "BSD-3-Clause",
"dependencies": {
"serialport": "^13.0.0"
},
"devDependencies": {
"@types/module-alias": "^2.0.4",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"files": [
"package.json",
"COPYING",
"LICENCE",
"README.md",
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"exports": {
".": "./dist/index.js"
}
}