-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@iobroker/adapter-dev",
"version": "1.3.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"
},
"files": [
"/build"
],
"scripts": {
"prebuild": "rimraf ./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"
},
"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.11",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^4.4.1",
"chai-as-promised": "^8.0.1",
"cross-spawn": ">=7.0.5",
"dir-compare": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^5.0.9",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"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.24.2",
"fs-extra": "^11.2.0",
"tiny-glob": "^0.2.9",
"yargs": "^17.7.2"
}
}