-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
72 lines (72 loc) · 1.83 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": "dorita980",
"version": "3.1.11",
"description": "Unofficial iRobot Roomba 980 and wifi other enabled series library sdk",
"main": "./index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm install",
"check:style": "eslint .",
"test": "_mocha -- $npm_package_config_mocha && npm run check:style",
"test:coverage:run": "istanbul cover _mocha -- $npm_package_config_mocha",
"test:coverage:check": "istanbul check-coverage --functions 80",
"test:coverage": "npm run test:coverage:run && npm run test:coverage:check",
"getpassword": "node ./bin/getpassword.js",
"get-password-cloud": "node ./bin/getPasswordCloud.js"
},
"bin": {
"get-roomba-password": "./bin/getpassword.js",
"get-roomba-password-cloud": "./bin/getPasswordCloud.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koalazak/dorita980.git"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.1.2",
"istanbul": "^0.4.0",
"semistandard": "^9.1.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^6.2.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"proxyquire": "^1.7.10"
},
"keywords": [
"unofficial",
"iRobot",
"Roomba",
"980",
"wifi",
"i7",
"e5",
"960",
"690",
"675",
"library",
"sdk",
"robot",
"local",
"cloud",
"alexa",
"vacuum",
"cleaner",
"IoT"
],
"author": "koalazak <zak.tux@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koalazak/dorita980/issues"
},
"homepage": "https://github.com/koalazak/dorita980#readme",
"dependencies": {
"mqtt": "^2.15.0",
"request": "^2.74.0",
"request-promise": "^4.1.1"
}
}