-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "soma-ctrl",
"version": "2.0.1",
"description": "Control Soma BTLE Smart Shade devices by HTTP or MQTT",
"main": "index.js",
"bin": {
"somactrl": "index.js"
},
"scripts": {
"test": "echo \"No tests currently\"",
"lint": "./node_modules/.bin/eslint index.js src/*.js"
},
"author": "Josh Anderson",
"license": "MIT",
"keywords": [
"soma",
"smart shade",
"blind",
"btle",
"bluetooth",
"mqtt",
"homeassistant"
],
"repository": {
"type": "git",
"url": "git://github.com/andersonshatch/soma-ctrl"
},
"bugs": {
"url": "https://github.com/andersonshatch/soma-ctrl"
},
"homepage": "https://github.com/andersonshatch/soma-ctrl#readme",
"engines": {
"node": ">=8.16.0 <13.0"
},
"dependencies": {
"debug": "^4.0.1",
"express": "^4.16.3",
"mqtt": "^2.18.2",
"@abandonware/noble": "^1.9.2-1",
"readline-sync": "^1.4.9",
"yargs": "^13.2.2"
},
"devDependencies": {
"eslint": "^5.1.0"
},
"funding": {
"url": "https://paypal.me/andersonshatch",
"type": "paypal"
}
}