-
Notifications
You must be signed in to change notification settings - Fork 801
/
package.json
90 lines (90 loc) · 2.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "tiktok-scraper",
"version": "1.4.35",
"description": "TikTok Scraper & Downloader. Scrape information from User, Trending and HashTag pages and download video posts",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"tiktok-scraper": "bin/cli.js"
},
"files": [
"build"
],
"dependencies": {
"archiver": "^3.1.1",
"async": "^3.1.0",
"bluebird": "^3.7.1",
"canvas": "^2.7.0",
"jsdom": "^16.5.3",
"json2csv": "4.5.1",
"ora": "^4.0.2",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"socks-proxy-agent": "^5.0.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"@types/archiver": "^3.1.0",
"@types/bluebird": "^3.5.30",
"@types/jest": "^25.1.4",
"@types/jsdom": "^16.2.10",
"@types/json2csv": "^4.5.1",
"@types/ora": "^3.2.0",
"@types/progress": "^2.0.3",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"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",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.2.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "rimraf build && tsc",
"docker:build": "tsc",
"format": "prettier --config ./.prettierrc.js --write './src/**/*.ts'",
"lint": "eslint ./src/**/*.ts",
"test": "eslint ./src/**/*.ts && jest --coverage --verbose"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFiles": [
"jest-canvas-mock"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/drawrowfly/tiktok-scraper.git"
},
"keywords": [
"TikTok",
"Scraper"
],
"author": "Andrew Nord <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/drawrowfly/tiktok-scraper/issues"
},
"homepage": "https://github.com/drawrowfly/tiktok-scraper#readme"
}