-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 867 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
{
"name": "serial-data-visualization-server",
"version": "1.0.0",
"description": "Serial Data Visualization Server Starter Kit for serial port related projects",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imadx/serial-data-visualization-server.git"
},
"keywords": [
"serial",
"usb",
"arduino",
"data",
"visualization",
"dashboard"
],
"author": "Ishan Madhusanka",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/imadx/serial-data-visualization-server/issues"
},
"homepage": "https://github.com/imadx/serial-data-visualization-server#readme",
"dependencies": {
"express": "^4.14.0",
"serialport": "^4.0.7",
"socket.io": "^1.7.2"
}
}