-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 883 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
{
"name": "yt_metadata",
"version": "0.0.5",
"description": "A package to fetch YouTube content details, either by URL or search query.",
"main": "src/youtubeMetadata.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/totallynotdavid/yt_metadata.git"
},
"keywords": [
"YouTube",
"fetch",
"search",
"video",
"content",
"extract"
],
"author": "David Duran <david@caefisica.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/totallynotdavid/yt_metadata/issues"
},
"homepage": "https://github.com/totallynotdavid/yt_metadata#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-eslint": "^9.0.0",
"jest": "^29.7.0"
},
"dependencies": {
"dotenv": "^16.4.5"
}
}