-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
74 lines (74 loc) · 2.56 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
{
"name": "ghostery-extension",
"private": true,
"version": "10.4.14",
"type": "module",
"scripts": {
"download-engines": "node scripts/download-engines.js",
"download-wtm-bloomfilter": "node scripts/download-wtm-bloomfilter.js",
"download-wtm-stats": "node scripts/download-wtm-stats.js",
"build": "node scripts/build.js",
"start": "npm run build -- --watch",
"start:update": "./scripts/update.sh",
"debug": "npm run build -- --watch --debug",
"licenses": "license-report --config=./.license-report-config.json > dist/licenses.html",
"lint": "npm run lint:src && npm run lint:build",
"lint:src": "eslint",
"lint:build": "npm run build firefox && addons-linter dist",
"test": "npm run wdio && npm run wdio:update",
"wdio": "wdio tests/e2e/wdio.conf.js",
"wdio:update": "wdio tests/e2e/wdio.update.conf.js",
"locales:setup": "cp -f ./src/messages.json ./src/_locales/en/messages.json",
"locales.src": "hybrids extract -c --format=chrome.i18n ./src ./src/_locales/en/messages.json",
"locales": "npm run locales:setup && npm run locales.src",
"xcode-export-locales": "rm -rf ./xcode/en.xcloc && xcodebuild -exportLocalizations -project ./xcode/Ghostery.xcodeproj -localizationPath ./xcode",
"release": "./scripts/release.sh",
"package": "./scripts/package.sh"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/chrome": "^0.0.281",
"@wdio/browser-runner": "^9.2.1",
"@wdio/cli": "^9.2.1",
"@wdio/globals": "^9.1.2",
"@wdio/mocha-framework": "^9.1.2",
"@wdio/spec-reporter": "^9.1.3",
"addons-linter": "^7.4.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"license-report": "^6.5.0",
"prettier": "^3.3.3",
"sinon-chrome": "^3.0.1",
"vite": "^5.4.11",
"web-ext": "^8.2.0",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"@duckduckgo/autoconsent": "^10.17.0",
"@ghostery/adblocker": "^2.0.4",
"@ghostery/adblocker-webextension": "^2.0.4",
"@github/relative-time-element": "^4.3.0",
"@sentry/browser": "^8.38.0",
"@whotracksme/reporting": "^5.1.34",
"bowser": "^2.11.0",
"hybrids": "^9.1.8",
"idb": "^8.0.0",
"jwt-decode": "^4.0.0",
"tldts-experimental": "^6.1.61"
},
"engineStrict": true,
"engines": {
"npm": ">=9.6.7"
},
"webExt": {
"sourceDir": "./dist/"
},
"author": {
"name": "Ghostery GmbH",
"email": "[email protected]",
"url": "https://www.ghostery.com"
},
"license": "MPL-2.0"
}