forked from RobinCK/vue-gallery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "vue-gallery",
"version": "2.0.1",
"description": "VueJS responsive and customizable image and video gallery, carousel and lightbox, optimized for both mobile and desktop web browsers.",
"main": "dist/js/vue-gallery.js",
"jsnext:main": "src/index.js",
"unpkg": "dist/js/vue-gallery.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint ./",
"build": "NODE_ENV=production node_modules/.bin/rollup -c ./build/rollup.config.js && NODE_ENV=production BUILD_MODE=minify node_modules/.bin/rollup -c ./build/rollup.config.js",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"postinstall": "opencollective-postinstall || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCK/vue-gallery.git"
},
"author": "Igor Ognichenko <ognichenko.igor@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinCK/vue-gallery/issues"
},
"homepage": "https://github.com/RobinCK/vue-gallery#readme",
"keywords": [
"vue-gallery",
"vuejs-gallery",
"vue",
"vuejs",
"gallery",
"images",
"pictures",
"carousel",
"slider",
"mobile",
"touch",
"vue-plugin",
"vue-component"
],
"dependencies": {
"blueimp-gallery": "^2.33.0",
"opencollective-postinstall": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"eslint": "^5.13.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "4.7.1",
"vue-template-compiler": "^2.6.4"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/vue-gallery"
}
}