-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 766 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 766 Bytes
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
{
"name": "nodeserial",
"version": "1.0.0",
"description": "usb serial communication with nodejs",
"main": "./index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilemonChiro/nodeSerial.git"
},
"keywords": [
"usb",
"serialport",
"nodejs"
],
"author": "Philemon Chiro",
"license": "ISC",
"bin": {
"nodeserial": "./index.js"
},
"bugs": {
"url": "https://github.com/PhilemonChiro/nodeSerial/issues"
},
"homepage": "https://github.com/PhilemonChiro/nodeSerial#readme",
"dependencies": {
"boxen": "^6.2.1",
"chalk": "^5.0.0",
"serialport": "^9.2.8",
"yargs": "^17.3.0"
}
}