-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "vue-scrollactive",
"version": "0.9.3",
"title": "Vue Scrollactive",
"description": "Lightweight and simple to use vue component that highlights menu items as you scroll the page, also scrolling to target section when clicked.",
"main": "dist/vue-scrollactive.min.js",
"scripts": {
"start": "webpack-dev-server",
"sandbox": "webpack",
"prod": "TARGET=production webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/eddiemf/vue-scrollactive.git"
},
"keywords": [
"vue",
"vue-plugin",
"vue-component",
"scrollspy",
"scroll",
"active",
"active-class",
"menu-item",
"highlight-menu-item"
],
"author": {
"name": "Mauricio Farias Dziedzinski",
"email": "d.mauriciofarias@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/eddiemf/vue-scrollactive/issues"
},
"homepage": "https://github.com/eddiemf/vue-scrollactive#readme",
"dependencies": {
"bezier-easing": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"eslint": "^7.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}