-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 872 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
34
35
{
"name": "node-blink1-server",
"version": "0.5.0",
"description": "HTTP REST API server in Node for blink(1) devices",
"repository": {
"type": "git",
"url": "git://github.com/todbot/node-blink1-server.git"
},
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node main.js",
"debug": "DEBUG=* node main.js"
},
"bin": {
"blink1-server": "./main.js"
},
"author": "Tod E. Kurt",
"license": "ISC",
"keywords": [
"blink(1)",
"blink1"
],
"bugs": {
"url": "https://github.com/todbot/node-blink1-server/issues"
},
"dependencies": {
"express": "^4.17.2",
"node-blink1": "^0.5.1",
"parse-color": "^1.0.0"
},
"devDependencies": {
"debug": "^4.3.3"
}
}