forked from OmerTu/GoogleHomeKodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 800 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.18.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"fuse.js": "^2.0.1",
"node-fetch": "^1.3.2",
"wait-for-stuff": "^1.4.0",
"youtube-search": "^1.0.10"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta8",
"eslint": "^1.9.0"
},
"engines": {
"node": "6.10.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/welcome-project"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}