forked from WebThingsIO/philips-hue-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.63 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
{
"name": "philips-hue-adapter",
"display_name": "Philips Hue",
"version": "0.9.3",
"description": "Mozilla WebThings Gateway Philips Hue Adapter. Press the link button on your Hue bridge to pair devices.",
"scripts": {
"lint": "eslint ."
},
"main": "index.js",
"keywords": [
"mozilla",
"iot",
"adapter",
"philips",
"hue",
"philips-hue"
],
"homepage": "https://github.com/mozilla-iot/philips-hue-adapter",
"author": "Mozilla IoT",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mozilla-iot/philips-hue-adapter.git"
},
"bugs": {
"url": "https://github.com/mozilla-iot/philips-hue-adapter/issues"
},
"dependencies": {
"color": "^3.1.2",
"node-fetch": "^2.6.0",
"node-ssdp": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0"
},
"files": [
"LICENSE",
"SHA256SUMS",
"index.js",
"manifest.json",
"node_modules",
"philips-hue-adapter.js"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"plugin": true,
"exec": "{nodeLoader} {path}",
"config": {
"usernames": []
},
"schema": {
"type": "object",
"properties": {
"usernames": {
"type": "array",
"items": {
"type": "object",
"required": [
"id",
"username"
],
"properties": {
"id": {
"type": "string"
},
"username": {
"type": "string"
}
}
}
}
}
}
}
}