-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 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
{
"name": "vue-horizontal-list-autoscroll",
"version": "1.1.14",
"description": "A pure vue ssr friendly horizontal list implementation with autoscroll feature.",
"author": "Mihir Kumar <https://linkedin.com/in/mikr13>",
"contributors": [
"mikr13"
],
"repository": {
"type": "git",
"url": "https://github.com/MiKr13/vue-horizontal-list-autoscroll.git"
},
"bugs": "https://github.com/MiKr13/vue-horizontal-list-autoscroll/issues",
"keywords": [
"horizontal",
"scroll",
"autoscroll",
"auto-scroll",
"scroll view",
"card",
"snapping",
"ssr",
"airbnb list",
"slideshow",
"slide-show"
],
"license": "MIT",
"private": false,
"main": "dist/vue-horizontal-list-autoscroll.ssr.js",
"browser": "dist/vue-horizontal-list-autoscroll.esm.js",
"module": "dist/vue-horizontal-list-autoscroll.esm.js",
"unpkg": "dist/vue-horizontal-list-autoscroll.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"serve": "vue-cli-service serve examples/serve.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"examples:serve": "vue-cli-service serve examples/serve.js",
"examples:build": "vue-cli-service build examples/serve.js",
"prepublishOnly": "yarn build"
},
"dependencies": {
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@vue/cli-plugin-babel": "^4.4.5",
"@vue/cli-service": "^5.0.1",
"cross-env": "^6.0.3",
"minimist": "^1.2.5",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.0.0",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"engines": {
"node": ">=8"
}
}