-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 860 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
38
39
40
41
{
"name": "sx127x-driver",
"version": "0.0.2",
"description": "Node.js driver for Semtech SX1276/77/78/79 LoRa circuits",
"main": "index.js",
"scripts": {
"test": "jshint *.js lib/. examples/."
},
"repository": {
"type": "git",
"url": "git+https://github.com/xtrinch/xtrinch.git"
},
"keywords": [
"Semtech",
"SX1276",
"SX1277",
"SX1278",
"SX1279",
"LoRa"
],
"author": "Mojca Rojko <mojca.rojko@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xtrinch/sx127x-node-driver/issues"
},
"homepage": "https://github.com/xtrinch/sx127x-node-driver#readme",
"dependencies": {
"onoff": "^4.0.0",
"spi-device": "^2.0.8"
},
"os": [
"linux"
],
"devDependencies": {
"jshint": "^2.9.4"
},
"directories": {
"example": "examples",
"lib": "lib"
}
}