-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
35 lines (35 loc) · 917 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
{
"name": "pluralsight-scraper",
"version": "2.1.0",
"description": "A scraper for pluralsight's library meant to download video files for offline viewing.",
"main": "index.js",
"dependencies": {
"node-fetch": "^2.6.0",
"puppeteer": "^2.1.1",
"puppeteer-extra": "^3.1.9",
"puppeteer-extra-plugin-stealth": "^2.4.9",
"yargs": "^15.3.1"
},
"devDependencies": {},
"scripts": {
"login": "node index.js login",
"get": "node index.js get",
"start": "node index.js"
},
"author": "Slava Knyazev",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/knyzorg/pluralsight-scraper.git"
},
"keywords": [
"pluralsight",
"scraper",
"downloader",
"ripper"
],
"bugs": {
"url": "https://github.com/knyzorg/pluralsight-scraper/issues"
},
"homepage": "https://github.com/knyzorg/pluralsight-scraper#readme"
}