-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 911 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
{
"name": "homebridge-telegram",
"version": "0.2.0",
"description": "Integrating telegram messenger with HomeKit",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/grover/homebridge-telegram.git"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"telegram",
"notifications"
],
"author": "Michael Froehlich",
"license": "MIT",
"bugs": {
"url": "https://github.com/grover/homebridge-telegram/issues"
},
"engines": {
"node": ">=9.3.0",
"homebridge": ">=0.4.36"
},
"homepage": "https://github.com/grover/homebridge-telegram",
"dependencies": {
"botfather": "^3.8.0",
"clone": "^2.1.1",
"debug": "^3.1.0"
},
"devDependencies": {
"eslint": "^4.18.0",
"npm-github-release": "^0.9.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"release": "npm-github-release"
}
}