-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "@peter-murray/hue-bridge-model",
"description": "Philips Hue Bridge Model",
"version": "2.1.1",
"author": "Peter Murray <[email protected]>",
"contributors": [
{
"name": "Peter Murray",
"email": "[email protected]"
}
],
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"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.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.30",
"chai": "^4.3.0",
"mocha": "^9.1.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"engines": {
"node": ">= 10.0.0"
},
"license": "Apache-2.0",
"keywords": [
"philips",
"hue",
"api",
"living",
"color",
"colour",
"automation",
"light",
"lighting",
"bridge"
]
}