forked from drawrowfly/tiktok-scraper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "tiktok-scraper",
"version": "1.0.12",
"description": "TikTok Scraper & Downloader. Scrape information from User, Trending and HashTag pages and download video posts",
"main": "index.js",
"bin": {
"tiktok-scraper": "bin/cli.js"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"archiver": "^3.1.1",
"async": "^3.1.0",
"bluebird": "^3.7.1",
"jsdom": "^16.0.1",
"json2csv": "^4.5.4",
"ora": "^4.0.2",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"yargs": "^14.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
},
"scripts": {
"format": "prettier --config ./.prettierrc.js --write './lib/**/*.js'",
"lint": "eslint ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drawrowfly/tiktok-scraper.git"
},
"keywords": [
"TikTok",
"Scraper"
],
"author": "drawflyrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/drawrowfly/tiktok-scraper/issues"
},
"homepage": "https://github.com/drawrowfly/tiktok-scraper#readme"
}