-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.09 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
{
"name": "xbee-rx",
"version": "5.0.0",
"description": "Reactive extensions library for XBee wireless modules based on xbee-api",
"author": {
"name": "Jason Heard",
"email": "[email protected]"
},
"license": "MIT",
"main": "./lib/xbee-rx.js",
"homepage": "https://github.com/101100/xbee-rx",
"keywords": [
"xbee",
"zigbee",
"802.15.4",
"script",
"rx",
"rxjs",
"serialport"
],
"repository": {
"type": "git",
"url": "git://github.com/101100/xbee-rx.git"
},
"bugs": {
"url": "https://github.com/101100/xbee-rx/issues"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"parambulator": "^1.5",
"rxjs": "^6.3.3",
"serialport": "^9.0.2",
"xbee-api": "^0.6.0"
},
"devDependencies": {
"grunt": "^1.0",
"grunt-cli": "^1.2",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-watch": "^1.0",
"grunt-simple-mocha": "^0.4",
"moment": "^2.10",
"proxyquire": "^2.1.0",
"request": "^2.61",
"should": "^13.2.3"
},
"scripts": {
"test": "grunt test",
"watch": "grunt watch"
}
}