-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "xbee-api",
"description": "Node.js and Chrome communicate with XBee/ZigBee devices in API mode",
"version": "0.6.0",
"homepage": "https://github.com/jankolkmeier/xbee-api",
"author": {
"name": "Jan Kolkmeier",
"email": "[email protected]",
"url": "http://kolkmeier.com"
},
"repository": {
"type": "git",
"url": "git://github.com/jankolkmeier/xbee-api.git"
},
"bugs": {
"url": "https://github.com/jankolkmeier/xbee-api/issues"
},
"license": "MIT",
"main": "lib/xbee-api",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "grunt nodeunit"
},
"devDependencies": {
"serialport": "~6.0.4",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-nodeunit": "~1.0.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-browserify": "~5.0.0",
"grunt": "~1.0.1"
},
"keywords": [],
"dependencies": {
"buffer-builder": "^0.2.0",
"buffer-reader": "https://github.com/prodatakey/node-buffer-reader/archive/v0.0.3.tar.gz",
"safe-buffer": "~5.0.1"
}
}