-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
44
45
46
47
48
49
50
{
"name": "@emitucom/bacnet-connector",
"version": "0.1.0",
"description": "Native TypeScript BACnet client library for reading and writing BACnet objects over IP and MSTP",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"serialport": "^8.0.2",
"raw-socket": "^1.8.1"
},
"devDependencies": {
"typescript": "^4.9.5",
"@types/node": "~10.17.60",
"@types/serialport": "^8.0.5",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"@types/jest": "^24.9.1"
},
"engines": {
"node": ">=8.17.0"
},
"author": "Emitu <dev@emitu.com> (https://emitu.com)",
"license": "BSD-3-Clause",
"homepage": "https://github.com/EmituCom/BACnetConnector#readme",
"repository": {
"type": "git",
"url": "https://github.com/EmituCom/BACnetConnector.git"
},
"bugs": {
"url": "https://github.com/EmituCom/BACnetConnector/issues"
},
"keywords": [
"bacnet",
"bacnet-ip",
"bacnet-mstp",
"building-automation",
"hvac",
"iot",
"industrial",
"typescript",
"plc"
]
}