forked from zigbeer/cc-znp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (51 loc) · 1.34 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
60
61
62
63
{
"name": "zigbee-bridge-znp",
"version": "0.0.3",
"license": "MIT",
"description": "The interface for a host to communicate with TI CC253X Zigbee Network Processor(ZNP) over a serial port.",
"main": "lib/ccznp.js",
"keywords": [
"zigbee",
"cc253x"
],
"homepage": "https://github.com/open-zigbee/zigbee-bridge-znp#readme",
"repository": {
"type": "git",
"url": "https://github.com/open-zigbee/zigbee-bridge-znp.git"
},
"bugs": {
"url": "https://github.com/open-zigbee/zigbee-bridge-znp/issues"
},
"author": {
"name": "Jack Wu",
"email": "jackchased@gmail.com"
},
"contributors": [
{
"name": "Simen Li",
"email": "simenkid@gmail.com"
},
{
"name": "Hedy Wang",
"email": "hedywings@gmail.com"
}
],
"scripts": {
"test": "mocha -u bdd --reporter spec",
"lint": "eslint ."
},
"dependencies": {
"debug": "^2.6.9",
"enum": "^2.5.0",
"serialport": "^6.2.2",
"stream-browserify": "^2.0.1",
"unpi": "^1.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chance": "^1.0.16",
"mocha": "^2.5.3",
"eslint": "5.2.0",
"eslint-config-open-zigbee": "0.0.3"
}
}