-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.12 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
{
"name": "fixclick",
"version": "1.1.0",
"private": true,
"description": "Browser extension detecting ClickFix and ghost/AiTM Microsoft token-phishing attacks.",
"type": "module",
"scripts": {
"build": "node scripts/build.mjs",
"icons": "node scripts/make-icons.mjs",
"screenshots": "node scripts/screenshots.mjs",
"build:chrome": "node scripts/build.mjs chrome",
"build:firefox": "node scripts/build.mjs firefox",
"package": "node scripts/package.mjs",
"package:chrome": "node scripts/package.mjs chrome",
"package:firefox": "node scripts/package.mjs firefox",
"check": "node scripts/build.mjs && find src -name '*.js' -print0 | xargs -0 -n1 node --check",
"test": "node tests/run.mjs",
"test:e2e": "npm run build:chrome && playwright test",
"test:e2e:firefox": "node e2e/firefox.mjs",
"lint:firefox": "npm run build:firefox && web-ext lint --source-dir dist/firefox",
"run:firefox": "npm run build:firefox && web-ext run --source-dir dist/firefox"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"selenium-webdriver": "^4.45.0",
"web-ext": "^10.4.0"
}
}