-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 664 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "simplebatchupload",
"description": "Basic, no-frills uploading of multiple files to MediaWiki",
"author": "Stephan Gambke",
"license": "GPL-2.0-or-later",
"scripts": {
"pretest": "npm install",
"test": "grunt test",
"lint": "grunt lint",
"preinstall": "rm -f res/jquery.fileupload.*",
"install": "cp node_modules/blueimp-file-upload/js/jquery.fileupload.js node_modules/blueimp-file-upload/css/jquery.fileupload.css res"
},
"devDependencies": {
"grunt": "^1.6.2",
"grunt-cli": "^0.1.13",
"grunt-banana-checker": "^0.4.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jsonlint": "^1.0.7",
"blueimp-file-upload": "^v10.32.0"
}
}