-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.21 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "huestatus",
"version": "0.2.2",
"description": "Modular status light system for use with Philips Hue devices",
"main": "index.js",
"scripts": {
"test": "npm run lint && nyc mocha",
"lint": "eslint *.js test/**/*.js src/**/*.js lib/**/*.js ",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"stryker": "stryker run"
},
"author": "Ian Egner <https://twitter.com/ianegner>",
"license": "MIT",
"dependencies": {
"huejay": "^1.7.3",
"rc": "^1.2.2",
"requireg": "^0.2.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"apc-style": "1.2.0",
"apc-test": "1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APCOvernight/huestatus.git"
},
"bin": {
"huestatus": "./index.js"
},
"nyc": {
"include": [
"src/**/*.js"
],
"all": true,
"watermarks": {
"lines": [
90,
99
],
"functions": [
90,
99
],
"branches": [
90,
99
],
"statements": [
90,
99
]
},
"reporter": [
"clover",
"text",
"text-summary",
"html",
"cobertura",
"lcov"
],
"cache": true
}
}