@ghostery/trackerdb 1.0.29 → 1.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Data exchange can easily uncover personal details by private identifiers, often
|
|
|
9
9
|
At Ghostery, we're committed to describing things exactly as they are.
|
|
10
10
|
|
|
11
11
|
The structure of Ghostery Tracker Database is simple and consists of three main elements:
|
|
12
|
-
* **categories** - advertising, site analytics, consent management, etc.
|
|
12
|
+
* **categories** - [advertising, site analytics, consent management, etc.](docs/categories.md)
|
|
13
13
|
* **organizations** - companies like Google or Facebook, but also open source software like Matomo
|
|
14
14
|
* **patterns** - that express various behaviors performed by organizations. For example, a pattern for Google Analytics is categorized as site analytics, but a pattern for Google Tag Manager is categorized as essential.
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghostery/trackerdb",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"description": "Ghostery Tracker Database",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup && npm run export",
|
|
8
8
|
"test": "node test/index.js",
|
|
9
9
|
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
|
|
10
|
+
"update-docs": "node scripts/update-docs.js",
|
|
10
11
|
"export": "npm run export-json && npm run export-engine && npm run export-sql",
|
|
11
12
|
"export-sql": "node scripts/export-sql/index.js",
|
|
12
13
|
"export-engine": "node scripts/export-engine/index.js",
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
54
55
|
"@typescript-eslint/parser": "^5.59.2",
|
|
55
56
|
"chalk": "^5.1.2",
|
|
57
|
+
"ejs": "^3.1.9",
|
|
56
58
|
"eslint": "^8.39.0",
|
|
57
59
|
"eslint-config-prettier": "^8.5.0",
|
|
58
60
|
"eslint-plugin-prettier": "^4.0.0",
|