forked from pexea12/vue-image-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
{
"name": "vue-image-lightbox",
"description": "A Vue.js package to display an image gallery lightbox",
"version": "6.2.1",
"author": "Nguyen Thien Dzung <[email protected]>",
"license": "MIT",
"main": "dist/vue-image-lightbox.min.js",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "webpack-dev-server --inline --hot --open --config build/webpack.dev.conf.js --mode development",
"build": "rimraf dist && webpack --progress --hide-modules --config build/webpack.prod.conf.js --mode production",
"lint": "eslint --ext .js,.vue app/"
},
"repository": {
"type": "git",
"url": "https://github.com/pexea12/vue-image-lightbox"
},
"keywords": [
"vue",
"vuejs",
"lightbox",
"gallery",
"image gallery",
"image lightbox"
],
"bugs": {
"url": "https://github.com/pexea12/vue-image-lightbox/issues"
},
"homepage": "https://github.com/pexea12/vue-image-lightbox",
"dependencies": {
"@babel/runtime": "^7.4.3",
"babel-loader": "^8.0.5",
"hammerjs": "^2.0.8",
"vue-lazyload": "^1.2.6"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue": "^2.5.22",
"vue-loader": "^15.3.0",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.16.5",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}