-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "iobroker.hue",
"version": "3.13.1",
"description": "Connects Philips Hue LED Bulbs, Friends of Hue LED Lamps and Stripes and other SmartLink capable Devices (LivingWhites, some LivingColors) via Philips Hue Bridges",
"author": "hobbyquaker <[email protected]>",
"contributors": [
"hobbyquaker <[email protected]>",
"Pmant <[email protected]>",
"Bluefox <[email protected]>",
"Moritz Heusinger <[email protected]>"
],
"homepage": "https://github.com/iobroker-community-adapters/ioBroker.hue",
"license": "Apache-2.0",
"keywords": [
"ioBroker",
"hue",
"led",
"rgb",
"smartlink",
"zigbee",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/iobroker-community-adapters/ioBroker.hue"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@iobroker/adapter-core": "^3.1.4",
"hue-push-client": "^1.0.5",
"node-hue-api": "^4.0.11"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/testing": "^5.0.0",
"@iobroker/types": "^5.0.19",
"@peter-murray/hue-bridge-model": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"axios": "^1.7.8",
"chai": "^4.3.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gulp": "^4.0.2",
"mocha": "^10.8.2",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"scripts": {
"prebuild": "rimraf ./build",
"build:ts": "tsc -p tsconfig.build.json",
"build": "npm run build:ts",
"test:package": "mocha -r ts-node/register test/packageFiles.ts --exit",
"test:integration": "mocha -r ts-node/register test/integrationAdapter.ts --exit",
"test": "mocha -r ts-node/register test/*.ts --exit",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes"
},
"bugs": {
"url": "https://github.com/iobroker-community-adapters/ioBroker.hue/issues"
},
"main": "build/main.js",
"files": [
"admin/",
"build/",
"io-package.json",
"LICENSE"
]
}