-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 KB
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
{
"name": "easydl-cli",
"version": "1.0.0",
"description": "CLI interface for EasyDL: the downloader package that supports automatic resume and parallel downloads.",
"main": "dist/index.js",
"bin": {
"dl": "dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run build && npm i -g && dl"
},
"author": "Andre Susanto <andre@susan.to>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andresusanto/easydl-cli"
},
"bugs": {
"url": "https://github.com/andresusanto/easydl-cli/issues"
},
"homepage": "https://github.com/andresusanto/easydl-cli",
"keywords": [
"download",
"downloader",
"progress",
"resume",
"retry",
"parallel",
"multithread",
"request",
"node",
"electron",
"chunk"
],
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/cli-progress": "^3.7.0",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^14.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"chalk": "^4.0.0",
"cli-progress": "^3.8.2",
"commander": "^5.1.0",
"easydl": "^1.0.1",
"figlet": "^1.4.0",
"inquirer": "^7.1.0",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^7.0.0"
}
}