-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
75 lines (75 loc) · 2.27 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",
"version": "1.1.0",
"description": "A pure vue ssr friendly horizontal list implementation.",
"author": "Fuxing Loh",
"repository": {
"type": "git",
"url": "https://github.com/fuxingloh/vue-horizontal-list.git"
},
"bugs": "https://github.com/fuxingloh/vue-horizontal-list/issues",
"keywords": [
"vue",
"vuejs",
"horizontal",
"scroll view",
"airbnb list"
],
"license": "MIT",
"private": false,
"main": "dist/vue-horizontal-list.ssr.js",
"browser": "dist/vue-horizontal-list.esm.js",
"module": "dist/vue-horizontal-list.esm.js",
"unpkg": "dist/vue-horizontal-list.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",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.2",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"cross-env": "^7.0.2",
"husky": "^4.3.0",
"minimist": "^1.2.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rollup": "^2.7.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}