-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
66 lines (66 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
64
65
66
{
"name": "vue-image-lightbox",
"description": "A Vue.js package to display an image gallery lightbox",
"version": "7.2.0",
"author": "Nguyen P. 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 src/"
},
"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.9.2",
"hammerjs": "^2.0.8",
"vue-lazyload": "^1.3.2"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.5.0",
"eslint": "^7.0.0",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.4",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"rimraf": "^3.0.2",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^4.2.2",
"url-loader": "^4.0.0",
"vue": "^2.6.10",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.10",
"webpack": "4.44.2",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
},
"vetur": {
"tags": "dist/vetur/tags.json",
"attributes": "dist/vetur/attributes.json"
}
}