-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
66 lines (66 loc) · 1.5 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "lora-packet",
"version": "0.9.2",
"author": "Anthony Kirby",
"description": "LoRa packet decoder/encoder",
"keywords": [
"lora",
"packet",
"parse",
"decrypt",
"verify",
"encode",
"decode"
],
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/anthonykirby/lora-packet.git"
},
"bugs": {
"url": "https://github.com/anthonykirby/lora-packet/issues"
},
"main": "./out/lib.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/jest",
"prepublishOnly": "rm -rf ./out; ./node_modules/.bin/eslint .; ./node_modules/.bin/tsc",
"linter": "./node_modules/.bin/eslint ."
},
"bin": {
"lora-packet-decode": "./out/cli.js"
},
"dependencies": {
"@types/jest": "27.5.1",
"aes-cmac": "1.0.3",
"crypto-js": "4.2.0"
},
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "4.1.1",
"@types/node": "14.11.8",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"ansi-regex": ">=5.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.7.0",
"minimist": "^1.2.6",
"prettier": "^2.1.2",
"set-value": "^4.0.1",
"ts-jest": "^29.1.5",
"typescript": "^4.0.3"
},
"overrides": {
"minimist": "^1.2.6"
},
"contributors": [
{
"name" : "Kalik1",
"url" : "https://github.com/kalik1"
}
]
}