-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
63 lines (63 loc) · 2.23 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "plexiptv",
"version": "1.0.4",
"description": "Emulate Silicondust device for Plex by providing IPTV stream",
"engines": {
"node": ">=8.9.0"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:docker": "node index.js -s `pwd`/config/settings.json",
"start": "node index.js",
"debug": "set DEBUG=plexiptv:* & node index.js",
"debug:full": "set DEBUG=* & node index.js",
"clean:build:ps": "rmdir /Q /S build",
"clean:build:sh": "rm -rf build",
"build:win:x64": "pkg index.js --targets node8-win-x64 -o build/PlexIPTV.win.x64.exe",
"build:win:x86": "pkg index.js --targets node8-win-x86 -o build/PlexIPTV.win.x86.exe",
"build:macos:x64": "pkg index.js --targets node8-macos-x64 -o build/PlexIPTV.macos.x64",
"build:macos:x86": "pkg index.js --targets node8-macos-x86 -o build/PlexIPTV.macos.x86",
"build:linux:x64": "pkg index.js --targets node8-linux-x64 -o build/PlexIPTV.linux-x64",
"build:linux:x86": "pkg index.js --targets node8-linux-x86 -o build/PlexIPTV.linux-x86",
"build": "run-s build:**",
"docker": "run-s docker:build docker:start",
"docker:build": "docker build -t plexiptv .",
"docker:start": "docker run --rm -p 12345:1234 --volume=c:/Users/Public/plexiptv:/opt/PlexIPTV/config plexiptv"
},
"author": "",
"license": "ISC",
"dependencies": {
"args": "^4.0.0",
"clean-stack": "^1.3.0",
"colors": "^1.2.4",
"debug": "^3.1.0",
"eslint-plugin-promise": "^3.7.0",
"express": "^4.16.3",
"filendir": "^1.0.1",
"install": "^0.11.0",
"lodash": "^4.17.10",
"log-rotate": "^0.2.8",
"md5": "^2.2.1",
"moment": "^2.22.1",
"node-ssdp": "^3.3.0",
"once": "^1.2.0",
"pkg": "^4.3.1",
"q": "^1.5.1",
"request": "2.27.0",
"stack-trace": "0.0.10",
"supports-color": "^5.4.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-sort-class-members": "^1.3.1",
"eslint-plugin-standard": "^3.1.0",
"npm-run-all": "^4.1.3",
"sort-class-members-codemod": "^0.5.1",
"standard": "^11.0.1"
}
}