-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "tracker-radar-collector",
"author": "DuckDuckGo",
"license": "Apache 2.0",
"version": "1.0.0",
"description": "Modular, multithreaded, puppeteer-based crawler.",
"main": "main.js",
"scripts": {
"crawl": "node ./cli/crawl-cli",
"test": "npm run lint && tsc && npm run unit",
"unit": "node ./tests/runTests.js && npm run mocha",
"mocha": "mocha ./tests/**/*.mocha.js",
"lint": "eslint *.js cli/ collectors/ helpers/ post-processing/ tests/ reporters/",
"lint-fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "[email protected]:duckduckgo/tracker-radar-crawler.git"
},
"pre-push": [
"test"
],
"engines": {
"node": ">=12.22.4"
},
"devDependencies": {
"@types/async": "^2.4.1",
"@types/mocha": "^9.1.1",
"@types/mockery": "^1.4.30",
"@types/node": "^10.12.15",
"@types/progress": "^2.0.3",
"@types/request": "^2.48.8",
"@types/stack-utils": "^1.0.1",
"eslint": "^7.32.0",
"eslint-plugin-mocha": "^10.0.5",
"mocha": "^10.0.0",
"mockery": "^2.1.0",
"pre-push": "^0.1.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@duckduckgo/autoconsent": "^2.2.1",
"@gorhill/ubo-core": "^0.1.25",
"async": "^2.6.1",
"cd": "^0.3.3",
"chalk": "^2.4.1",
"clickhouse": "^2.6.0",
"commander": "^2.19.0",
"progress": "^2.0.3",
"puppeteer": "^10.2.0",
"puppeteer-autoscroll-down": "^1.1.1",
"puppeteer-screen-recorder": "^2.1.2",
"request": "^2.88.2",
"tldts": "^4.0.3"
}
}