-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 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
{
"name": "homey-zigbeedriver",
"version": "2.1.3",
"description": "This module can be used to make the development of Zigbee apps for Homey easier.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"lint": "eslint .",
"serve": "concurrently \"serve build/\" \"npm run build:watch\"",
"build": "jsdoc --configure ./docs/jsdoc.json",
"build:clean": "rm -rf ./build",
"build:watch": "watch \"npm run build:clean && npm run build\" lib docs \"node_modules/@athombv/jsdoc-template\""
},
"keywords": [
"zigbee",
"homey"
],
"author": "Athom B.V.",
"license": "ISC",
"dependencies": {
"color-space": "^1.16.0",
"tinygradient": "^1.1.1"
},
"peerDependencies": {
"zigbee-clusters": "^2.1.2"
},
"devDependencies": {
"@athombv/jsdoc-template": "^1.6.1",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-athom": "^2.0.8",
"homey": "^2.6.1",
"jsdoc": "^3.6.6",
"jsdoc-ts-utils": "^1.1.2",
"mocha": "^10.2.0",
"serve": "^14.2.0",
"watch": "^1.0.2",
"zigbee-clusters": "^2.1.2"
},
"engines": {
"node": ">=12"
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athombv/node-homey-zigbeedriver.git"
},
"bugs": {
"url": "https://github.com/athombv/node-homey-zigbeedriver/issues"
},
"homepage": "https://github.com/athombv/node-homey-zigbeedriver#readme"
}