-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "@vfk_research/node-red-contrib-msb",
"version": "1.0.3",
"description": "Nodes to connect to the Manufacturing Service Bus (MSB) developed by VFK Research (Fraunhofer IPA)",
"author": "Matthias Stöhr, Georg Weber",
"license": "Apache-2.0",
"homepage": "https://research.virtualfortknox.de/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vfk_research/msb-client-websocket-nodejs": "^1.0.13",
"debug": "^4.3.4"
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-html": "^7.1.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .html ."
},
"keywords": [
"node-red",
"vfk",
"msb",
"websocket",
"manufacturing service bus",
"integration",
"cps",
"iot",
"IPA",
"IGCV"
],
"node-red": {
"nodes": {
"msb-object": "msb-client/msb-object.js",
"msb-event": "msb-client/msb-event.js",
"msb-config": "msb-client/msb-config.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/research-virtualfortknox/node-red-contrib-msb.git"
},
"bugs": {
"url": "https://github.com/research-virtualfortknox/node-red-contrib-msb/issues"
},
"engines": {
"node": ">=14"
}
}