-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"name": "vue-pure-lightbox",
"version": "3.2.0",
"description": "Very lightweight, JavaScript-only, lightbox plugin for Vue.js",
"main": "dist/VuePureLightbox.common.js",
"scripts": {
"prepare": "npm run build",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name VuePureLightbox src/Components/Lightbox.vue"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCzajkowski/vue-pure-lightbox.git"
},
"keywords": [
"vue",
"vue.js",
"lightbox"
],
"author": "Dariusz Czajkowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/DCzajkowski/vue-pure-lightbox/issues"
},
"homepage": "https://github.com/DCzajkowski/vue-pure-lightbox#readme",
"files": [
"dist/*",
"src/*",
"*.json",
"*.js"
],
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-service": "~4.3.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0"
}
}