-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 990 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": "@bleskomat/cli",
"version": "1.0.0",
"description": "Command-line tool to communicate with Bleskomat hardware device via JSON-RPC over serial API.",
"main": "cli.js",
"bin": {
"bleskomat": "cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Bleskomat",
"hardware",
"CLI",
"command-line",
"serial",
"JSON-RPC",
"API"
],
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"contributors": [
{
"name": "Carlos Garcia Ortiz",
"email": "[email protected]"
}
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bleskomat/bleskomat-cli.git"
},
"bugs": {
"url": "https://github.com/bleskomat/bleskomat-cli/issues"
},
"homepage": "https://github.com/bleskomat/bleskomat-cli#readme",
"dependencies": {
"commander": "10.0.0",
"serialport": "10.5.0"
}
}