-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.41 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
{
"name": "simplebatchupload",
"description": "Basic, no-frills uploading of multiple files to MediaWiki",
"author": "Stephan Gambke",
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=22"
},
"private": true,
"scripts": {
"test": "npm -s run test:unit",
"test:unit": "vitest run --passWithNoTests",
"test:unit:watch": "vitest",
"lint": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n",
"lint:js": "eslint --cache --max-warnings 0 .",
"lint:styles": "stylelint --allow-empty-input \"**/*.css\"",
"lint:i18n": "banana-checker i18n/",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"blueimp:check": "diff -q node_modules/blueimp-file-upload/js/jquery.fileupload.js res/jquery.fileupload.js && diff -q node_modules/blueimp-file-upload/css/jquery.fileupload.css res/jquery.fileupload.css",
"blueimp:update": "cp node_modules/blueimp-file-upload/js/jquery.fileupload.js node_modules/blueimp-file-upload/css/jquery.fileupload.css res/",
"preflight": "npm -s run lint && npm -s run test:unit && npm -s run blueimp:check"
},
"devDependencies": {
"blueimp-file-upload": "10.32.0",
"eslint": "8.57.1",
"eslint-config-wikimedia": "0.32.6",
"eslint-plugin-no-jquery": "6.0.0",
"grunt-banana-checker": "0.13.0",
"jsdom": "^30.1.0",
"stylelint": "17.15.0",
"stylelint-config-wikimedia": "0.19.4",
"vitest": "^5.0.1"
}
}