-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: Changed the role of RGB states to `level.color.rgb`
- Loading branch information
Showing
4 changed files
with
150 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,135 +1,135 @@ | ||
{ | ||
"name": "iobroker.tradfri", | ||
"version": "2.6.2", | ||
"description": "ioBroker tradfri Adapter", | ||
"author": { | ||
"name": "AlCalzone", | ||
"email": "[email protected]" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/AlCalzone/ioBroker.tradfri/issues" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "AlCalzone", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"files": [ | ||
"build/", | ||
"admin/build/", | ||
"admin/icons/", | ||
"admin/*.{html,css,js,png}", | ||
"LICENSE", | ||
"io-package.json" | ||
], | ||
"dependencies": { | ||
"@iobroker/adapter-core": "^2.1.0", | ||
"alcalzone-shared": "^2.0.0", | ||
"node-tradfri-client": "^2.1.6" | ||
}, | ||
"devDependencies": { | ||
"@alcalzone/release-script": "^1.4.1", | ||
"@babel/core": "^7.2.2", | ||
"@iobroker/testing": "^2.0.0", | ||
"@types/chai": "^4.1.3", | ||
"@types/chai-as-promised": "^7.1.0", | ||
"@types/enzyme": "^3.1.15", | ||
"@types/enzyme-adapter-react-16": "^1.0.3", | ||
"@types/jquery": "^3.3.22", | ||
"@types/materialize-css": "^1.0.3", | ||
"@types/mocha": "^7.0.1", | ||
"@types/node": "^13.1.1", | ||
"@types/react": "^16.9.35", | ||
"@types/react-dom": "^16.0.5", | ||
"@types/sinon": "^7.0.11", | ||
"axios": "^0.19.0", | ||
"chai": "^4.1.2", | ||
"chai-as-promised": "^7.1.1", | ||
"cpx": "^1.5.0", | ||
"enzyme": "^3.3.0", | ||
"enzyme-adapter-react-16": "^1.15.2", | ||
"gulp": "^4.0.0", | ||
"iobroker-react-components": "^1.0.0", | ||
"jquery": "^3.5.0", | ||
"jsdom": "^16.2.2", | ||
"mocha": "^7.0.0", | ||
"node-ssh": "^8.0.0", | ||
"nyc": "^15.0.1", | ||
"parcel-bundler": "^1.12.3", | ||
"react": "^16.3.2", | ||
"react-dom": "^16.3.2", | ||
"react-test-renderer": "^16.3.2", | ||
"rexreplace": "^5.1.5", | ||
"rimraf": "^3.0.0", | ||
"semver": "^7.3.2", | ||
"sinon": "^9.0.2", | ||
"source-map-support": "^0.5.19", | ||
"ts-loader": "^6.0.0", | ||
"ts-node": "^8.0.3", | ||
"tslint": "^5.11.0", | ||
"tslint-react": "^4.0.0", | ||
"typescript": "^3.1.6" | ||
}, | ||
"homepage": "https://github.com/AlCalzone/ioBroker.tradfri", | ||
"keywords": [ | ||
"ioBroker", | ||
"tradfri", | ||
"Smart Home", | ||
"home automation" | ||
], | ||
"license": "MIT", | ||
"main": "build/main.js", | ||
"readmeFilename": "README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/AlCalzone/ioBroker.tradfri" | ||
}, | ||
"scripts": { | ||
"restoreBuildDirectoryStructure": "cpx \"build/src/**/*.*\" build && rimraf build/src && rimraf build/{io-,}package.{json,d.ts}", | ||
"fixSourceMaps": "rexreplace \"\\\"sources\\\"\\:\\[\\\"../../\" \"\\\"sources\\\"\\:\\[\\\"../\" \"{build/**,build}/*.map\"", | ||
"prebuild:ts": "rimraf ./build", | ||
"build:ts": "tsc -p src/tsconfig.json", | ||
"check:ts": "tsc -p src/tsconfig.json --noEmit", | ||
"postbuild:ts": "npm run restoreBuildDirectoryStructure && npm run fixSourceMaps", | ||
"build:parcel": "parcel build admin/src/index.tsx -d admin/build", | ||
"build": "npm run build:ts && npm run build:parcel", | ||
"watch:parcel": "parcel admin/src/index.tsx -d admin/build", | ||
"watch": "tsc -p src/tsconfig.json --watch", | ||
"test:unit": "mocha test/unit --exit", | ||
"test:package": "mocha test/package --exit", | ||
"test:integration": "mocha test/integration --exit", | ||
"test:ts": "node node_modules/mocha/bin/mocha --require ts-node/register --require source-map-support/register src/**/*.test.ts", | ||
"test:tsx": "node node_modules/mocha/bin/mocha --require test/setupJSDom.js --require ts-node/register --require source-map-support/register **/src/**/*.test.tsx", | ||
"test": "npm run test:ts && npm run test:tsx", | ||
"prepublishOnly": "npm run test:package", | ||
"coverage": "node node_modules/nyc/bin/nyc npm run test", | ||
"lint:ts": "tslint", | ||
"lint": "npm run lint:ts \"src/**/*.ts\"", | ||
"deploy_local": "node --require ts-node/register maintenance/deploy_local.ts", | ||
"release": "release-script" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/**/*.ts", | ||
"admin/src/**/*.ts*" | ||
], | ||
"exclude": [ | ||
"src/**/*.test.ts*", | ||
"admin/src/**/*.test.ts*" | ||
], | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"text-summary", | ||
"html" | ||
], | ||
"sourceMap": true, | ||
"instrument": true | ||
} | ||
} | ||
{ | ||
"name": "iobroker.tradfri", | ||
"version": "2.6.3", | ||
"description": "ioBroker tradfri Adapter", | ||
"author": { | ||
"name": "AlCalzone", | ||
"email": "[email protected]" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/AlCalzone/ioBroker.tradfri/issues" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "AlCalzone", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"files": [ | ||
"build/", | ||
"admin/build/", | ||
"admin/icons/", | ||
"admin/*.{html,css,js,png}", | ||
"LICENSE", | ||
"io-package.json" | ||
], | ||
"dependencies": { | ||
"@iobroker/adapter-core": "^2.1.0", | ||
"alcalzone-shared": "^2.0.0", | ||
"node-tradfri-client": "^2.1.6" | ||
}, | ||
"devDependencies": { | ||
"@alcalzone/release-script": "^1.4.1", | ||
"@babel/core": "^7.2.2", | ||
"@iobroker/testing": "^2.0.0", | ||
"@types/chai": "^4.1.3", | ||
"@types/chai-as-promised": "^7.1.0", | ||
"@types/enzyme": "^3.1.15", | ||
"@types/enzyme-adapter-react-16": "^1.0.3", | ||
"@types/jquery": "^3.3.22", | ||
"@types/materialize-css": "^1.0.3", | ||
"@types/mocha": "^7.0.1", | ||
"@types/node": "^13.1.1", | ||
"@types/react": "^16.9.35", | ||
"@types/react-dom": "^16.0.5", | ||
"@types/sinon": "^7.0.11", | ||
"axios": "^0.19.0", | ||
"chai": "^4.1.2", | ||
"chai-as-promised": "^7.1.1", | ||
"cpx": "^1.5.0", | ||
"enzyme": "^3.3.0", | ||
"enzyme-adapter-react-16": "^1.15.2", | ||
"gulp": "^4.0.0", | ||
"iobroker-react-components": "^1.0.0", | ||
"jquery": "^3.5.0", | ||
"jsdom": "^16.2.2", | ||
"mocha": "^7.0.0", | ||
"node-ssh": "^8.0.0", | ||
"nyc": "^15.0.1", | ||
"parcel-bundler": "^1.12.3", | ||
"react": "^16.3.2", | ||
"react-dom": "^16.3.2", | ||
"react-test-renderer": "^16.3.2", | ||
"rexreplace": "^5.1.5", | ||
"rimraf": "^3.0.0", | ||
"semver": "^7.3.2", | ||
"sinon": "^9.0.2", | ||
"source-map-support": "^0.5.19", | ||
"ts-loader": "^6.0.0", | ||
"ts-node": "^8.0.3", | ||
"tslint": "^5.11.0", | ||
"tslint-react": "^4.0.0", | ||
"typescript": "^3.1.6" | ||
}, | ||
"homepage": "https://github.com/AlCalzone/ioBroker.tradfri", | ||
"keywords": [ | ||
"ioBroker", | ||
"tradfri", | ||
"Smart Home", | ||
"home automation" | ||
], | ||
"license": "MIT", | ||
"main": "build/main.js", | ||
"readmeFilename": "README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/AlCalzone/ioBroker.tradfri" | ||
}, | ||
"scripts": { | ||
"restoreBuildDirectoryStructure": "cpx \"build/src/**/*.*\" build && rimraf build/src && rimraf build/{io-,}package.{json,d.ts}", | ||
"fixSourceMaps": "rexreplace \"\\\"sources\\\"\\:\\[\\\"../../\" \"\\\"sources\\\"\\:\\[\\\"../\" \"{build/**,build}/*.map\"", | ||
"prebuild:ts": "rimraf ./build", | ||
"build:ts": "tsc -p src/tsconfig.json", | ||
"check:ts": "tsc -p src/tsconfig.json --noEmit", | ||
"postbuild:ts": "npm run restoreBuildDirectoryStructure && npm run fixSourceMaps", | ||
"build:parcel": "parcel build admin/src/index.tsx -d admin/build", | ||
"build": "npm run build:ts && npm run build:parcel", | ||
"watch:parcel": "parcel admin/src/index.tsx -d admin/build", | ||
"watch": "tsc -p src/tsconfig.json --watch", | ||
"test:unit": "mocha test/unit --exit", | ||
"test:package": "mocha test/package --exit", | ||
"test:integration": "mocha test/integration --exit", | ||
"test:ts": "node node_modules/mocha/bin/mocha --require ts-node/register --require source-map-support/register src/**/*.test.ts", | ||
"test:tsx": "node node_modules/mocha/bin/mocha --require test/setupJSDom.js --require ts-node/register --require source-map-support/register **/src/**/*.test.tsx", | ||
"test": "npm run test:ts && npm run test:tsx", | ||
"prepublishOnly": "npm run test:package", | ||
"coverage": "node node_modules/nyc/bin/nyc npm run test", | ||
"lint:ts": "tslint", | ||
"lint": "npm run lint:ts \"src/**/*.ts\"", | ||
"deploy_local": "node --require ts-node/register maintenance/deploy_local.ts", | ||
"release": "release-script" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/**/*.ts", | ||
"admin/src/**/*.ts*" | ||
], | ||
"exclude": [ | ||
"src/**/*.test.ts*", | ||
"admin/src/**/*.test.ts*" | ||
], | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"text-summary", | ||
"html" | ||
], | ||
"sourceMap": true, | ||
"instrument": true | ||
} | ||
} |