forked from mikakaraila/node-red-contrib-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "node-red-contrib-opcua",
"version": "0.2.16",
"description": "A Node-RED node to communicate via OPC UA based on node-opcua library.",
"repository": {
"type": "git",
"url": "git+https://github.com/mikakaraila/node-red-contrib-opcua.git"
},
"keywords": [
"node-red",
"OPC UA",
"opc-ua",
"unified automation",
"opc foundation",
"node-opcua"
],
"author": {
"name": "Mika Karaila",
"email": "mika.karaila@gmail.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mikakaraila/node-red-contrib-opcua/issues"
},
"node-red": {
"nodes": {
"OpcUa-Item": "opcua/101-opcuaitem.js",
"OpcUa-Client": "opcua/102-opcuaclient.js",
"OpcUa-Browser": "opcua/103-opcuabrowser.js",
"OpcUa-Server": "opcua/104-opcuaserver.js",
"OpcUa-Endpoint": "opcua/105-opcuaendpoint.js",
"OpcUa-Event": "opcua/106-opcuaevent.js"
}
},
"dependencies": {
"async": "^2.0.0-rc.3",
"collections": "^3.0.0",
"node-opcua": "^0.0.61",
"treeify": "^1.0.1"
},
"homepage": "https://github.com/mikakaraila/node-red-contrib-opcua#readme",
"scripts": {
"test": "karma start opcua.conf.js --log-level debug --single-run"
}
}