This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.58 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "homebridge-ecovacs-deebot-m80pro",
"badges": [
{
"description": "Build Status",
"href": "about:blank",
"url": "https://palacino.visualstudio.com/Palacino/_apis/build/status/Homebridge%20Ecovacs"
},
{
"description": "Release Status",
"href": "about:blank",
"url": "https://palacino.vsrm.visualstudio.com/_apis/public/Release/badge/27345737-816d-4039-b4c5-996cac782428/3/3"
}
],
"version": "0.0.2",
"description": "Homebridge accessory implementation for ECOVACS DEEBOT M80 Pro",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"fix-coverage": "node ./tools/process-coverage-report.js",
"debug": "node --nolazy --inspect-brk=9229 ./build/index.js"
},
"jest": {
"testResultsProcessor": "./tools/jest-processor-trx.js",
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"json",
"lcov",
"cobertura",
"text-summary"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.+(ts|tsx|js)"
],
"setupFiles": [
"./mocks/setup.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GioCirque/homebridge-ecovacs-deebot-m80pro.git"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"homekit",
"homekit-api",
"siri",
"typescript"
],
"author": "Gio Palacino",
"license": "MIT",
"bugs": {
"url": "https://github.com/GioCirque/homebridge-ecovacs-deebot-m80pro/issues"
},
"homepage": "https://github.com/GioCirque/homebridge-ecovacs-deebot-m80pro#readme",
"eslintConfig": {
"env": {
"node": true
}
},
"eslintIgnore": [
"tools/**/*.js"
],
"devDependencies": {
"@types/jest": "23.3.1",
"@types/node": "10.7.1",
"@types/request-promise": "4.1.42",
"babel-core": "6.26.3",
"babel-jest": "23.4.2",
"eslint": "5.3.0",
"gulp": "3.9.1",
"gulp-inline-source": "3.2.0",
"homebridge": "0.4.44",
"jest": "23.5.0",
"jest-trx-results-processor": "0.0.7",
"ts-jest": "23.1.3",
"typescript": "3.0.1"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"preferGlobal": true,
"dependencies": {
"countries-list": "2.3.2",
"crypto2": "2.0.0",
"request": "2.88.0",
"request-promise-native": "1.0.5"
}
}