forked from andersonshatch/soma-ctrl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 994 Bytes
/
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
{
"name": "soma-ctrl",
"version": "1.4.2",
"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": ">=7.0 <10.0"
},
"dependencies": {
"debug": "^4.0.1",
"express": "^4.16.3",
"mqtt": "^2.18.2",
"noble": "^1.9.1",
"readline-sync": "^1.4.9",
"yargs": "^13.2.2"
},
"devDependencies": {
"eslint": "^5.1.0"
}
}