-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.52 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
{
"name": "hue2mqtt",
"version": "1.2.0",
"description": "Gateway between a Philips Hue bridge and MQTT",
"main": "index.js",
"bin": {
"hue2mqtt": "index.js"
},
"preferGlobal": true,
"scripts": {
"test": "camo-purge ; xo && sudo -E node_modules/.bin/nyc node_modules/.bin/mocha --exit test.js && node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/coveralls --force",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/hue2mqtt.js"
},
"keywords": [
"mqtt",
"smarthome",
"hue",
"philips"
],
"author": "Sebastian Raff <hobbyquaker@gmail.com> (https://hobbyquaker.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/hue2mqtt.js/issues"
},
"homepage": "https://github.com/hobbyquaker/hue2mqtt.js",
"dependencies": {
"mqtt": "^2.16.0",
"node-hue-api": "^2.4.2",
"obj-ease": "^1.0.1",
"persist-json": "^1.0.1",
"yalm": "^4.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"camo-purge": "latest",
"coveralls": "latest",
"hue-simulator": "github:hobbyquaker/hueSimulator",
"mocha": "latest",
"nyc": "latest",
"request": "latest",
"should": "latest",
"stream-splitter": "latest",
"xo": "latest"
},
"yargs": {
"boolean-negation": false
},
"nyc": {
"exclude": [
"test.js",
"config.js"
]
},
"engines": {
"node": ">=6.0.0"
},
"xo": {
"space": 4,
"ignore": [
"test.js"
]
}
}