-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "homebridge-roku",
"version": "3.0.2",
"description": "Control Roku media players through homebridge",
"main": "index.js",
"scripts": {
"lint": "eslint bin/* src/**/*.js scripts/**/*.js",
"test": "npm run lint && jest",
"test:watch": "jest --watch",
"start": "./scripts/setup.js && DEBUG=* homebridge -D -U . -P .",
"release": "standard-version",
"prepublishOnly": "npm run test"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"bin": {
"homebridge-roku-config": "./bin/setup"
},
"repository": {
"type": "git",
"url": "git://github.com/bschlenk/homebridge-roku.git"
},
"keywords": [
"roku",
"homebridge",
"homekit",
"homebridge-plugin"
],
"author": "Brian Schlenker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bschlenk/homebridge-roku/issues"
},
"homepage": "https://github.com/bschlenk/homebridge-roku#readme",
"dependencies": {
"deepmerge": "^4.2.2",
"roku-client": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.14",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"hap-nodejs": "^0.8.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"standard-version": "^9.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}