-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
42 lines (42 loc) · 1.01 KB
/
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
{
"name": "googlehomekodi",
"version": "0.0.2",
"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": "eslint \"**/*.js\" --ignore-pattern node_modules/",
"test": "mocha --recursive --require should"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-xml-parser": "^3.19.0",
"fuse.js": "^5.2.1",
"node-fetch": "^2.6.0",
"words-to-numbers": "^1.5.1",
"youtube-search": "^1.1.4",
"remove-accents": "^0.4.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"node-mocks-http": "^1.8.1",
"should": "^13.2.3"
},
"engines": {
"node": "^13.9.0"
},
"repository": {
"url": "https://github.com/OmerTu/GoogleHomeKodi"
},
"license": "MIT",
"keywords": [
"Kodi",
"Google Home",
"IFTTT"
]
}