-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.15 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
{
"name": "subtitlesx",
"main": "index.js",
"version": "1.1.0",
"description": "CLI to download subtitles for movies and series.",
"author": {
"name": "Tiago Danin",
"email": "TiagoDanin@outlook.com",
"url": "https://TiagoDanin.github.io"
},
"license": "GPL-3.0",
"keywords": [
"opensubtitles",
"subtitles",
"movies",
"series",
"download",
"cli"
],
"scripts": {
"start": "node index.js",
"test": "node test.js",
"cli": "node cli.js --help"
},
"private": false,
"repository": "https://github.com/TiagoDanin/SubtitlesX.git",
"homepage": "https://github.com/TiagoDanin/SubtitlesX#readme",
"bugs": "https://github.com/TiagoDanin/SubtitlesX/issues",
"github": {
"name": "SubtitlesX",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"cli.js",
"index.js",
"package.json"
],
"documentation": "./docs.md",
"bin": {
"subtitlesx": "cli.js"
},
"dependencies": {
"caporal": "1.4.0",
"opensubtitles-api": "5.1.2",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"zlib": "1.0.5"
},
"engines": {
"node": ">=v14.16.1"
}
}