This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
68 lines (68 loc) · 1.63 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
61
62
63
64
65
66
67
68
{
"name": "@freetube/yt-comment-scraper",
"version": "6.2.0",
"description": "Scrapes the comments of any YouTube video without YouTube API access. Uses the default YouTube Ajax calls to get the comment data.",
"main": "index.js",
"files": [
"index.js",
"src/",
"index.d.ts"
],
"scripts": {
"test": "jest --watchAll --verbose",
"test-ci": "jest --verbose --ci",
"lint-fix": "eslint --fix --ext .js ./",
"lint": "eslint --ext .js ./"
},
"repository": {
"type": "git",
"url": "https://github.com/FreeTubeApp/yt-comment-scraper.git"
},
"keywords": [
"youtube",
"youtube-fetch",
"youtube-scraper",
"youtube-grabber",
"youtube comments",
"youtube-comments",
"youtube without api",
"youtube-fetcher",
"comments",
"youtube comment scraper",
"comment scraper",
"youtube-comment-scraper",
"comment-scraper",
"freetube"
],
"author": {
"name": "GilgusMaximus",
"email": "[email protected]"
},
"contributors": [
{
"name": "Svallinn",
"email": "[email protected]"
},
{
"name": "PrestonN",
"email": "[email protected]"
}
],
"license": "GPLv3",
"dependencies": {
"axios": "^1.1.2"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.1.2",
"prettier": "^2.7.1"
},
"types": "index.d.ts"
}