forked from OmerTu/GoogleHomeKodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 802 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
{
"name": "googlehomekodi",
"version": "0.0.1",
"description": "A node express server for relaying google home commands from IFTTT to your kodi installation.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "./node_modules/.bin/eslint **/*.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"fuse.js": "^2.7.4",
"node-fetch": "^1.7.3",
"youtube-search": "^1.1.4",
"words-to-numbers": "^1.5.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta8",
"eslint": "^4.18.2"
},
"engines": {
"node": "10.0.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/welcome-project"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}