forked from athombv/node-zigbee-clusters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "zigbee-clusters",
"version": "1.5.1",
"description": "Zigbee Cluster Library for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha --reporter list",
"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\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/athombv/node-zigbee-clusters.git"
},
"keywords": [
"zigbee",
"cluster",
"library"
],
"author": "Athom B.V.",
"license": "ISC",
"bugs": {
"url": "https://github.com/athombv/node-zigbee-clusters/issues"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/athombv/node-zigbee-clusters#readme",
"devDependencies": {
"@athombv/jsdoc-template": "^1.6.1",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-athom": "^2.1.0",
"jsdoc": "^3.6.7",
"jsdoc-ts-utils": "^2.0.0",
"mocha": "^7.2.0",
"serve": "^11.3.1",
"watch": "^1.0.2"
},
"dependencies": {
"@athombv/data-types": "^1.0.6",
"debug": "^4.1.1"
}
}