-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 855 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
36
37
38
39
40
41
42
43
44
{
"name": "node-drivers",
"version": "2.0.2",
"description": "",
"type": "module",
"exports": "./src/index.js",
"keywords": [
"logix5000",
"cip",
"controllogix",
"pccc",
"modbus",
"plc",
"driver",
"protocol",
"tcp",
"udp"
],
"scripts": {
"test": "jest --verbose --runInBand --coverage",
"test-watch": "jest --verbose --runInBand --coverage --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jmmoser/node-drivers.git"
},
"author": "Justin Moser",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"roots": [
"./test/unit"
]
}
}