homebridge-blynk-plugin
Version:
Based on Peter J Wojciechowski but updated to use the new API
65 lines (64 loc) • 1.93 kB
JSON
{
"name": "homebridge-blynk-plugin",
"displayName": "Homebridge Blynk Platform",
"version": "0.3.0",
"description": "Based on Peter J Wojciechowski but updated to use the new API",
"main": "dist/index.js",
"scripts": {
"build1": "rimraf ./dist && tsc",
"build": "rimraf ./dist && npm run lint && npm test && tsc",
"clean": "rimraf ./dist",
"lint": "npx eslint ./__tests__ ./src --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"start": "tsc && ./node_modules/homebridge/bin/homebridge -I -D -P .",
"test": "jest"
},
"author": {
"name": "",
"email": "peterwoj@dwellersoul.com"
},
"engines": {
"node": ">=16.16.0",
"homebridge": ">=1.5.0"
},
"license": "MIT",
"files": [
"dist",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "https://github.com/peterwoj/homebridge-blynk-platform.git"
},
"bugs": {
"url": "https://github.com/peterwoj/homebridge-blynk-platform/issues"
},
"devDependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"@types/jest": "^27.5.1",
"@types/node": "18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"generate-changelog": "^1.8.0",
"homebridge": "^1.5.0",
"homebridge-config-ui-x": "^4.50.1",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"homepage": "https://github.com/peterwoj/homebridge-blynk-platform",
"dependencies": {
"got": "^11.8.2",
"semver": "^7.3.5"
},
"keywords": [
"homebridge blynk",
"homebridge",
"homebridge-plugin",
"Blynk",
"IoT",
"Siri"
]
}