-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "meross-cloud",
"version": "3.1.2",
"description": "Control Meross cloud devices using nodejs",
"author": "Ingo Fischer <iobroker@fischer-ka.de>",
"contributors": [],
"homepage": "",
"license": "MIT",
"keywords": [
"Meross",
"WLAN devices"
],
"repository": {
"type": "git",
"url": "https://github.com/Apollon77/meross-cloud"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"mqtt": "^5.3.4",
"request": "^2.88.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"mocha": "^10.2.0",
"chai": "^4.3.10",
"istanbul": "^0.4.5",
"sinon": "^17.0.1",
"nock": "^13.4.0"
},
"bugs": {
"url": "https://github.com/Apollon77/meross-cloud/issues"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec",
"release": "release-script"
}
}