-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 4.27 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 4.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ghostify",
"version": "2.0.10",
"private": true,
"description": "Privacy controls for Instagram, Facebook, and Messenger.",
"scripts": {
"build": "node build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run build && npm run test:modules && node test/messenger-send-stability.test.js && npm run test:status && npm run test:dependency-audit && npm run test:release-notes && npm run test:tag-integrity && npm run test:validator && npm run test:package",
"test:modules": "npm run test:modules:shared && node test/firefox-popup.test.js",
"test:modules:shared": "node test/settings-defaults.test.js && node test/runtime-config.test.js && node test/module-registry.test.js && node test/module-flags.test.js",
"test:popup:chromium": "node test/firefox-popup.test.js chromium",
"test:popup:firefox": "node test/firefox-popup.test.js firefox",
"test:validator": "node test/validate-extension-package.test.js",
"test:status": "node test/prepare-status-update.test.js && node test/daily-verification-git.test.js",
"test:dependency-audit": "node test/dependency-audit-policy.test.js",
"test:release-notes": "node test/extract-release-notes.test.js",
"test:tag-integrity": "node test/version-tag-integrity.test.js",
"test:package": "npm run test:package:chromium && npm run test:package:firefox",
"test:package:chromium": "node test/package-extension.test.js",
"test:package:firefox": "node test/package-firefox.test.js",
"package:extension": "node scripts/package-extension.js",
"package:chromium": "node scripts/package-extension.js",
"prepare:firefox": "node scripts/prepare-firefox-extension.js",
"package:firefox": "node scripts/package-firefox.js",
"validate:extension": "node scripts/validate-extension-package.js",
"validate:firefox": "node scripts/validate-firefox-extension.js",
"validate:tag-integrity": "node scripts/validate-version-tag-integrity.js",
"lint:firefox": "npm run prepare:firefox && web-ext lint --source-dir tmp/firefox-extension --warnings-as-errors",
"verify:dist": "git diff --exit-code -- dist/background.js dist/js/content.js dist/js/ghost.js dist/js/messenger_patch.js",
"audit:runtime": "npm audit --omit=dev --audit-level=high",
"audit:high": "node scripts/audit-development-dependencies.js",
"ci:chromium:checks": "npm run build && npm run test:modules:shared && npm run test:popup:chromium && node test/messenger-send-stability.test.js && npm run test:status && npm run test:dependency-audit && npm run test:release-notes && npm run test:tag-integrity && npm run test:validator && npm run test:package:chromium && npm run validate:extension && npm run validate:tag-integrity && npm run verify:dist",
"ci:chromium": "npm run ci:chromium:checks && npm run audit:high",
"ci:firefox:checks": "npm run build && npm run test:modules:shared && npm run test:popup:firefox && node test/messenger-send-stability.test.js && npm run test:package:firefox && npm run validate:firefox && npm run lint:firefox && npm run verify:dist",
"ci:firefox": "npm run ci:firefox:checks && npm run audit:high",
"ci:all-browsers": "npm test && npm run validate:extension && npm run validate:firefox && npm run validate:tag-integrity && npm run lint:firefox && npm run verify:dist",
"ci:verification": "npm run ci:all-browsers && npm run audit:runtime",
"ci": "npm run ci:all-browsers && npm run audit:high"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hendrizzzz/Ghostify.git"
},
"keywords": [
"browser-extension",
"chrome-extension",
"manifest-v3",
"privacy",
"instagram",
"facebook",
"messenger"
],
"author": "Hendrizzzz",
"license": "MIT",
"engines": {
"node": ">=22.13"
},
"overrides": {
"fx-runner@1.5.0": {
"shell-quote": "1.9.0"
},
"firefox-profile@4.7.0": {
"adm-zip": "0.6.0"
}
},
"bugs": {
"url": "https://github.com/Hendrizzzz/Ghostify/issues"
},
"homepage": "https://github.com/Hendrizzzz/Ghostify#readme",
"devDependencies": {
"@eslint/js": "^9.39.5",
"esbuild": "^0.28.1",
"eslint": "^9.39.5",
"globals": "^16.5.0",
"prettier": "^3.9.6",
"web-ext": "10.5.0"
}
}