forked from blueimp/Bootstrap-Image-Gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "blueimp-bootstrap-image-gallery",
"version": "3.3.6",
"title": "Bootstrap Image Gallery",
"description": "Bootstrap Image Gallery is an extension to blueimp Gallery, a touch-enabled, responsive and customizable image and video gallery. It displays images and videos in the modal dialog of the Bootstrap framework, features swipe, mouse and keyboard navigation, transition effects, fullscreen support and on-demand content loading and can be extended to display additional content types.",
"keywords": [
"image",
"video",
"gallery",
"modal",
"dialog",
"lightbox",
"mobile",
"desktop",
"touch",
"responsive",
"swipe",
"mouse",
"keyboard",
"navigation",
"transition",
"effects",
"slideshow",
"fullscreen"
],
"homepage": "https://github.com/blueimp/Bootstrap-Image-Gallery",
"author": {
"name": "Sebastian Tschan",
"url": "https://blueimp.net"
},
"repository": {
"type": "git",
"url": "git://github.com/blueimp/Bootstrap-Image-Gallery.git"
},
"license": "MIT",
"devDependencies": {
"jshint": "2.8.0",
"less": "2.5.3",
"less-plugin-clean-css": "1.5.1",
"uglify-js": "2.6.1"
},
"scripts": {
"test": "jshint js",
"build:js": "cd js && uglifyjs bootstrap-image-gallery.js -c -m -o bootstrap-image-gallery.min.js --source-map bootstrap-image-gallery.min.js.map",
"build:less": "cd css && lessc --clean-css --source-map bootstrap-image-gallery.css bootstrap-image-gallery.min.css",
"build": "npm run build:js && npm run build:less",
"preversion": "npm test",
"version": "npm run build && git add -A js",
"postversion": "git push --tags origin master master:gh-pages && npm publish"
},
"jshintConfig": {
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": true,
"undef": true,
"unused": true,
"strict": true
}
}