iobroker.javascript
Version:
Rules Engine for ioBroker
120 lines (119 loc) • 4.01 kB
JSON
{
"name": "iobroker.javascript",
"version": "9.0.11",
"description": "Rules Engine for ioBroker",
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
{
"name": "hobbyquaker",
"email": "hq@ccu.io"
},
{
"name": "Apollon77",
"email": "ingo@fischer-ka.de"
},
{
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
{
"name": "Matthias Kleine",
"email": "info@haus-automatisierung.com"
}
],
"homepage": "https://github.com/ioBroker/ioBroker.javascript",
"license": "MIT",
"keywords": [
"ioBroker",
"javascript",
"script",
"engine",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.javascript"
},
"engines": {
"node": ">=18"
},
"depsComment": {
"@types/node": "should match the lowest MAJOR version of Node.js we support."
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.3",
"@iobroker/types": "^7.0.7",
"@types/node": "^24.0.8",
"axios": "^1.10.0",
"jsonata": "^2.0.6",
"jszip": "^3.10.1",
"node-inspect": "^2.0.0",
"node-schedule": "2.1.1",
"prettier": "^3.5.3",
"promisify-child-process": "^4.1.2",
"semver": "^7.7.2",
"suncalc2": "^1.8.1",
"typescript": "~5.8.3",
"virtual-tsc": "^0.6.2",
"wake_on_lan": "^1.0.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-dev": "^1.4.0",
"@iobroker/build-tools": "^2.0.15",
"@iobroker/eslint-config": "^2.0.2",
"@iobroker/plugin-sentry": "^2.0.4",
"@iobroker/testing": "^5.0.4",
"@iobroker/vis-2-widgets-react-dev": "^4.0.4",
"@types/node-schedule": "^2.1.7",
"@types/nodemailer": "^6.4.17",
"@types/request": "^2.48.12",
"@types/suncalc": "^1.9.2",
"alcalzone-shared": "^5.0.0",
"timekeeper": "^2.3.1"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.javascript/issues"
},
"main": "build-backend/main.js",
"files": [
"admin/",
"build-backend/",
"docs/",
"install/",
"io-package.json",
"LICENSE",
"admin/vsFont/codicon.json"
],
"scripts": {
"test:declarations": "tsc -p test/lib/TS/tsconfig.json && tsc -p test/lib/JS/tsconfig.json",
"test:javascript": "node node_modules/mocha/bin/mocha --exit",
"test": "npm run test:declarations && npm run test:javascript",
"translate": "translate-adapter",
"//postinstall": "node ./install/installTypings.js",
"build": "npm run build-backend && node tasks",
"build-backend": "tsc -p tsconfig.build.json && node tasks --copy-types",
"release": "release-script --noPush -y --all",
"update-packages": "npx -y npm-check-updates --upgrade && cd src-editor && npx -y npm-check-updates --upgrade && cd ../src-admin && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src-editor && npm i -f && cd ../src-admin && npm i",
"lint": "eslint -c eslint.config.mjs",
"lint-all": "eslint -c eslint.config.mjs && cd src-editor && eslint -c eslint.config.mjs && cd ../src-admin && eslint -c eslint.config.mjs",
"admin-0-clean": "node tasks.js --admin-0-clean",
"admin-1-npm": "node tasks.js --admin-1-npm",
"admin-2-compile": "node tasks.js --admin-2-compile",
"admin-3-copy": "node tasks.js --admin-3-copy",
"admin-build": "node tasks.js --admin-build",
"0-clean": "node tasks.js --0-clean",
"1-npm": "node tasks.js --1-npm",
"2-build": "node tasks.js --2-build",
"3-copy": "node tasks.js --3-copy",
"4-patch": "node tasks.js --4-patch",
"build-editor": "node tasks.js --build",
"blocklyJson2words": "node tasks.js --blocklyJson2words",
"blocklyWords2json": "node tasks.js --blocklyWords2json",
"monaco-update": "node tasks.js --monaco-update",
"monaco-typescript": "node tasks.js --monaco-typescript"
}
}