-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 1.71 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
80
81
82
83
84
85
86
87
{
"name": "dmx-hue",
"version": "3.0.0",
"description": "Art-Net node to control Philips Hue lights with DMX",
"type": "module",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/sinedied/dmx-hue.git"
},
"exports": "./index.js",
"bin": {
"dmx-hue": "./bin/dmx-hue.js"
},
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"start": "./bin/dmx-hue.js",
"test": "xo",
"release:check": "semantic-release --dry-run"
},
"keywords": [
"philips",
"hue",
"dmx",
"artnet",
"art-net",
"universe",
"node",
"cli",
"light",
"show",
"bridge"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"license": "MIT",
"homepage": "https://github.com/sinedied/dmx-hue",
"bugs": {
"url": "https://github.com/sinedied/dmx-hue/issues"
},
"dependencies": {
"chalk": "^5.2.0",
"color": "^4.2.3",
"conf": "^12.0.0",
"inquirer": "^9.1.4",
"minimist": "^1.2.8",
"node-hue-api": "^4.0.11"
},
"devDependencies": {
"semantic-release": "^22.0.7",
"semantic-release-npm-github": "^5.0.0",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18.17.0"
},
"prettier": {
"trailingComma": "none",
"bracketSpacing": true
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
],
"rules": {
"unicorn/no-process-exit": "off",
"max-params": "off",
"no-throw-literal": "off",
"unicorn/no-array-reduce": "off",
"complexity": "off"
}
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"files": [
"bin",
"lib",
"index.js"
]
}