forked from ioBroker/ioBroker.iot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "iobroker.iot",
"version": "3.0.0",
"description": "This adapter allows to communicate Amazon Alexa and Google Home with ioBroker.",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.iot",
"keywords": [
"ioBroker",
"mqtt",
"aws",
"cloud",
"web"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.iot"
},
"dependencies": {
"@iobroker/adapter-core": "^3.0.4",
"aws-iot-device-sdk": "^2.2.13",
"iobroker.type-detector": "^3.0.5",
"mime": "^3.0.0",
"axios": "^1.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/legacy-testing": "^1.0.3",
"@types/iobroker": "^4.0.5",
"@types/node": "^20.10.3",
"chai": "^4.3.10",
"gulp": "^4.0.2",
"mocha": "^10.2.0"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.iot/issues"
},
"main": "main.js",
"files": [
"admin/",
"doc/",
"img/",
"keys/",
"lib/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "mocha --exit",
"test-alexa-v3": "mocha --grep AlexaSmartHomeV3 --recursive",
"prepublishOnly": "gulp",
"build": "gulp",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"translate": "translate-adapter",
"update-packages": "ncu --upgrade && cd src && ncu --upgrade && cd .. && cd src-rules && ncu --upgrade && cd ..",
"npm": "npm i && cd src && npm i -f && cd .. && cd src-rules && npm i -f && cd .."
},
"license": "MIT",
"readmeFilename": "README.md"
}