forked from binsentsu/am43-ctrl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 993 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": "am43-ctrl",
"version": "1.0.0",
"description": "Control an AM43 Blinds Engine by HTTP or MQTT",
"main": "index.js",
"bin": {
"am43ctrl": "index.js"
},
"scripts": {
"test": "echo \"No tests currently\"",
"lint": "./node_modules/.bin/eslint index.js src/*.js"
},
"author": "binsentsu",
"license": "MIT",
"keywords": [
"am43",
"A-OK",
"btle",
"bluetooth",
"mqtt",
"homeassistant"
],
"repository": {
"type": "git",
"url": "git://github.com/binsentsu/am43-ctrl"
},
"bugs": {
"url": "https://github.com/binsentsu/am43-ctrl"
},
"homepage": "https://github.com/binsentsu/am43-ctrl#readme",
"engines": {
"node": ">=10.16.0 <15.0"
},
"dependencies": {
"debug": "^4.3.1",
"express": "^4.16.3",
"moment": "^2.29.1",
"mqtt": "^2.18.2",
"@abandonware/noble": "^1.9.2-12",
"readline-sync": "^1.4.9",
"yargs": "^13.2.2"
},
"devDependencies": {
"eslint": "^7.18.0"
}
}