-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "vue-animate-scroll",
"version": "0.1.5",
"description": "A small Vue component that provides an easy way to animate elements as they scroll into view.",
"main": "./lib/vue-animate-scroll.cjs.js",
"module": "./lib/vue-animate-scroll.es.js",
"jsnext:main": "./lib/vue-animate-scroll.es.js",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"nuke": "rm -r lib node_modules yarn.lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-prince/vue-animate-scroll.git"
},
"keywords": [
"vue",
"vue animate",
"vue scroll",
"vue-component"
],
"author": "Mike Prince",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-prince/vue-animate-scroll/issues"
},
"homepage": "https://github.com/mike-prince/vue-animate-scroll#readme",
"devDependencies": {
"rollup": "^0.57.1",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
}
}