-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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": "@jn-se/e3dc-modbus",
"version": "0.1.1",
"description": "A lightweight Node.js library to connect to E3DC devices using Modbus protocol.",
"homepage": "https://github.com/jn-se/e3dc-modbus",
"keywords": [
"e3dc",
"s10",
"modbus"
],
"license": "MIT",
"author": {
"name": "Jan Söhlke",
"url": "https://github.com/jn-se"
},
"repository": {
"type": "git",
"url": "https://github.com/jn-se/e3dc-modbus.git"
},
"main": "dist/lib/e3dc-modbus.js",
"types": "dist/lib/e3dc-modbus.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare" : "npm run build",
"prepublishOnly" : "npm test && npm run lint",
"preversion" : "npm run lint"
},
"files": [
"dist"
],
"dependencies": {
"modbus-serial": "^8.0.10"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.2"
}
}