forked from mikakaraila/node-red-contrib-opcua
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "node-red-contrib-opcua",
"version": "0.2.72",
"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": {
"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": "^3.1.0",
"colors": "^1.3.3",
"es6-map": "^0.1.5",
"get-installed-path": "^4.0.8",
"node-opcua": "^2.7.0",
"treeify": "^1.1.0"
},
"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": "^2.6.3",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0"
}
}