forked from zigbeer/zcl-packet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (48 loc) · 1.32 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
58
59
{
"name": "zigbee-bridge-packet",
"version": "0.0.4",
"license": "MIT",
"description": "zigbee-bridge-packet is a framer and parser for ZigBee Cluster Library (ZCL) packet on node.js.",
"main": "index.js",
"keywords": [
"zcl",
"zigbee"
],
"homepage": "https://github.com/open-zigbee/zigbee-bridge-packet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/open-zigbee/zigbee-bridge-packet.git"
},
"bugs": {
"url": "https://github.com/open-zigbee/zigbee-bridge-packet/issues"
},
"author": "Jack Wu <jackchased@gmail.com>",
"contributors": [
{
"name": "Hedy Wang",
"email": "hedywings@gmail.com"
},
{
"name": "Simen Li",
"email": "simenkid@gmail.com"
}
],
"scripts": {
"test": "mocha -u bdd --reporter spec",
"lint": "eslint ."
},
"dependencies": {
"concentrate": "^0.2.3",
"dissolve-chunks": "^1.3.0",
"enum": "^2.3.0",
"zigbee-bridge-definitions": "0.0.3"
},
"devDependencies": {
"busyman": "^0.3.0",
"chai": "^3.5.0",
"chance": "^1.0.4",
"mocha": "^2.5.3",
"eslint": "5.2.0",
"eslint-config-open-zigbee": "0.0.3"
}
}