forked from davglass/doorbot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 963 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
{
"name": "doorbot",
"version": "5.1.0",
"description": "Ring.com Doorbell API",
"main": "doorbot.js",
"scripts": {
"pretest": "eslint --fix .",
"test": "jenkins-mocha ./tests/*.js",
"posttest": "nyc report"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 90,
"check-coverage": true,
"reporter": [
"text",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "[email protected]:davglass/doorbot.git"
},
"keywords": [
"ring",
"doorbell"
],
"author": "Dav Glass <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/davglass/doorbot/issues"
},
"homepage": "https://github.com/davglass/doorbot",
"devDependencies": {
"eslint": "^3.12.2",
"jenkins-mocha": "^4.1.0",
"nock": "^9.0.2",
"nyc": "^10.0.0"
},
"dependencies": {
"debug": "^2.6.8",
"socket.io": "^2.1.1"
}
}