forked from peter-murray/node-hue-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "node-hue-api",
"description": "Philips Hue API Library for Node.js",
"version": "4.0.9",
"author": "Peter Murray <peter.murray@osirisoft.com>",
"contributors": [
{
"name": "Peter Murray",
"email": "681306+peter-murray@users.noreply.github.com"
}
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --timeout 5000 --recursive \"lib/api/**/*.test.js\"",
"clean-ts-definitions": "find . -type f -name '*.d.ts' -exec rm {} \\;",
"generate-ts-definitions": "npx typescript@3.8.3 index.js --allowJs --strict --declaration --emitDeclarationOnly --listEmittedFiles",
"prepublishOnly": "npm run generate-ts-definitions"
},
"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": "^1.0.0",
"bottleneck": "^2.19.5",
"get-ssl-certificate": "^2.3.3",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"chai": "~4.2",
"eslint": "^5.16.0",
"mocha": "^8.1.1"
},
"engines": {
"node": ">= 10.0.0"
},
"license": "Apache-2.0",
"keywords": [
"philips",
"hue",
"api",
"living",
"color",
"colour",
"automation",
"light",
"lighting",
"bridge"
]
}