-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 780 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 780 Bytes
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
{
"name": "rtlsdr",
"description": "Node bindings for rtl-sdr",
"author": "Joe Ferner <joe@fernsroth.com>",
"keywords": [
"sdr",
"rtl",
"rtl-sdr"
],
"maintainers": [
{
"name": "Joe Ferner",
"email": "joe.ferner@nearinfinity.com"
}
],
"bugs": {
"url": "https://github.com/joeferner/node-rtlsdr/issues"
},
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/joeferner/node-rtlsdr.git"
},
"main": "./rtlsdr.js",
"scripts": {
"test": "nodeunit test"
},
"dependencies": {
"bindings": "*"
},
"devDependencies": {
"nodeunit": "~0.7.4"
},
"optionalDependencies": {},
"scripts": {
"install": "node-gyp configure build"
},
"engines": {
"node": "*"
}
}