-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.86 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
{
"name": "navscroll",
"version": "1.1.3",
"title": "NavScroll.js",
"description": "Lightweight package for highlighting menu items as you scroll the page, also scrolling to target section when item clicked. Use as a vue component/directive or in vanilla js.",
"main": "dist/navscroll.js",
"module": "src/index.js",
"scripts": {
"all": "yarn dev && yarn demo",
"dev": "webpack --progress --hide-modules",
"watch": "webpack --progress --hide-modules --watch",
"prod": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"prod:scrollto": "cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.scroll-to.js",
"demo": "webpack --progress --hide-modules --config='webpack.demo.config.js'",
"watch:demo": "webpack --progress --hide-modules --watch --config='webpack.demo.config.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/nash403/navscroll-js.git"
},
"homepage": "https://github.com/nash403/navscroll-js#readme",
"bugs": {
"url": "https://github.com/nash403/navscroll-js/issues"
},
"keywords": [
"vue",
"vue-plugin",
"vue-component",
"vue-directive",
"scroll-to",
"on-scroll",
"navigation",
"active-menu-item",
"vanilla-js"
],
"author": {
"name": "Honoré Nintunze",
"email": "nash403@outlook.fr",
"url": "https://nintu.me",
"twitter": "https://twitter.com/nash_403"
},
"license": "MIT",
"dependencies": {
"bezier-easing": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1"
}
}