-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.81 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.81 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
{
"name": "searchengine-devtools",
"version": "3.7.0",
"description": "A tool to help test search engine configuration changes",
"homepage_url": "https://github.com/mozilla/searchengine-devtools",
"webExt": {
"sourceDir": "./extension/",
"lint": {
"privileged": true,
"selfHosted": true
}
},
"docker-image": "node-lts-latest",
"dependencies": {
"diff": "9.0.0",
"web-ext": "10.1.0"
},
"devDependencies": {
"@eslint/json": "1.2.0",
"@microsoft/eslint-plugin-sdl": "1.1.0",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-fetch-options": "0.0.5",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-mozilla": "4.4.0",
"eslint-plugin-no-unsanitized": "4.1.5",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"webpack": "5.106.2",
"webpack-cli": "7.0.2"
},
"scripts": {
"test": "npm run eslint && npm run prettier && npm run webext",
"eslint": "eslint .",
"prettier": "prettier --check .",
"webext": "web-ext lint",
"prebuild": "rimraf web-ext-artifacts && cp node_modules/diff/dist/diff.js extension/content/ && node schemas/generateValidator.js && webpack",
"build": "web-ext build -s ./extension/ --overwrite-dest -n searchengine-devtools.xpi",
"postbuild": "rm validate.js",
"clean": "rimraf web-ext-artifacts extension/content/diff.js extension/content/validate.js",
"start": "npm run clean && npm run build && web-ext run -s extension --pref \"extensions.experiments.enabled=true\"",
"updateschemas": "cp ../firefox/toolkit/components/search/schema/{search-config-v2-schema.json,search-config-overrides-v2-schema.json,search-config-icons-schema.json} schemas"
},
"private": true,
"license": "MPLv2"
}