forked from loralai-server/LoRaPacket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1012 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
{
"name": "lorapacket",
"version": "1.0.1",
"description": "LoRa WAN packet encode / decoder",
"main": "src/index.js",
"scripts": {
"test": "mocha src/test/index.test.js",
"build": "jsdoc2md --template DOCUMENTATION.hbs --files src/index.js > DOCUMENTATION.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loralai-server/LoRaPacket.git"
},
"keywords": [
"lora",
"lorawan",
"packet",
"encode",
"decoder"
],
"author": "Alexandru Radovici <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/loralai-server/LoRaPacket/issues"
},
"homepage": "https://github.com/loralai-server/LoRaPacket#readme",
"devDependencies": {
"faker": "^4.1.0",
"jsdoc-to-markdown": "^3.0.2",
"mocha": "^4.0.1",
"uuid": "^3.1.0"
},
"dependencies": {
"debug": "^3.1.0",
"extend": "^3.0.1",
"lodash": "^4.17.4",
"node-aes-cmac": "^0.1.1",
"validator": "^9.1.1"
}
}