Skip to content

Commit 7fe77a8

Browse files
committed
Initial commit
0 parents  commit 7fe77a8

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "vue-animate-onscroll",
3+
"version": "0.0.1",
4+
"description": "A simple component that animates element upon scroll",
5+
"main": "src/index.js",
6+
"author": "yev",
7+
"license": "MIT",
8+
"dependencies": {
9+
"waypoints": "^4.0.1"
10+
}
11+
}

src/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export default {
2+
install(Vue, options) {
3+
4+
}
5+
}

yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
waypoints@^4.0.1:
6+
version "4.0.1"
7+
resolved "https://registry.yarnpkg.com/waypoints/-/waypoints-4.0.1.tgz#09979a0573810b29627cba4366a284a062ec69c8"
8+
integrity sha1-CZeaBXOBCylifLpDZqKEoGLsacg=

0 commit comments

Comments
 (0)