-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 KB
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
52
53
54
{
"name": "bitlash-commander",
"description": "Web control panel builder for Arduino",
"version": "0.0.14",
"private": false,
"preferGlobal": false,
"author": {
"name": "Bill Roy",
"email": "bill@bitlash.net"
},
"repository": {
"type": "git",
"url": "git://github.com/billroy/bitlash-commander.git"
},
"bugs": {
"url": "https://github.com/billroy/bitlash-commander/issues"
},
"licenses": {
"type": "MIT",
"url": "https://raw.github.com/billroy/bitlash-commander/master/LICENSE"
},
"main": "./index.js",
"scripts": {
"start": "forever start index.js",
"stop": "forever stop index.js"
},
"bin": {
"commander": "./index.js"
},
"dependencies": {
"basic-auth": "^1.0.0",
"body-parser": "^1.12.0",
"express": ">=4.0.0",
"morgan": "^1.5.1",
"multer": "^0.1.8",
"optimist": "=0.4.0",
"redis": "=0.8.3",
"request": "=2.21.0",
"serialport": "=1.1.0",
"serve-static": "^1.9.1",
"shelljs": "=0.1.3",
"socket.io": ">=0.9.14"
},
"engines": {
"node": ">=0.8.22",
"npm": ">=1.1.0"
},
"keywords": [
"arduino",
"bitlash",
"control panel",
"web control"
]
}