forked from rfxcom/node-rfxcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 910 Bytes
/
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
{
"name": "rfxcom",
"version": "1.0.3",
"author": "Kevin McDermott <kevin@bigkevmcd.com>",
"engines" : { "node" : ">=4.8.0" },
"dependencies": {
"queue": "^4.0.0",
"serialport": "4.*"
},
"main": "rfxcom.js",
"devDependencies": {
"jasmine-node": "<2.0.0",
"jshint": "*"
},
"scripts": {
"test": "./node_modules/.bin/jasmine-node test",
"watch": "./node_modules/.bin/jasmine-node --autotest .",
"find-rfxcom": "./node_modules/.bin/bin/find-rfxcom.js",
"set-protocols": "./node_modules/.bin/bin/set-protocols.js"
},
"bin": {
"find-rfxcom": "./bin/find-rfxcom.js",
"set-protocols": "./bin/set-protocols.js"
},
"repository": {
"type": "git",
"url": "http://github.com/rfxcom/node-rfxcom.git"
},
"license": "MIT",
"keywords": [
"rfxcom",
"RFXtrx433"
],
"bugs": {
"url": "https://github.com/rfxcom/node-rfxcom/issues"
}
}