-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.36 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.36 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
{
"name": "@lwc/integration-karma",
"private": true,
"version": "8.20.0",
"scripts": {
"start": "KARMA_MODE=watch karma start ./scripts/karma-configs/test/local.js",
"test": "karma start ./scripts/karma-configs/test/local.js --single-run",
"hydration:start:engine-server": "ENGINE_SERVER=true KARMA_MODE=watch karma start ./scripts/karma-configs/hydration/local.js",
"hydration:test:engine-server": "ENGINE_SERVER=true karma start ./scripts/karma-configs/hydration/local.js --single-run --browsers ChromeHeadless",
"hydration:sauce:engine-server": "ENGINE_SERVER=true karma start ./scripts/karma-configs/hydration/sauce.js --single-run",
"hydration:sauce:ci:engine-server": "ENGINE_SERVER=true ../../../scripts/ci/retry.sh karma start ./scripts/karma-configs/hydration/sauce.js --single-run",
"hydration:start": "KARMA_MODE=watch karma start ./scripts/karma-configs/hydration/local.js",
"hydration:test": "karma start ./scripts/karma-configs/hydration/local.js --single-run",
"hydration:sauce": "karma start ./scripts/karma-configs/hydration/sauce.js --single-run",
"hydration:sauce:ci": "../../../scripts/ci/retry.sh karma start ./scripts/karma-configs/hydration/sauce.js --single-run",
"sauce": "karma start ./scripts/karma-configs/test/sauce.js --single-run",
"sauce:ci": "../../../scripts/ci/retry.sh karma start ./scripts/karma-configs/test/sauce.js --single-run",
"coverage": "node ./scripts/merge-coverage.js"
},
"//": {
"karma-sauce-launcher-fix-firefox": "using a fork to work around https://github.com/karma-runner/karma-sauce-launcher/issues/275"
},
"devDependencies": {
"@lwc/compiler": "8.20.0",
"@lwc/engine-dom": "8.20.0",
"@lwc/engine-server": "8.20.0",
"@lwc/rollup-plugin": "8.20.0",
"@lwc/synthetic-shadow": "8.20.0",
"@types/jasmine": "^5.1.7",
"chokidar": "^4.0.3",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.1.7",
"karma": "6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-sauce-launcher-fix-firefox": "3.0.1"
},
"volta": {
"extends": "../../../package.json"
}
}