-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 761 Bytes
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
{
"name": "node-drivers",
"version": "2.0.3",
"description": "",
"type": "module",
"exports": "./src/index.js",
"keywords": [
"logix5000",
"cip",
"controllogix",
"pccc",
"modbus",
"plc",
"driver",
"protocol",
"tcp",
"udp"
],
"scripts": {
"test": "node --test --experimental-test-coverage test/unit/*.test.js",
"test-watch": "node --test --watch test/unit/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jmmoser/node-drivers.git"
},
"author": "Justin Moser",
"license": "MIT",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2"
},
"engines": {
"node": ">=20.0.0"
}
}