mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-24 07:34:11 +00:00
ae5b74e78a
* @storybook/html: 6.2.9 → 6.5.4 * bundlesize: 0.18.0 → 0.18.1 * jquery: 3.4.1 → 3.6.0 * jsdoc: 3.6.3 → 3.6.10 * webpack-cli: 3.1.2 → 3.3.12 * ansi-regex: 5.0.1 → 5.0.1 * https://github.com/advisories/GHSA-93q8-gq69-wqmw * async: 0.9.2 → 3.2.3 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 * ejs: 3.1.6 → 3.1.8 * https://github.com/advisories/GHSA-phwq-j96m-2c2q * jake: 10.8.2 → 10.8.5 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 * minimist: 1.2.5 → 1.2.6 * https://github.com/advisories/GHSA-xvch-5gv4-984h * mocha: 8.4.0 → 8.4.0 * https://github.com/advisories/GHSA-qrpm-p2h7-hrv2 * nanoid: 3.1.20 → 3.1.20 * https://github.com/advisories/GHSA-qrpm-p2h7-hrv2 * prismjs: 1.27.0 → 1.28.0 * https://github.com/advisories/GHSA-3949-f494-cm99 * refractor: 3.5.0 → 3.6.0 * https://github.com/advisories/GHSA-3949-f494-cm99 Additional changes: * Set `name` in package.json. * Also sorted "composer fix" command to run phpcbf last. * Added the "composer phan" command to conveniently run phan. * composer.json: Updated phpcs command in composer test (T280592). * composer.json: Added phpcs command to scripts (T280592). Change-Id: I21f4c1bf305ef85028d9f7f0c74eca5dce98124b
23 lines
509 B
JSON
23 lines
509 B
JSON
{
|
|
"require-dev": {
|
|
"mediawiki/mediawiki-codesniffer": "38.0.0",
|
|
"mediawiki/mediawiki-phan-config": "0.11.0",
|
|
"mediawiki/minus-x": "1.1.1",
|
|
"php-parallel-lint/php-console-highlighter": "0.5.0",
|
|
"php-parallel-lint/php-parallel-lint": "1.3.1"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"parallel-lint . --exclude vendor --exclude node_modules",
|
|
"@phpcs",
|
|
"minus-x check ."
|
|
],
|
|
"fix": [
|
|
"minus-x fix .",
|
|
"phpcbf"
|
|
],
|
|
"phan": "phan -d . --long-progress-bar",
|
|
"phpcs": "phpcs -sp --cache"
|
|
}
|
|
}
|