homebridge-onkyo
Version:
Homebridge plugin for Onkyo Receivers
82 lines (81 loc) • 1.95 kB
JSON
{
"name": "homebridge-onkyo",
"version": "2022.18.1",
"description": "Homebridge plugin for Onkyo Receivers",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore package.json config.schema.json",
"test": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToddGreenfield/homebridge-onkyo.git"
},
"dependencies": {
"polling-to-event": "^2.1.0",
"async": "*",
"js-yaml": "*"
},
"devDependencies": {
"eslint": ">=7.30.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-unicorn": "latest",
"eslint-plugin-json": "^3.0.0",
"xo": ">=0.47.0"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"onkyo-avr",
"onkyo"
],
"engines": {
"node": ">=14.19.1",
"homebridge": ">=1.4.0"
},
"author": "gw-wiscon <gw.wiscon@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ToddGreenfield/homebridge-onkyo/issues"
},
"homepage": "https://github.com/ToddGreenfield/homebridge-onkyo#readme",
"xo": {
"space": false,
"ignores": "eiscp",
"rules": {
"unicorn/prefer-module": "warn",
"unicorn/no-new-array": "warn",
"unicorn/no-array-for-each": "warn",
"camelcase": "off",
"kebabCase": "off",
"no-mixed-spaces-and-tabs": "warn",
"no-useless-escape": "warn",
"indent": "off",
"quotes": "warn",
"capitalized-comments": "off",
"no-var": "warn",
"prefer-destructuring": "off",
"prefer-arrow-callback": "warn",
"object-shorthand": [
"off",
"always",
{
"ignoreConstructors": true
}
],
"quote-props": "error",
"no-unused-vars": "warn",
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"no-use-before-define": [
"error",
{
"classes": false
}
]
}
}
}