UNPKG

iobroker.gotify-ws

Version:

Gotify web socket for connection to various notification systems

125 lines (124 loc) 3.17 kB
{ "name": "iobroker.gotify-ws", "version": "0.2.0", "description": "Gotify web socket for connection to various notification systems", "author": { "name": "simatec", "email": "simatec@simateccloud.de" }, "homepage": "https://github.com/simatec/ioBroker.gotify-ws", "license": "MIT", "keywords": [ "ioBroker", "Gotify", "Websocket", "Telegram", "Whatsapp", "Discord", "Mail", "Pushover", "Notification-Manager", "Signal" ], "repository": { "type": "git", "url": "https://github.com/simatec/ioBroker.gotify-ws.git" }, "engines": { "node": ">= 18" }, "dependencies": { "@iobroker/adapter-core": "^3.2.3", "axios": "^1.8.4", "ws": "^8.18.1" }, "devDependencies": { "@alcalzone/release-script": "^3.8.0", "@alcalzone/release-script-plugin-iobroker": "^3.7.2", "@alcalzone/release-script-plugin-license": "^3.7.0", "@alcalzone/release-script-plugin-manual-review": "^3.7.0", "@iobroker/adapter-dev": "^1.4.0", "@iobroker/eslint-config": "^2.0.1", "@iobroker/testing": "^5.0.4", "@tsconfig/node20": "^20.1.5", "@types/ws": "^8.18.1", "chai": "^5.2.0", "chai-as-promised": "^8.0.1", "mocha": "^11.1.0", "rimraf": "^6.0.1", "sinon": "^20.0.0", "sinon-chai": "^4.0.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "main": "build/main.js", "files": [ "admin/", "!admin/**/*/flat.txt", "!admin/**/tsconfig.json", "build/", "!.dev-server", "!.vscode", "!.github", "!.git", "!.DS_Store", "!.gitignore", "!.gitattributes", "!node_modules", "!tasks", "!.idea", "!test", "www/", "io-package.json", "LICENSE", "main.js" ], "scripts": { "prebuild": "rimraf build", "build": "build-adapter ts", "watch": "build-adapter ts --watch", "prebuild:ts": "rimraf build", "build:ts": "build-adapter ts", "watch:ts": "build-adapter ts --watch", "test:ts": "mocha --config test/mocharc.custom.json src/**/*.test.ts", "test:unit": "mocha test/unit --exit", "test": "npm run test:ts && npm run test:package", "check": "tsc --noEmit", "coverage": "nyc npm run test:ts", "test:package": "mocha test/package --exit", "test:integration": "mocha test/integration --exit", "release": "release-script", "release-patch": "release-script patch --yes", "release-minor": "release-script minor --yes", "release-major": "release-script major --yes", "translate": "translate-adapter", "dev-server-run": "dev-server run gotify-ws", "dev-server-watch": "dev-server watch gotify-ws", "npm": "npm install", "lint": "eslint -c eslint.config.mjs ." }, "nyc": { "include": [ "src/**/*.ts" ], "exclude": [ "src/**/*.test.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "text-summary", "html" ], "sourceMap": true, "instrument": true }, "bugs": { "url": "https://github.com/simatec/ioBroker.gotify-ws/issues" }, "readmeFilename": "README.md" }