-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.26 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
{
"name": "xmodemjs",
"version": "1.0.0",
"description": "A simple tool to transmit a file over a COM/Serial Port using the XMODEM protocol",
"main": "xmodem.js",
"bin": {
"xmodem": "xmodem.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-exe": "caxa --input . --output xmodem.exe --exclude .git --exclude xmodem.sh --exclude xmodem.exe -- \"{{caxa}}/node_modules/.bin/node\" \"{{caxa}}/xmodem.js\"",
"build-linux": "caxa --input . --output xmodem.sh --exclude .git --exclude xmodem.sh --exclude xmodem.exe -- \"{{caxa}}/node_modules/.bin/node\" \"{{caxa}}/xmodem.js\"",
"lint": "eslint --ext cjs,mjs,js --fix .",
"webserver": "http-server --no-dotfiles --port 3000",
"webserver:https": "http-server --no-dotfiles --port 3000 -S -C cert.pem",
"generate-cert": "openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem"
},
"type": "module",
"author": "Dean Netherton",
"license": "MIT",
"dependencies": {
"cli-progress": "^3.9.0",
"colors": "^1.4.0",
"commander": "^8.0.0",
"crc": "^3.8.0",
"debug": "^4.3.2",
"serialport": "^9.2.0"
},
"devDependencies": {
"caxa": "^2.1.0",
"eslint": "^7.31.0",
"http-server": "^13.0.2"
}
}