-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1006 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
{
"name": "node-red-contrib-nvl",
"version": "1.2.1",
"description": "CODESYS Network Variable List parser.",
"keywords": [
"node-red",
"CODESYS",
"nvl",
"plc",
"iec-61131-3",
"61131-3",
"netvar",
"network variable list",
"udp"
],
"author": "Hopperpop <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Hopperpop/node-red-contrib-nvl",
"bugs": {
"url": "https://github.com/Hopperpop/node-red-contrib-nvl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Hopperpop/node-red-contrib-nvl"
},
"dependencies": {
"iec-61131-3": "^1.0.0",
"lodash.merge": "^4.6.2"
},
"devDependencies": {},
"node-red": {
"nodes": {
"nvl-receive": "src/nvl-receive.js",
"nvl-send": "src/nvl-send.js",
"nvl-datatypes": "src/nvl-datatypes.js"
}
},
"examples": [
"1_Basic read-write.json",
"2_Structures Arrays Enums.json",
"3_Dynamic properties.json"
]
}