-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
35 lines (35 loc) · 846 Bytes
/
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
{
"name": "hue-cli",
"description": "A command line interface to philips hue",
"author": "Dave Eddy <[email protected]> (http://www.daveeddy.com)",
"version": "0.4.0",
"repository": {
"url": "https://github.com/bahamas10/hue-cli",
"type": "git"
},
"scripts": {
"test": "for f in examples/*.js; do echo \"$f\"; node \"$f\" || exit 1; echo; done; echo 'Passed'"
},
"preferGlobal": true,
"bin": {
"hue": "./hue-cli.js"
},
"dependencies": {
"css-color-names": "0.0.0",
"deepmerge": "^1.5.1",
"extsprintf": "~1.0.2",
"hue.js": "https://github.com/bahamas10/hue.js/tarball/master",
"latest": "~0.1.1",
"posix-getopt": "~1.0.0"
},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"keywords": [
"hue",
"philips",
"automation"
]
}