-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "xbee-promise",
"version": "1.0.0",
"description": "Promise-based library for XBee wireless modules based on xbee-api",
"author": {
"name": "Jason Heard",
"email": "jasonpheard@gmail.com"
},
"license": "MIT",
"main": "./lib/xbee-promise.js",
"homepage": "https://github.com/101100/xbee-promise",
"keywords": [
"xbee",
"zigbee",
"802.15.4",
"script",
"promise",
"serialport"
],
"repository": {
"type": "git",
"url": "git://github.com/101100/xbee-promise.git"
},
"bugs": {
"url": "https://github.com/101100/xbee-promise/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"parambulator": "^1.5",
"q": "^1.4",
"serialport": "^4.0",
"xbee-api": "^0.5.1"
},
"devDependencies": {
"grunt": "^1.0",
"grunt-cli": "^1.2",
"grunt-contrib-watch": "^1.0",
"grunt-jslint": "^1.1",
"grunt-simple-mocha": "^0.4",
"proxyquire": "^1.6",
"should": "^11.1"
},
"scripts": {
"test": "grunt test",
"watch": "grunt watch"
}
}