This repository has been archived by the owner on Dec 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.39 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ez-downloader",
"version": "0.1.2",
"description": "CLI to download tracks from Soundcloud and Youtube",
"main": "index.ts",
"bin": {
"ez": "./.bin/ezdownloader.js"
},
"preferGlobal": true,
"typings": ".",
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json",
"clean": "rm -rf *.mp3 *.wav *.aiff *.flac covers/",
"start": "node -r ts-node/register ./lib/index.ts",
"dev": "node --inspect=0.0.0.0:9229 -r ts-node/register ./lib/index.ts",
"dev:brk": "node --inspect-brk=0.0.0.0:9229 -r ts-node/register ./lib/index.ts",
"dev:multi-dl-no-tags": "yarn dev -n https://www.youtube.com/watch?v=AUyqvUG0ypA https://soundcloud.com/lifeformed/fastfall-dustforce-ost-the",
"watch": "nodemon -L --watch lib --verbose --inspect=0.0.0.0:9229 -r ts-node/register ./lib/index.ts",
"watch:yt": "yarn watch https://www.youtube.com/watch?v=AUyqvUG0ypA",
"watch:sc": "yarn watch https://soundcloud.com/lifeformed/fastfall-dustforce-ost-the"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasriondel/ez-downloader.git"
},
"keywords": [
"soundcloud",
"youtube",
"download",
"downloader",
"ez"
],
"author": "Lucas Riondel",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucasriondel/ez-downloader/issues"
},
"homepage": "https://github.com/lucasriondel/ez-downloader#readme",
"dependencies": {
"browser-id3-writer": "^3.0.3",
"chalk": "2.4.1",
"commander": "^2.15.1",
"debug": "^2.6.3",
"fluent-ffmpeg": "^2.1.0",
"md5": "^2.2.1",
"mkdirp": "^0.5.1",
"progress": "^2.0.0",
"readline-promise": "^1.0.3",
"request": "^2.81.0",
"request-progress": "^3.0.0",
"request-promise-native": "^1.0.3",
"sanitize-filename": "^1.6.1",
"url-parse": "^1.1.8",
"ytdl-core": "0.20.4"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/fluent-ffmpeg": "^2.1.6",
"@types/md5": "^2.1.32",
"@types/mkdirp": "^0.5.2",
"@types/progress": "^2.0.1",
"@types/request": "^2.47.1",
"@types/request-promise-native": "^1.0.15",
"@types/sanitize-filename": "^1.1.28",
"@types/url-parse": "^1.1.0",
"prettier": "^1.13.5",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-strict-null-checks": "^1.0.1",
"typescript": "^2.9.2"
}
}