Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hombach authored and Hombach committed Oct 22, 2024
1 parent 5ef4053 commit 2b577e3
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 121 deletions.
153 changes: 47 additions & 106 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 11 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,17 @@
"devDependencies": {
"@iobroker/adapter-dev": "^1.3.0",
"@iobroker/testing": "^5.0.0",
"@tsconfig/node14": "^14.1.2",
"@types/chai": "^5.0.0",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.7",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand All @@ -52,7 +51,8 @@
"sinon": "^13.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
"typescript": "~5.6.3",
"typescript-eslint": "^8.10.0"
},
"main": "build/main.js",
"files": [
Expand All @@ -64,18 +64,16 @@
"LICENSE"
],
"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",
"build:ts": "tsc -p tsconfig.build.json",
"build": "npm run build:ts",
"watch:ts": "tsc -p tsconfig.build.json --watch",
"watch": "npm run watch:ts",
"test:ts": "mocha --config test/mocharc.custom.json src/**/*.test.ts",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:ts && npm run test:package",
"check": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"lint": "eslint src/",
"translate": "translate-adapter"
},
"bugs": {
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
"noEmitOnError": true,
"outDir": "./build/",
"removeComments": false,

"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
// this is necessary for the automatic typing of the adapter config
"resolveJsonModule": true,

Expand All @@ -35,7 +36,7 @@
"target": "ES2022",

"sourceMap": true,
"inlineSourceMap": false
"inlineSourceMap": false,
// "watch": false
},
"include": [
Expand Down

0 comments on commit 2b577e3

Please sign in to comment.