-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 844 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
{
"name": "remote-serial-port-client",
"description": "Serial port over Ethernet using REST API, WebSocket, TCP or UDP socket",
"version": "0.4.0",
"author": "Papn Kukn",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"minjs": "npm install minify && node -e \"require('minify')('./lib/RemoteSerialPort.js', function(error, data) { require('fs').writeFileSync('./dist/RemoteSerialPort.min.js', data); })\"",
"minify": "npm install minify && node minify.js"
},
"dependencies": {
"request": "^2.81.0",
"semaphore": "^1.0.5",
"ws": "^2.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/papnkukn/remote-serial-port-client"
},
"bugs": {
"url": "https://github.com/papnkukn/remote-serial-port-client/issues"
}
}