-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "vue-use-scrollspy",
"version": "0.1.3",
"description": "vue scrollspy component, for detecting enter/exit of elements in the viewport when the user scrolls.",
"keywords": [
"vue",
"scrollspy",
"component",
"vue-component"
],
"main": "lib/scrollspy",
"scripts": {
"dev": "webpack-dev-server --hot --color --env.development",
"build": "webpack --env.production",
"predeploy": "webpack --env.docs",
"deploy": "gh-pages -d dist",
"prepublishOnly": "npm run build"
},
"author": "riadloc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Riadloc/vue-scrollspy.git"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-vue-app": "^2.0.0",
"css-loader": "^2.1.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
}
}