-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1023 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1023 Bytes
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
{
"name": "gabber",
"version": "2.1.0",
"description": "Open repository in your editor, at high BPM",
"author": "acidghost",
"license": "GPL-3.0",
"engines": {
"node": ">=22.14.0",
"npm": ">=10.9.0"
},
"scripts": {
"ext:build": "web-ext build --source-dir Extension/src --artifacts-dir Out --overwrite-dest",
"ext:run": "web-ext run --source-dir Extension/src --artifacts-dir Out --reload",
"ext:sign": "web-ext sign --source-dir Extension/src --artifacts-dir Out --api-key $FIREFOX_API_KEY --api-secret $FIREFOX_API_SECRET --channel unlisted",
"lint": "eslint .",
"test": "cd Extension && jasmine-browser-runner runSpecs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/firefox-webext-browser": "^143.0.0",
"@types/jasmine": "^6.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"jasmine-browser-runner": "^4.0.0",
"jasmine-core": "^6.1.0",
"prettier": "3.8.2",
"web-ext": "^10.0.0"
}
}