-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.59 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": "WikiLambda",
"private": true,
"scripts": {
"test": "grunt test && npm run test:unit",
"test:unit": "jest",
"browser-stress-test": "wdio run tests/selenium/stress-test/basic.js",
"browser-stress-test:all": "node tests/selenium/stress-test/stressTest.js",
"selenium-test": "wdio tests/selenium/wdio.conf.mjs",
"selenium-daily": "wdio tests/selenium/wdio.conf.mjs",
"doc": "jsdoc -c jsdoc.json",
"coverage": "npm run test:unit",
"lint": "grunt test",
"lint:fix": "grunt test --fix",
"local:setup": "bash scripts/local_setup.sh",
"local:reset": "bash scripts/local_reset.sh",
"local:selenium": "bash scripts/local_selenium.sh"
},
"devDependencies": {
"@babel/preset-env": "7.28.0",
"@pinia/testing": "^1.0.3",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/vue": "8.1.0",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "29.2.6",
"@wdio/cli": "9.20.1",
"@wdio/junit-reporter": "9.20.0",
"@wdio/local-runner": "9.20.1",
"@wdio/mocha-framework": "9.20.1",
"@wdio/spec-reporter": "9.20.0",
"@wikimedia/codex": "2.6.0",
"eslint-config-wikimedia": "0.32.4",
"grunt": "1.6.2",
"grunt-banana-checker": "0.13.0",
"grunt-eslint": "24.3.0",
"grunt-stylelint": "0.21.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jquery": "3.7.1",
"jsdoc": "4.0.5",
"jsdoc-wmf-theme": "1.3.0",
"pinia": "3.0.4",
"stylelint-config-wikimedia": "0.19.2",
"vue": "3.5.13",
"wdio-mediawiki": "6.5.2"
},
"overrides": {
"vue": "3.5.13",
"@testing-library/vue": {
"@vue/test-utils": "$@vue/test-utils"
}
},
"eslintIgnore": [
"vendor/**"
]
}