-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 932 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "doorman",
"version": "4.0.0",
"description": "A node.js alternative to garage door openers.",
"author": "Andi Andreas <nexuister@gmail.com>",
"scripts": {
"start": "node main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nexuist/Doorman"
},
"bugs": {
"url": "https://github.com/nexuist/Doorman/issues"
},
"dependencies": {
"restify": "4.0.x",
"log-prefix": "0.0.0"
},
"config": {
"port": "6060",
"pins": {
"left": 25,
"right": 17
},
"livestream-url": "http://[REDACTED]:99/videostream.cgi?user=admin&pwd=[REDACTED]",
"users": {
"Andi": {
"key": "[REDACTED]",
"contact": "[REDACTED]@mms.att.net"
},
"Mom": {
"key": "[REDACTED]",
"contact": "[REDACTED]@mms.att.net"
},
"Dad": {
"key": "[REDACTED]",
"contact": "[REDACTED]@mms.att.net"
}
},
"SSL": {
"key": "pi.key",
"cert": "pi.crt"
}
},
"license": "MIT"
}