-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "youtube-playlist-cli",
"version": "1.5.4",
"description": "Youtube Playlist CLI",
"main": "cli.js",
"scripts": {
"cli": "node cli.js",
"reactive": "node reactive.js",
"release": "rm -rf package-lock.json && npm version minor && npm publish",
"patch": "rm -rf package-lock.json && npm version patch && npm publish"
},
"bin": {
"ypr": "reactive.js",
"yp": "cli.js"
},
"keywords": [
"youtube",
"playlist",
"markdown",
"cli",
"commander",
"inquirer"
],
"author": {
"name": "alincode",
"email": "alincode@gmail.com",
"url": "https://github.com/alincode"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alincode/youtube-playlist-cli.git"
},
"bugs": {
"url": "https://github.com/alincode/youtube-playlist-cli/issues"
},
"homepage": "https://github.com/alincode/youtube-playlist-cli#readme",
"engines": {
"node": ">= 10"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.1.0",
"figlet": "^1.5.0",
"inquirer": "^8.0.0",
"jsonfile": "^6.1.0",
"progress": "^2.0.3",
"youtube-dl-exec": "^1.1.1",
"youtube-playlist-markdown": "^1.4.9",
"youtube-playlist-summary": "^2.1.6"
}
}