forked from mikakaraila/node-red-contrib-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "node-red-contrib-opcua",
"version": "0.2.329",
"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": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mikakaraila/node-red-contrib-opcua/issues"
},
"node-red": {
"version": ">=1.3",
"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",
"OpcUa-Method": "opcua/107-opcuamethod.js",
"OpcUa-Rights": "opcua/108-opcuarights.js",
"OpcUa-Discovery": "opcua/109-opcuadiscovery.js"
}
},
"engines": {
"node": ">=15"
},
"dependencies": {
"async": "^3.2.1",
"chalk": "4.1.2",
"env-paths": "2.2.1",
"flatted": "^3.2.2",
"get-user-locale": "^2.3.0",
"lodash.clonedeep": "^4.5.0",
"node-opcua": "^2.124.0",
"node-opcua-client-crawler": "^2.124.0",
"node-opcua-file-transfer": "^2.124.0",
"os-locale": "^6.0.2"
},
"directories": {
"example": "examples"
},
"homepage": "https://github.com/mikakaraila/node-red-contrib-opcua#readme",
"scripts": {
"test": "karma start opcua.conf.js --log-level debug --single-run"
},
"devDependencies": {
"jasmine-core": "^3.8.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1"
}
}