-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.36 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
{
"name": "mm-yt-cli",
"version": "1.0.2",
"description": "command-line tool that allows you to fetch metadata (title, author, description, etc.) from YouTube videos.",
"author": {
"name": "Manoj Mukherjee",
"email": "manojmukherjee777@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/2manoj1/yt-scrapper-cli"
},
"main": "main.js",
"license": "MIT",
"type": "module",
"bin": {
"mm-yt-cli": "main.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "node main.js",
"etest": "node main.js --url \"https://www.youtube.com/watch?v=ELQOSPE3O68\"",
"test": "jest"
},
"dependencies": {
"arg": "^5.0.2",
"cheerio": "^1.0.0-rc.12",
"got": "^12.6.0",
"metascraper": "^5.34.2",
"metascraper-author": "^5.34.2",
"metascraper-description": "^5.34.2",
"metascraper-title": "^5.34.2",
"metascraper-url": "^5.34.2",
"metascraper-youtube": "^5.34.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-node": "^27.2.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.5.0",
"ts-jest": "^29.1.0"
},
"bugs": {
"url": "https://github.com/2manoj1/yt-scrapper-cli/issues"
},
"keywords": [
"cli",
"nodejs",
"youtube",
"scrapper",
"javascript"
]
}