-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "manga-dl",
"version": "2.5.4",
"description": "Download manga from popular scanlation sites via command line",
"keywords": [
"manga",
"download",
"comic",
"webcomic",
"downloader",
"dl",
"mangareader",
"mangafox",
"dynasty",
"scans",
"mangaeden",
"mangapanda"
],
"author": "Darius I. Karel <[email protected]>",
"dependencies": {
"bluebird": "^3.3.5",
"commander": "^2.9.0",
"fast-html-parser": "^1.0.1",
"mkdirp": "^0.5.1",
"needle": "^1.0.0",
"tmp": "0.0.28"
},
"devDependencies": {
"better-assert": "^1.0.2",
"istanbul": "^0.4.5",
"nodeunit": "^0.9.1",
"standard": "^8.0.0"
},
"main": "index.js",
"scripts": {
"test": "standard && istanbul cover nodeunit -- specs/index.js --reporter minimal"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dikarel/manga-dl.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dikarel/manga-dl/issues"
},
"homepage": "https://github.com/dikarel/manga-dl#readme",
"preferGlobal": true,
"bin": {
"manga-dl": "./bin/manga-dl"
}
}