-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 933 Bytes
/
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
{
"name": "youtube-playlist-dl",
"version": "1.1.0",
"description": "An application that will download a playlist from Youtube, and if specified, convert it to .mp3.",
"main": "app.js",
"author": {
"name": "Patrick McHugh",
"email": "[email protected]"
},
"homepage": "https://github.com/HardTacos/youtube-playlist-dl",
"repository": {
"type": "git",
"url": "git://github.com/HardTacos/youtube-playlist-dl"
},
"keywords": [
"youtube",
"downloader",
"playlist",
"music",
"video",
"save",
"mp3",
"mp4"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hardtacos/youtube-playlist-dl/issues"
},
"dependencies": {
"async" : "latest",
"fs" : "latest",
"path" : "latest",
"youtube-dl" : "latest",
"youtube-feeds" : "latest"
}
}