This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
forked from mozilla-extensions/search-engine-usage-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 3.04 KB
/
package.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "search_engine_usage_study",
"version": "1.2.0",
"scripts": {
"build": "npm run build:glean && rollup -c && rollup -c rollup.config.content-scripts.js && npm run package",
"build:glean": "npm run build:glean:metrics && npm run build:glean:docs",
"build:glean:metrics": "glean translate ./metrics.yaml ./pings.yaml -f typescript -o src/generated",
"build:glean:docs": "glean translate ./metrics.yaml ./pings.yaml -f markdown -o docs",
"lint:glean": "glean glinter ./metrics.yaml ./pings.yaml",
"tailwind": "tailwindcss -o dist/tailwind.css",
"dev": "npm run build:glean && rollup -c --config-enable-developer-mode && rollup -c --config-enable-developer-mode rollup.config.content-scripts.js && npm run tailwind",
"lint": "npm run --silent skip-taskcluster || (eslint . && web-ext lint && npm run lint:glean)",
"package": "web-ext build --overwrite-dest --ignore-files \"./tests/**/*\" --ignore-files \"./src/**/*\" --ignore-files \"./rollup.config.js\" -n search_engine_usage_study.xpi",
"start": "web-ext run --browser-console",
"start-dev": "npm run dev && web-ext run --browser-console",
"test-integration": "npm run --silent skip-taskcluster || (npm run package && mocha --timeout 30000 \"./tests/integration/*.js\")",
"watch": "npm-run-all --parallel watch-raw watch-bundled",
"watch-raw": "npm run dev -- -w",
"watch-bundled": "web-ext run --browser-console --watch-file dist/background.js",
"skip-taskcluster": "node -e \"process.exit(!('TASK_ID' in process.env))\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"browser-crypto": "^1.4.0",
"dompurify": "^2.3.8",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"geckodriver": "^3.0.2",
"globby": "^11.0.3",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.47.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-svelte": "^7.1.0",
"selenium-webdriver": "^4.0.0-beta.3",
"typescript": "^4.7.4",
"web-ext": "^6.1.0"
},
"dependencies": {
"@mozilla/glean": "^0.24.0",
"@mozilla/rally": "^0.7.1",
"@mozilla/web-science": "^0.4.0",
"svelte": "^3.38.3",
"tailwindcss": "^2.2.16",
"webextension-polyfill": "^0.9.0",
"dompurify": "^2.3.8",
"pako": "^2.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"description": "This a basic template for a Rally study.",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-rally/study-template.git"
},
"keywords": [],
"author": "Mozilla",
"license": "MPL-2.0",
"private": true,
"bugs": {
"url": "https://github.com/mozilla-rally/study-template/issues"
},
"homepage": "https://github.com/mozilla-rally/study-template#readme"
}