-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 840 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
{
"name": "packet-forwarder",
"version": "1.0.9",
"description": "Virtual LoRa packet forwarder that forwards RF packets from API to a server through a IP/UDP link, and emits RF packets that are sent by the server.",
"main": "lib/index.js",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"test": "mocha"
},
"keywords": [
"LoRa",
"packet forwarder",
"packet",
"forwarder",
"LoRaWAN"
],
"author": "Antonio Bustos <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/antoniobusrod/packet-forwarder.git"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^10.2.0",
"sinon": "7.1.1",
"standard": "12.0.1"
},
"dependencies": {
"debug": "4.3.1"
}
}