-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 748 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 748 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
{
"name": "@spct/panel-server",
"version": "0.0.1",
"description": "Contains server code to control the SPCT light panel (designed to run on a Raspberry Pi, tested on a Pi Zero W)",
"license": "CC-BY-2.5",
"author": {
"name": "Benjamin Gavin",
"email": "ben@virtual-olympus.com",
"url": "https://www.virtual-olympus.com/"
},
"main": "index.js",
"dependencies": {
"express": "4.16.3",
"body-parser": "1.18.3",
"serialport": "6.2.0",
"@serialport/parser-readline": "1.0.5",
"rpio": "0.9.22",
"parse-color": "1.0.0"
},
"scripts":{
"start": "node index.js"
},
"files":[
"index.js",
"state-machine.js"
]
}