-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpackage.json
47 lines (47 loc) · 990 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ytdl",
"description": "A command line streaming youtube video downloader.",
"keywords": [
"youtube",
"download",
"video",
"cli"
],
"version": "1.4.1",
"repository": {
"type": "git",
"url": "git://github.com/fent/node-ytdl.git"
},
"author": "fent <fentbox@gmail.com> (https://github.com/fent)",
"main": "./lib/index.js",
"files": [
"bin",
"lib"
],
"preferGlobal": true,
"bin": {
"ytdl": "./bin/ytdl.js"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary mocha -- test/*-test.js"
},
"dependencies": {
"chalk": "^4.0.0",
"cli-progress": "^3.8.2",
"commander": "^6.2.1",
"homedir": "^0.6.0",
"list-it": "^1.3.3",
"lodash.throttle": "^4.1.1",
"sanitize-filename": "^1.6.3",
"streamspeed": "^2.0.1",
"ytdl-core": "^4.5.0"
},
"devDependencies": {
"mocha": "7.1.1",
"nyc": "15.0.1"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}