-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1 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
{
"name": "serial-tcp-proxy",
"version": "0.6.2",
"description": "TCP Proxy on specific serial port",
"keywords": [
"serialport",
"tcp",
"proxy"
],
"homepage": "https://github.com/yagamy4680/serial-tcp-proxy",
"author": "yagamy <yagamy@gmail.com>",
"contributors": [],
"license": "MIT",
"main": "index",
"files": [
"index.js",
"lib/",
"bin/",
"src/"
],
"dependencies": {
"byline": "^5.0.0",
"colors": "^1.4.0",
"express": "^4.17.1",
"livescript": "github:ischenkodv/LiveScript",
"lodash": "^4.17.20",
"pino": "^7.9.1",
"pino-pretty": "^7.5.4",
"request": "^2.88.2",
"serialport": "^9.0.1",
"socket.io": "^4.4.1",
"through2": "^4.0.2",
"xterm": "^4.8.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"standard-version": "^9.0.0"
},
"optionalDependencies": {},
"scripts": {
"release": "standard-version"
},
"bin": {
"ttt": "./index.js"
},
"pkg": {
"assets": [
"src/**/*.ls"
]
}
}