-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.15 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.15 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
{
"name": "mozilla-vpn-extension",
"version": "0.0.0",
"description": "The official Mozilla-VPN Firefox integration",
"main": "src/index.js",
"type": "module",
"scripts": {
"vendor": "rollup vendor/lit-all.min.js -p @rollup/plugin-node-resolve -f es -d src/vendor --no-compact",
"postinstall": "npm run vendor",
"lint": "concurrently npm:prettier npm:typecheck",
"format": "prettier . --write",
"format-file": "prettier --write --",
"prettier": "prettier . --check",
"addonslinter": "addons-linter src/",
"typecheck": "tsc --noEmit",
"update-suffixes": "node scripts/updateSuffixRules.js",
"build": "web-ext build --source-dir src --filename mozilla-vpn-extension.xpi",
"start-dev": "npm run remove-locales-github && npm run web-ext-run --pref=ui.popup.disable_autohide=true",
"start": "npm run remove-locales-github && npm run web-ext-run",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collect-coverage --detectOpenHandles -- ",
"test-watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch -- ",
"restore-locales-github": "cd src/_locales/ && git reset --hard && git submodule update",
"remove-locales-github": "del-cli src/_locales/.github",
"web-ext-run": "web-ext run --verbose --source-dir src --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-extensions/mozilla-vpn-extension.git"
},
"author": "Mozilla",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-extensions/mozilla-vpn-extension/issues"
},
"homepage": "https://github.com/mozilla-extensions/mozilla-vpn-extension#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"addons-linter": "^7.19.0",
"concurrently": "^8.2.2",
"del-cli": "^6.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.3.3",
"rollup": "^4.28.1",
"typescript": "^5.5.2",
"web-ext": "^8.10.0",
"web-ext-types": "github:synecdokey/web-ext-types"
},
"dependencies": {
"lit": "^3.2.0"
},
"prettier": {
"trailingComma": "es5"
}
}