-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
50
51
52
53
54
55
{
"name": "modbusdb",
"version": "1.0.2",
"description": "An abstraction layer over the modbus protocol",
"types": "./dist/index.d.ts",
"type": "module",
"exports": "./dist/index.js",
"engines": {
"node": ">=12"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc --declaration",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yarosdev/modbusdb.git"
},
"keywords": [
"nodejs",
"modbus",
"db"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/yarosdev/modbusdb/issues"
},
"homepage": "https://github.com/yarosdev/modbusdb#readme",
"dependencies": {
"p-queue": "^7.3.0",
"p-retry": "^5.1.1",
"p-timeout": "^6.0.0"
},
"peerDependencies": {
"modbus-serial": "^8"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "8.22.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}