-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "iobroker.midea",
"version": "0.1.0",
"description": "Midea Adapter",
"author": {
"name": "TA2k",
"email": "tombox2020@gmail.com"
},
"homepage": "https://github.com/TA2k/ioBroker.midea",
"license": "MIT",
"keywords": [
"midea",
"dimstal",
"royal clima"
],
"repository": {
"type": "git",
"url": "https://github.com/TA2k/ioBroker.midea"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.2",
"json-bigint": "^1.0.0",
"pythonia": "^1.0.0"
},
"devDependencies": {
"@iobroker/testing": "^5.0.0",
"@types/node": "^22.7.5",
"eslint": "^8.57.1",
"typescript": "~5.6.3"
},
"engines": {
"node": ">=14.0.0"
},
"main": "main.js",
"scripts": {
"test:js": "mocha --opts test/mocha.custom.opts",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:js && npm run test:package",
"lint": "eslint",
"postinstall": "node ./pythonPackages.js"
},
"bugs": {
"url": "https://github.com/TA2k/ioBroker.midea/issues"
},
"readmeFilename": "README.md"
}