forked from ioBroker/ioBroker.js-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.71 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
{
"name": "iobroker.js-controller",
"version": "1.5.3",
"engines": {
"node": ">=4.8.7"
},
"optionalDependencies": {
"redis": "^2.8.0",
"greenlock": "^2.2.7",
"le-challenge-fs": "^2.0.8",
"le-sni-auto": "^2.1.5",
"winston-syslog": "^1.2.6",
"diskusage": "^0.2.4"
},
"bin": {
"iobroker": "./iobroker.js"
},
"dependencies": {
"bluebird": "^3.5.1",
"daemonize2": "^0.4.2",
"iobroker.admin": ">=2.0.9",
"jsonwebtoken": "^8.2.1",
"jszip": "^3.1.5",
"loadavg-windows": "^1.0.2",
"mime": "^1.4.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-schedule": "^1.3.0",
"node.extend": "^2.0.0",
"pidusage": "^2.0.13",
"prompt": "^1.0.0",
"pyconf": "^1.1.2",
"request": "^2.85.0",
"safe-replace": "^1.0.2",
"semver": "^5.5.0",
"socket.io": "1.7.2",
"socket.io-client": "1.7.2",
"tar": "^4.4.2",
"winston": "^2.4.2",
"winston-daily-rotate-file": "^1.7.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/node": "^6.0.109",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-http": "^2.2.0",
"grunt-jscs": "^3.0.1",
"grunt-jsdoc": "^2.1.0",
"grunt-replace": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.1.1"
},
"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 <[email protected]>",
"contributors": [
"bluefox <[email protected]>",
"hobbyquaker <[email protected]>"
],
"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",
"prepublish": "node lib/scripts/scripts.js --prepublish",
"test": "node node_modules/mocha/bin/mocha test --exit",
"test-redis-socket": "node node_modules/mocha/bin/mocha test/redis-socket/ --exit",
"coverage": "node node_modules/istanbul/lib/cli.js cover --config istanbul.yml node_modules/mocha/bin/_mocha ./test -- --ui bdd -R spec"
},
"main": "controller.js",
"license": "MIT"
}