-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
101 lines (101 loc) · 2.73 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vue-it-bigger",
"description": "A simple image / (YouTube) video lightbox component for Vue.js. Based on vue-image-lightbox.",
"version": "0.3.2",
"author": "Janos Rusiczki <[email protected]>",
"contributors": [
"Nguyen P. Thien Dzung <[email protected]>"
],
"license": "MIT",
"main": "dist/vue-it-bigger.min.js",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "webpack-dev-server --hot --open --config build/webpack.dev.conf.js --mode development",
"build": "rimraf dist && webpack --progress --config build/webpack.prod.conf.js --mode production",
"gh-pages": "rimraf gh-pages && webpack --config build/webpack.gh-pages.conf.js --mode production",
"lint": "eslint --ext .js,.vue src/",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/components/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/build/**",
"!**/coverage/**",
"!**/dist/**",
"!**/gh-pages/**",
"!**/node_modules/**",
"!**/specs/**",
"!**/src/*"
],
"coverageDirectory": "./coverage/"
},
"repository": {
"type": "git",
"url": "https://github.com/haiafara/vue-it-bigger"
},
"keywords": [
"vue",
"vuejs",
"lightbox",
"gallery",
"image gallery",
"image lightbox",
"video gallery",
"video lightbox"
],
"bugs": {
"url": "https://github.com/haiafara/vue-it-bigger/issues"
},
"homepage": "https://github.com/haiafara/vue-it-bigger",
"dependencies": {
"@babel/runtime": "^7.21.5",
"babel-loader": "^9.1.2",
"chokidar": "3.5.3",
"hammerjs": "^2.0.8",
"terser-webpack-plugin": "^5.3.7"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "^7.0.0-bridge.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"rimraf": "^3.0.2",
"style-loader": "^3.3.2",
"url-loader": "^4.1.1",
"vue": "2.7.14",
"vue-jest": "^3.0.7",
"vue-loader": "^15.10.1",
"vue-template-compiler": "2.7.14",
"webpack": "5.94.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
}
}