-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "vue-fake-scroll",
"version": "1.0.2",
"description": "Vue Component for creating fake scroll. Sometimes you only need to create scroll area without actually scrolling the content (fixed) and you use the scroll data to move another thing. This is what you need!",
"keywords": [
"vue",
"component",
"scroll",
"scrolling",
"scrollbar",
"fake",
"scrolljacking",
"parallax"
],
"license": "MIT",
"homepage": "https://alijaya.github.io/vue-fake-scroll/",
"bugs": "https://github.com/alijaya/vue-fake-scroll/issues",
"repository": "github:alijaya/vue-fake-scroll",
"main": "./src/components/VueFakeScroll.vue",
"author": "Ali Jaya Meilio Lie <[email protected]>",
"files": [
"dist/*",
"src/components/*"
],
"scripts": {
"build-bundle": "vue-cli-service build --dest dist --target lib --name VueFakeScroll ./src/components/VueFakeScroll.vue",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.5.16",
"vue-resize": "^0.4.4"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-rc.5",
"@vue/cli-plugin-eslint": "^3.0.0-rc.5",
"@vue/cli-service": "^3.0.0-rc.5",
"vue-template-compiler": "^2.5.16"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}