-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.2 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
{
"name": "bulkhead",
"version": "1.0.3",
"description": "Firefox extension pinning each container to its own Mullvad SOCKS5 exit, with a fail-closed killswitch. Unofficial; not affiliated with Mullvad AB.",
"author": "S4N-T0S (https://github.com/S4N-T0S)",
"license": "GPL-3.0-only",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/S4N-T0S/Bulkhead.git"
},
"engines": {
"node": ">=22.13"
},
"scripts": {
"setup": "node tools/get-firefox.mjs",
"bump": "node tools/bump-version.mjs",
"start": "web-ext run",
"lint": "eslint .",
"lint:amo": "node tools/lint-amo.mjs",
"typecheck": "tsc -p tsconfig.json",
"test": "node --test \"test/unit/**/*.test.js\"",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-include=\"src/**\" \"test/unit/**/*.test.js\"",
"test:e2e": "node test/e2e/run.mjs",
"build": "web-ext build"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/firefox-webext-browser": "^143.0.0",
"addons-linter": "^10.10.0",
"eslint": "^10.9.1",
"globals": "^17.11.0",
"typescript": "^7.0.2",
"web-ext": "^10.6.0"
}
}