-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "node-red-contrib-ctrlx-automation",
"version": "1.9.6",
"description": "Node-RED nodes for ctrlX AUTOMATION",
"repository": {
"type": "git",
"url": "git+https://github.com/boschrexroth/node-red-contrib-ctrlx-automation"
},
"license": "MIT",
"keywords": [
"node-red",
"ctrlX AUTOMATION",
"ctrlX CORE",
"ctrlX DRIVE",
"Bosch Rexroth AG",
"www.ctrlx-automation.com",
"www.boschrexroth.com"
],
"node-red": {
"version": ">=1.3.0",
"nodes": {
"ctrlx-config": "ctrlx-config.js",
"ctrlx-config-subscription": "ctrlx-config-subscription.js",
"ctrlx-datalayer-request": "ctrlx-datalayer-request.js",
"ctrlx-datalayer-subscribe": "ctrlx-datalayer-subscribe.js"
}
},
"engines": {
"node": ">=14.0.0"
},
"author": {
"name": "Bosch Rexroth AG",
"url": "https://www.boschrexroth.com"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/node-red": "1.2.1",
"chai": "^4.3.6",
"cors": "^2.8.5",
"eslint": "^8.14.0",
"eslint-plugin-mocha": "^10.0.4",
"express": "^4.18.0",
"jwt-simple": "^0.5.6",
"mocha": "^10.0.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^15.1.0",
"ssestream": "^1.1.0",
"supports-color": "^9.2.2"
},
"dependencies": {
"atob": "^2.1.2",
"debug": "^4.3.4",
"launchdarkly-eventsource": "^1.4.4",
"mustache": "^4.2.0",
"uuid": "^8.3.2"
},
"scripts": {
"test": "mocha",
"test_with_debug_log": "set DEBUG=ctrlxcore&& mocha",
"test_with_coverage": "nyc mocha --timeout 60000",
"benchmark": "node ./test/helper/benchmark"
}
}