forked from rigor789/vue-scrollto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "vue-scrollto",
"version": "2.15.0",
"description": "Adds a directive that listens for click events and scrolls to elements.",
"main": "vue-scrollto.js",
"keywords": [
"vue",
"vuejs",
"directive",
"scroll",
"scrollto",
"scroll to"
],
"license": "MIT",
"author": {
"name": "Igor Randjelovic",
"email": "shout@igor-randjelovic.com",
"url": "http://igor-randjelovic.com",
"twitter": "https://twitter.com/igor_randj"
},
"repository": {
"type": "git",
"url": "https://github.com/rigor789/vue-scrollto"
},
"dependencies": {
"bezier-easing": "2.1.0"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/preset-env": "7.3.4",
"@vuepress/plugin-google-analytics": "1.0.0-alpha.44",
"lint-staged": "8.1.5",
"pre-commit": "1.2.2",
"prettier": "1.16.4",
"rollup": "1.6.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-node-resolve": "4.0.1",
"vuepress": "^1.0.0-alpha.44"
},
"scripts": {
"build": "rollup -c",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"lint-staged": {
"src/**.js": [
"prettier --write --tab-width=4",
"git add"
]
},
"pre-commit": "lint-staged"
}