forked from KitchenStories/vue-gallery-slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.31 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
{
"name": "vue-gallery-slideshow",
"version": "1.3.2",
"description": "Lightweight and responsive image gallery for Vue.js.",
"main": "dist/js/vue-gallery-slideshow.js",
"jsnext:main": "src/index.js",
"unpkg": "dist/js/vue-gallery-slideshow.min.js",
"files": [
"dist/js/vue-gallery-slideshow.min.js",
"dist/js/vue-gallery-slideshow.js"
],
"scripts": {
"prepare": "npm run build",
"test": "npm run build && node test/e2e/runner.js",
"lint": "eslint --ext .js,.vue src",
"build": "NODE_ENV=production node_modules/.bin/rollup -c ./rollup.config.js && NODE_ENV=production BUILD_MODE=minify node_modules/.bin/rollup -c ./rollup.config.js",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"release": "./build/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KitchenStories/vue-gallery-slideshow.git"
},
"keywords": [
"vue-gallery-slideshow",
"gallery",
"slideshow",
"images",
"photos",
"viewer",
"vue-component",
"vue-plugin",
"slider",
"viewer",
"carousel",
"vue",
"vuejs",
"vuejs-plugin"
],
"author": "Norman Sander",
"license": "MIT",
"bugs": {
"url": "https://github.com/KitchenStories/vue-gallery-slideshow/issues"
},
"homepage": "https://github.com/KitchenStories/vue-gallery-slideshow#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"chromedriver": "^75.1.0",
"cross-spawn": "^6.0.5",
"eslint": "^6.1.0",
"eslint-plugin-vue": "^5.2.3",
"http-server": "^0.11.1",
"nightwatch": "^0.9.21",
"nightwatch-helpers": "^1.2.0",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.16",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-vue": "^5.0.1",
"selenium-server": "^3.141.59",
"vue-template-compiler": "^2.6.10",
"webdriver-manager": "^12.1.5"
},
"browserslist": [
"> 1%",
"Chrome >= 14",
"Safari >= 4",
"Firefox >= 4",
"Opera >= 10",
"Edge >= 41",
"not ie <= 7",
"iOS >= 6",
"ChromeAndroid >= 4",
"OperaMobile >= 12"
]
}