forked from homebridge-plugins/homebridge-roomba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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": "homebridge-roomba2",
"description": "homebridge-plugin for Roomba devices",
"version": "1.3.0-beta.11",
"engines": {
"homebridge": ">=0.2.0",
"node": ">=10"
},
"author": {
"name": "RayanKhan"
},
"bugs": {
"url": "https://github.com/karlvr/homebridge-roomba2/issues"
},
"dependencies": {
"dorita980": "^3.1.11"
},
"homepage": "https://github.com/karlvr/homebridge-roomba2#readme",
"keywords": [
"homebridge-plugin",
"iRobot",
"Roomba"
],
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/karlvr/homebridge-roomba2.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"getrobotpwd": "cd node_modules/dorita980 && npm install && node ./bin/getpassword.js",
"lint": "eslint src/*.ts",
"test": "node dist/index.js",
"watch": "tsc --watch"
},
"devDependencies": {
"@changesets/cli": "^2.18.1",
"@types/promise-timeout": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"homebridge": "^1.3.8",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
}
}