forked from sinedied/dmx-hue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.24 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
{
"name": "dmx-hue",
"version": "1.4.0",
"description": "Art-Net node to control Philips Hue lights with DMX",
"repository": {
"type": "git",
"url": "https://github.com/sinedied/dmx-hue.git"
},
"main": "index.js",
"bin": {
"dmx-hue": "./bin/dmx-hue"
},
"scripts": {
"test": "eslint *.js lib/*.js",
"postpublish": "git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags"
},
"keywords": [
"philips",
"hue",
"dmx",
"artnet",
"art-net",
"universe",
"node",
"cli",
"light",
"show",
"bridge"
],
"author": "Yohan Lasorsa",
"license": "MIT",
"homepage": "https://github.com/sinedied/dmx-hue",
"bugs": {
"url": "https://github.com/sinedied/dmx-hue/issues"
},
"dependencies": {
"chalk": "^1.1.3",
"color": "^1.0.3",
"conf": "^1.1.0",
"inquirer": "^3.0.6",
"minimist": "^1.2.0",
"node-hue-api": "^2.4.1"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-xo-space": "^0.16.0"
},
"engines": {
"node": ">=6.0.0"
},
"eslintConfig": {
"extends": "xo-space/esnext",
"rules": {
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
]
}
}
}