forked from ioBroker/ioBroker.js-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.51 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "iobroker.js-controller",
"version": "3.3.0",
"engines": {
"node": ">=10.0.0"
},
"optionalDependencies": {
"diskusage": "^1.1.3",
"greenlock": "^4.0.4",
"greenlock-express": "^4.0.3",
"le-challenge-fs": "^2.0.9",
"le-sni-auto": "^2.1.9",
"le-acme-core": "^2.1.4",
"winston-syslog": "^2.4.4",
"winston-seq-updated": "^1.0.4"
},
"bin": {
"iobroker": "./iobroker.js"
},
"dependencies": {
"@iobroker/plugin-base": "~1.2.1",
"@iobroker/plugin-sentry": "~1.1.10",
"@iobroker/db-states-redis": "~1.1.4",
"@iobroker/db-states-file": "~1.1.4",
"@iobroker/db-objects-redis": "~1.1.4",
"@iobroker/db-objects-file": "~1.1.4",
"chokidar": "^3.5.1",
"daemonize2": "^0.4.2",
"debug": "^4.3.1",
"decache": "^4.6.0",
"deep-clone": "^3.0.3",
"event-stream": "^4.0.1",
"fs-extra": "^9.1.0",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.5.0",
"loadavg-windows": "^1.1.1",
"mime": "^2.5.0",
"ncp": "^2.0.0",
"node-forge": "^0.10.0",
"node-schedule": "^2.0.0",
"node.extend": "^2.0.2",
"pidusage": "^2.0.21",
"promisify-child-process": "^4.1.1",
"prompt": "^1.1.0",
"readline-sync": "^1.4.10",
"request": "^2.88.2",
"semver": "^7.3.4",
"tar": "^6.1.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@alcalzone/release-script": "^1.8.3",
"@types/event-stream": "^3.3.34",
"@types/fs-extra": "^9.0.6",
"@types/iobroker": "^3.2.8",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/semver": "^7.3.4",
"@types/yargs": "^16.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.19.0",
"gulp": "^4.0.2",
"gulp-jsdoc3": "^3.0.0",
"gulp-replace": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^8.2.1",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0"
},
"homepage": "http://www.iobroker.com",
"description": "Updated by reinstall.js on 2018-06-11T15:19:56.688Z",
"keywords": [
"ioBroker",
"Smarthome",
"Home Automation",
"Smart Metering",
"Homematic",
"Hue",
"KNX",
"Z-Wave",
"ZigBee",
"Bidcos",
"TV",
"Sonos",
"AV Receiver"
],
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.js-controller/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ioBroker/ioBroker.js-controller/blob/master/LICENSE"
}
],
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
"bluefox <dogafox@gmail.com>",
"hobbyquaker <hq@ccu.io>"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.js-controller"
},
"scripts": {
"preinstall": "node lib/preinstallCheck.js",
"install": "node iobroker.js setup first",
"start": "node iobroker.js start",
"stop": "node iobroker.js stop",
"restart": "node iobroker.js restart",
"prepublishOnly": "node lib/scripts/scripts.js --prepublish",
"release": "release-script",
"test": "node node_modules/mocha/bin/mocha test --exit",
"test-jsonl": "node node_modules/mocha/bin/mocha test/jsonl/ --exit",
"test-redis-socket": "node node_modules/mocha/bin/mocha test/redis-socket/ --exit",
"test-redis-sentinel": "node node_modules/mocha/bin/mocha test/redis-sentinel/ --exit",
"coverage": "node node_modules/istanbul/lib/cli.js cover --config istanbul.yml node_modules/mocha/bin/_mocha ./test -- --ui bdd -R spec"
},
"main": "main.js",
"license": "MIT"
}