This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.96 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
{
"name": "@ghostery/dnr-extension",
"version": "9.5.0",
"type": "module",
"scripts": {
"download-cosmetics": "node scripts/download-cosmetics.js",
"download-dnr-lists": "node scripts/download-dnr-lists.js",
"postinstall": "npm run download-cosmetics && npm run download-dnr-lists",
"build": "node scripts/build.js",
"build.chromium": "npm run build -- --target chromium",
"build.safari": "npm run build -- --target safari",
"dev": "npm run build.chromium -- --watch",
"release": "web-ext build",
"start": "web-ext run --target=chromium",
"lint": "eslint src/",
"test": "npm run lint",
"locales.wtm": "hybrids extract -c --format=chrome.i18n node_modules/@whotracksme ./src/_locales/en/messages.json",
"locales.ui": "hybrids extract -c --format=chrome.i18n node_modules/@ghostery/ui ./src/_locales/en/messages.json",
"locales.src": "hybrids extract -c --format=chrome.i18n ./src ./src/_locales/en/messages.json",
"locales": "npm run locales.wtm && npm run locales.ui && npm run locales.src",
"xcode-export-locales": "rm -rf ./xcode/en.xcloc && xcodebuild -exportLocalizations -project ./xcode/Ghostery.xcodeproj -localizationPath ./xcode"
},
"author": {
"name": "Ghostery GmbH",
"email": "[email protected]",
"url": "https://www.ghostery.com"
},
"license": "MPL-2.0",
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"node-fetch": "^3.2.3",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"vendor-copy": "^3.0.1",
"vite": "^2.8.2",
"web-ext": "^6.8.0"
},
"dependencies": {
"@cliqz/adblocker": "^1.23.7",
"@cliqz/adblocker-webextension-cosmetics": "^1.22.7",
"@ghostery/ui": "^0.3.0",
"@whotracksme/webextension-packages": "^0.3.0",
"hybrids": "^8.0.3",
"lodash-es": "^4.17.21",
"tldts-experimental": "^5.7.66"
},
"webExt": {
"sourceDir": "./dist/"
}
}