-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
38 lines (38 loc) · 826 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
{
"name": "sx127x",
"version": "0.0.0",
"description": "Node.js driver for Semtech SX1276/77/78/79 based LoRa radios",
"main": "index.js",
"scripts": {
"test": "jshint *.js lib/. examples/."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandeepmistry/node-sx127x.git"
},
"keywords": [
"Semtech",
"SX1276",
"SX1277",
"SX1278",
"SX1279",
"LoRa"
],
"author": "Sandeep Mistry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandeepmistry/node-sx127x/issues"
},
"homepage": "https://github.com/sandeepmistry/node-sx127x#readme",
"dependencies": {
"async": "^2.1.2",
"onoff": "^1.1.1",
"spi-device": "^0.2.4"
},
"os": [
"linux"
],
"devDependencies": {
"jshint": "^2.9.4"
}
}