-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.83 KB
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
{
"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 && npm run unit",
"unit": "TRC_UNSAFE_DISABLE_SANDBOX=1 node ./tests/runTests.js && npm run mocha",
"mocha": "mocha ./tests/**/*.mocha.js",
"lint": "npm run eslint && npm run prettier -- --check",
"lint-fix": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint *.js cli/ collectors/ helpers/ post-processing/ tests/ reporters/",
"prettier": "prettier --check *.js cli/ collectors/ helpers/ post-processing/ tests/ reporters/"
},
"repository": {
"type": "git",
"url": "git@github.com:duckduckgo/tracker-radar-crawler.git"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config#v0.1.0",
"@types/async": "^3.2.25",
"@types/debug": "^4.1.12",
"@types/mocha": "^9.1.1",
"@types/mockery": "^1.4.33",
"@types/node": "^24.7.2",
"@types/progress": "^2.0.7",
"@types/selenium-webdriver": "^4.1.28",
"@types/sinon": "^17.0.4",
"@types/ws": "^8.18.1",
"eslint": "^9.37.0",
"mocha": "^11.7.4",
"mockery": "^2.1.0",
"prettier": "^3.6.2",
"sinon": "^21.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0"
},
"dependencies": {
"@clickhouse/client": "^1.11.1",
"@duckduckgo/autoconsent": "^14.67.0",
"@types/commander": "^2.12.0",
"async": "^3.2.6",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"openai": "^4.103.0",
"progress": "^2.0.3",
"puppeteer": "^24.7.1",
"selenium-webdriver": "^4.31.0",
"tldts": "^7.0.4",
"zod": "^3.25.32"
}
}