mediawiki-skins-Vector/package.json
Jon Robson 87dd101a69 Consolidate and fix eslint errors, dropping ts-ignores
* Upgrade @wikimedia/types-wikimedia to allow us to drop several
@ts-ignores
* Merges eslint rules now that ES6 is default everywhere
* Runs autofix command
* Fixes various prefer-const errors

Change-Id: Iee5bcb93f10a76d80dbeec813f6387c13438263e
2023-04-11 16:56:31 -07:00

50 lines
1.6 KiB
JSON

{
"name": "Vector",
"private": true,
"scripts": {
"test": "npm -s run lint && tsc && npm run test:unit",
"test:unit": "jest --silent",
"test:unit:updateSnapshot": "jest --updateSnapshot",
"test:a11y": "wmf-a11y --config 'tests/a11y/a11y.config.js'",
"selenium-daily": "wmf-a11y --config 'tests/a11y/a11y.config.js' --logResults",
"lint": "npm -s run lint:js && npm -s run lint: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}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"doc": "echo 'N/A'",
"minify-svg": "svgo --config=.svgo.config.js --quiet --recursive --folder resources/",
"pre-commit": "[ \"${PRE_COMMIT:-1}\" -eq 0 ] || npm -s t"
},
"pre-commit": "pre-commit",
"devDependencies": {
"@types/jest": "27.0.0",
"@types/jquery": "3.3.33",
"@types/mustache": "4.0.1",
"@types/node-fetch": "2.5.7",
"@vue/test-utils": "2.0.1",
"@vue/vue3-jest": "27.0.0-alpha.4",
"@wikimedia/codex": "0.8.0",
"@wikimedia/codex-icons": "0.8.0",
"@wikimedia/codex-search": "0.8.0",
"@wikimedia/mw-node-qunit": "7.0.0",
"@wikimedia/types-wikimedia": "^0.4.0",
"eslint-config-wikimedia": "0.24.0",
"grunt-banana-checker": "0.10.0",
"jest": "27.4.7",
"jest-fetch-mock": "3.0.3",
"mustache": "3.0.1",
"mustache-jest": "1.1.1",
"node-fetch": "2.6.7",
"postcss-less": "6.0.0",
"pre-commit": "1.2.2",
"stylelint-config-wikimedia": "0.14.0",
"svgo": "3.0.2",
"ts-jest": "27.1.3",
"typescript": "4.5.5",
"vue": "3.2.37",
"wmf-a11y": "0.0.0"
}
}