-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 787 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 787 Bytes
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
{
"name": "m3u-proxy",
"description": "Process/simplify and potentially serve M3U & EPG files from your IPTV provider(s)",
"keywords": [
"m3u",
"epg",
"xmltv",
"nodejs"
],
"version": "1.0.1",
"license": "MIT",
"author": "Ben Michaud <ben@tigersway.net>",
"contributors": [
"DopeGrandpa (https://github.com/DopeGrandpa)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TigersWay/m3u-proxy.git"
},
"bin": {
"m3u-proxy": "./m3u-proxy.js"
},
"scripts": {
"run-it": "node m3u-proxy -c ./config-perso.json"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"byline": "^5.0.0",
"command-line-args": "^5.1.1",
"debug": "^4.1.1",
"simple-get": "^4.0.0",
"xml-flow": "^1.0.4"
}
}