package.json
1.27 KB
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
{
"name": "@peter-murray/hue-bridge-model",
"description": "Philips Hue Bridge Model",
"version": "1.0.0",
"author": "Peter Murray <681306+peter-murray@users.noreply.github.com>",
"contributors": [
{
"name": "Peter Murray",
"email": "681306+peter-murray@users.noreply.github.com"
}
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -p tsconfig.json && tsc -p tsconfig_esm.json",
"test": "mocha --recursive -r ts-node/register \"src/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/peter-murray/hue-bridge-model"
},
"bugs": {
"url": "https://github.com/peter-murray/hue-bridge-model/issues"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">= 10.0.0"
},
"license": "Apache-2.0",
"keywords": [
"philips",
"hue",
"api",
"living",
"color",
"colour",
"automation",
"light",
"lighting",
"bridge"
]
}