forked from anthonykirby/lora-packet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 877 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
42
43
44
{
"name": "lora-packet",
"version": "0.7.3",
"author": "Anthony Kirby",
"description": "LoRa packet decoder/encoder",
"keywords": [
"lora",
"packet",
"parse",
"decrypt",
"verify",
"encode",
"decode"
],
"repository": {
"type": "git",
"url": "https://github.com/anthonykirby/lora-packet.git"
},
"bugs": {
"url": "https://github.com/anthonykirby/lora-packet/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -g unit"
},
"bin": {
"lora-packet-decode": "./bin/lora-packet-decode"
},
"license": "",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"node-aes-cmac": "^0.1.1"
},
"license": "MIT",
"devDependencies": {
"js-base64": "^2.3.2",
"mocha": "^2.5.3",
"chai": "^4.1.2"
}
}