forked from FreeTubeApp/yt-channel-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "yt-channel-info",
"version": "2.2.0",
"description": "Grab YouTube channel information without any official API",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 2000000 test/**/*.spec.js",
"test-channel": "mocha --timeout 2000000 test/resourses/channel.spec.js",
"test-playlist": "mocha --timeout 2000000 test/resourses/playlist.spec.js",
"lint-fix": "eslint --fix --ext .js,.ts ./",
"lint": "eslint --ext .js,.ts ./"
},
"keywords": [
"youtube",
"youtube-fetch",
"youtube-scrapper",
"youtube-grabber",
"youtube channel",
"youtube-channel",
"youtube playlist",
"youtube-playlist",
"youtube without api",
"youtube-fetcher"
],
"author": "PrestonFT",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"querystring": "^0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/FreeTubeApp/yt-channel-info"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}