-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "puck-js-hue",
"version": "1.0.0",
"description": "Control your Hue lights from a Puck.js",
"main": "main.js",
"scripts": {
"start": "node main.js",
"setup": "node setup.js",
"update": "node utility/prepPuck.js && node utility/flashPuck.js",
"prep": "node utility/prepPuck.js",
"flash": "node utility/flashPuck.js",
"register": "node utility/registerDevice.js",
"discoverPuck": "node utility/discoverPucks.js",
"discoverOnePuck": "node utility/discoverPucks.js --first",
"discoverLights": "node utility/discoverLights.js",
"listen": "node utility/discoverAllAdverts.js"
},
"keywords": [
"Hue",
"puck.js",
"Espruino",
"BLE",
"Raspberry Pi",
"Phillips"
],
"author": "Robert Reed",
"license": "MIT",
"dependencies": {
"auto-bind": "^2.0.0",
"dotenv": "^6.2.0",
"espruino": "^0.1.23",
"fs-extra": "^7.0.1",
"noble": "^1.9.1",
"node-hue-api": "^2.4.4",
"shelljs": "^0.8.3"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}