forked from mrdotb/yifysubtitles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.07 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
{
"name": "yifysubtitles-to-gs",
"version": "1.0.0",
"description": "A simple wrapper to download subtitles from the yifysubtitles website.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thanhdinh98/yifysubtitles"
},
"author": {
"name": "mrdotb",
"email": "[email protected]"
},
"main": "index.js",
"scripts": {
"test": "ava",
"lint": "xo --fix"
},
"ava": {
"files": "test/*.js",
"verbose": "true"
},
"xo": {
"space": true
},
"dependencies": {
"@google-cloud/storage": "^4.7.0",
"cheerio": "^1.0.0-rc.2",
"global": "^4.3.2",
"got": "^9.2.0",
"p-map": "^1.2.0",
"srt-to-vtt": "^1.1.3",
"streamz": "^1.8.5",
"unzipper": "^0.9.3"
},
"devDependencies": {
"ava": "^0.25.0",
"xo": "^0.24.0",
"pify": "^4.0.0"
},
"keywords": [
"download",
"html5",
"films",
"movies",
"srt",
"sub",
"subs",
"subtitles",
"video",
"vtt",
"yify",
"yifysubs",
"yifysubtitles",
"yts",
"ytssubs",
"zip"
]
}