-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.5 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
{
"name": "PageTriage",
"private": true,
"scripts": {
"coverage": "npm -s run test:unit -- --coverage",
"test": "npm run lint && npm run -s test:unit",
"test:unit": "jest --silent",
"update-snapshot": "jest --updateSnapshot",
"selenium-daily": "npm run selenium-test",
"selenium-test": "wdio tests/selenium/wdio.conf.js",
"lint": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n",
"lint:fix": "npm -s run lint:fix:js && npm -s run lint:fix:styles && npm -s run lint:i18n",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"lint:js": "eslint --cache .",
"lint:styles": "stylelint \"**/*.{less,css,vue}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@pinia/testing": "^0.1.2",
"@vue/test-utils": "^2.4.0",
"@vue/vue3-jest": "^29.2.4",
"@wdio/cli": "7.19.7",
"@wdio/devtools-service": "7.19.7",
"@wdio/junit-reporter": "7.16.6",
"@wdio/local-runner": "7.19.7",
"@wdio/mocha-framework": "7.16.6",
"@wdio/spec-reporter": "7.19.7",
"@wikimedia/codex": "1.15.0",
"@wikimedia/codex-icons": "1.15.0",
"@wikimedia/mw-node-qunit": "7.2.0",
"babel-jest": "^29.6.1",
"eslint": "8.57.0",
"eslint-config-wikimedia": "0.28.2",
"eslint-plugin-vue": "^9.21.1",
"grunt-banana-checker": "0.13.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"stylelint-config-wikimedia": "0.17.2",
"vue": "3.4.27",
"wdio-mediawiki": "2.5.0"
}
}