mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-14 19:31:55 +00:00
a05273e3c2
composer: * mediawiki/mediawiki-codesniffer: 38.0.0 → 39.0.0 * php-parallel-lint/php-console-highlighter: 0.5.0 → 1.0.0 * php-parallel-lint/php-parallel-lint: 1.3.1 → 1.3.2 npm: * grunt: 1.4.1 → 1.5.2 * stylelint-config-wikimedia: 0.12.2 → 0.13.0 * async: 3.2.0 → 3.2.3 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 Additional changes: * Set `name` in package.json. Change-Id: Ife7f40d1f7d18c3ce66003aa50ac347d62441346
24 lines
541 B
JSON
24 lines
541 B
JSON
{
|
|
"license": "GPL-2.0-or-later",
|
|
"require-dev": {
|
|
"mediawiki/mediawiki-codesniffer": "39.0.0",
|
|
"mediawiki/mediawiki-phan-config": "0.11.1",
|
|
"mediawiki/minus-x": "1.1.1",
|
|
"php-parallel-lint/php-console-highlighter": "1.0.0",
|
|
"php-parallel-lint/php-parallel-lint": "1.3.2"
|
|
},
|
|
"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"
|
|
}
|
|
}
|