-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "node-hue-api",
"description": "Philips Hue API Library for Node.js",
"version": "5.0.0-beta.14",
"author": "Peter Murray ",
"contributors": [
{
"name": "Peter Murray",
"email": "[email protected]"
}
],
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"test": "mocha -r ts-node/register \\\"src/**/*.test.ts\\\" \\\"src/**/*.test.js\\\"",
"build": "tsc -p tsconfig.json && tsc -p tsconfig_esm.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/peter-murray/node-hue-api"
},
"bugs": {
"url": "https://github.com/peter-murray/node-hue-api/issues"
},
"dependencies": {
"@peter-murray/hue-bridge-model": "^2.0.1",
"bonjour": "^3.5.0",
"bottleneck": "^2.19.5",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.12",
"@types/bonjour": "^3.5.10",
"chai": "~4.3.4",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"engines": {
"node": ">= 12.0.0"
},
"license": "Apache-2.0",
"keywords": [
"philips",
"hue",
"api",
"living",
"color",
"colour",
"automation",
"light",
"lighting",
"bridge"
]
}