@iobroker/adapter-dev
Version:
All developer dependencies an ioBroker adapter developer needs
88 lines (87 loc) • 2.55 kB
JSON
{
"name": "@iobroker/adapter-dev",
"version": "1.4.0",
"description": "All developer dependencies an ioBroker adapter developer needs",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"build-adapter": "bin/build-adapter.js",
"translate-adapter": "bin/translate-adapter.js",
"clean-dir": "bin/clean-dir.js"
},
"files": [
"/build"
],
"scripts": {
"prebuild": "node bin/clean-dir.js ./build",
"build": "tsc -p tsconfig.build.json",
"check": "tsc -p tsconfig.build.json --noEmit",
"watch": "npm run build -- --watch",
"lint": "eslint --ext .ts \"src/**/*.ts\"",
"test:ts": "mocha src/**/*.test.ts",
"test:integration": "mocha test/translate-adapter.test.ts",
"test": "npm run test:ts && npm run test:integration",
"release": "release-script",
"debug": "ts-node src/build-adapter.ts",
"update-packages": "npx -y npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/adapter-dev.git"
},
"keywords": [
"ioBroker",
"adapter",
"developer",
"tools"
],
"author": "UncleSamSwiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/adapter-dev/issues"
},
"homepage": "https://github.com/ioBroker/adapter-dev#readme",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/types": "^7.0.6",
"@tsconfig/node12": "^12.1.4",
"@types/chai": "^4.3.20",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"cross-spawn": ">=7.0.6",
"dir-compare": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"mocha": "^11.1.0",
"prettier": "^3.5.1",
"prettier-plugin-organize-imports": "^4.1.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@esm2cjs/execa": "^6.1.1-cjs.1",
"@google-cloud/translate": "^8.5.0",
"ansi-colors": "^4.1.3",
"axios": "^1.7.9",
"esbuild": "^0.25.0",
"fs-extra": "^11.3.0",
"tiny-glob": "^0.2.9",
"yargs": "^17.7.2"
}
}