-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "lg-rotate.js",
"version": "1.2.0",
"description": "Rotate module for lightgallery.js",
"keywords": [
"gallery",
"lightbox",
"image",
"youtube",
"vimeo",
"dailymotion",
"html5 videos",
"thumbnails",
"zoom",
"fullscreen",
"responsive",
"touch",
"drag",
"google plus",
"social media",
"facebook",
"twitter"
],
"homepage": "http://sachinchoolur.github.io/lg-rotate.js",
"bugs": {
"url": "https://github.com/sachinchoolur/lg-rotate.js/issues"
},
"license": "GPLv3",
"author": {
"name": "Sachin N",
"email": "[email protected]",
"url": "https://github.com/sachinchoolur"
},
"main": "dist/lg-rotate.js",
"repository": {
"type": "git",
"url": "https://github.com/sachinchoolur/lg-rotate.js.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babelify": "^7.2.0",
"bannerify": "^1.0.1",
"browserify": "^13.0.0",
"install": "^0.4.4",
"jshint": "^2.9.2",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0"
},
"scripts": {
"build": "npm run lint && npm run build-debug && npm run build-min",
"build-debug": "browserify src/lg-rotate.js -s LgRotate -t [babelify] -p [bannerify --file .banner ] -o dist/lg-rotate.js",
"build-min": "uglifyjs dist/lg-rotate.js --comments '/@license/' -m screw_ie8=true -c screw_ie8=true,unused=false -o dist/lg-rotate.min.js",
"build-watch": "watchify src/lg-rotate.js -s LgRotate -t [babelify] -o dist/lg-rotate.js -v",
"dev": "watchify src/lg-rotate.js -s LgRotate -t [babelify] -o ../lightgallery.js/lightgallery/js/lg-rotate.js -v",
"lint": "jshint src"
}
}