forked from Apollon77/meross-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "meross-cloud-ts",
"version": "2.0.0",
"description": "Control Meross cloud devices using nodejs",
"author": "Ingo Fischer <[email protected]>",
"contributors": [
"Valerio Coltre <[email protected]>"
],
"homepage": "https://github.com/colthreepv/meross-cloud",
"license": "MIT",
"keywords": [
"Meross",
"WLAN devices",
"typescript",
"cloud"
],
"repository": {
"type": "git",
"url": "https://github.com/colthreepv/meross-cloud"
},
"dependencies": {
"got": "^11.8.2",
"mqtt": "^4.1.0",
"promise-timeout": "^1.3.0"
},
"devDependencies": {
"@types/promise-timeout": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.2.0",
"eslint": "^7.24.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"istanbul": "*",
"mocha": "^8.0.1",
"nock": "^13.0.11",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"bugs": {
"url": "https://github.com/colthreepv/meross-cloud/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"prepublish": "rimraf dist && tsc --project tsconfig.json",
"test": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec"
}
}