-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 870 Bytes
/
package.json
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
{
"name": "mediawiki-extensions-photoswipe",
"version": "1.0.0",
"author": "Jason Khanlar",
"description": "This is a MediaWiki extension that adds <code><photoswipe></code> tag to provide a front-end JavaScript image gallery and lightbox using [PhotoSwipe](https://photoswipe.com/)",
"license": "GPL-3.0-or-later",
"main": "Gruntfile.js",
"private": true,
"devDependencies": {
"eslint-config-wikimedia": "0.22.1",
"grunt": "1.4.1",
"grunt-banana-checker": "0.9.0",
"grunt-eslint": "23.0.0",
"grunt-stylelint": "0.16.0",
"stylelint-config-wikimedia": "0.11.1"
},
"eslintIgnore": [
"vendor/**"
],
"scripts": {
"build-lib": ". ./bin/build.sh",
"test": "grunt test"
},
"dependencies": {
"grunt-exec": "^3.0.0",
"photoswipe": "^5.2.4",
"photoswipe-deep-zoom-plugin": "^1.1.2",
"photoswipe-dynamic-caption-plugin": "^1.1.1"
}
}