-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "tracker-radar-detector",
"author": "DuckDuckGo",
"license": "Apache 2.0",
"version": "1.0.0",
"description": "Code used to build a Tracker Radar data set from raw crawl data.",
"engines": {
"node": ">=12.9"
},
"dependencies": {
"@cliqz/url-parser": "^1.1.4",
"async": "2.6.1",
"chalk": "^2.4.1",
"child_process": "^1.0.2",
"commander": "^2.19.0",
"cookie": "^0.4.1",
"csv-parse": "^4.4.3",
"d3-array": "^2.0.3",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"lodash.isequal": "^4.5.0",
"mathjs": "5.10.0",
"parse-cache-control": "^1.0.1",
"pg": "^8.5.1",
"pg-cursor": "^2.5.2",
"progress": "^2.0.3",
"randexp": "^0.5.3",
"request": "^2.88.0",
"tldts-experimental": "^5.7.2",
"underscore": "^1.9.1"
},
"devDependencies": {
"eslint": "^7.5.0",
"mocha": "^8.2.1"
},
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=8096 --unhandled-rejections=warn' ./src/trackers/process-crawl.js && ./src/trackers/build-trackers.js",
"process-params": "node src/trackers/tracking-params.js",
"process-crawl": "./src/trackers/process-crawl.js",
"build-trackers": "./src/trackers/build-trackers.js",
"build-performance": "./src/performance/group_data.js && ./src/performance/create_stats.js",
"update-entities": "node src/entities/update-entities.js",
"apply-entity-changes": "node src/entities/apply-entity-changes.js",
"test": "npm run lint && mocha",
"lint": "eslint src/",
"lint-fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "[email protected]:jason/tracker-lists.git"
}
}