-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
65 lines (65 loc) · 2.13 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
{
"name": "vue2-scrollbar",
"version": "0.0.2",
"description": "The Simplest Scroll Area Component with custom scrollbar for Vue 2",
"main": "./dist/vue2-scrollbar.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack/webpack.config.js --inline --hot",
"build": "cross-env NODE_ENV=production webpack --config ./webpack/webpack-prod.config.js -p",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack/webpack-bundle.config.js -p",
"build:dist": "cross-env NODE_ENV=development webpack --config ./webpack/webpack-bundle.config.js",
"bundle": "npm run build && npm run build:prod && npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BosNaufal/vue2-scrollbar.git"
},
"keywords": [
"vue-js",
"scrollbar",
"custom-scrollbar",
"enhance",
"component",
"vue2-scrollbar",
"smooth-scroll",
"smooth-scrollbar",
"vue-2"
],
"author": "Naufal Rabbani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BosNaufal/vue2-scrollbar/issues"
},
"homepage": "https://github.com/BosNaufal/vue2-scrollbar#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.0.3",
"css-loader": "^0.28.0",
"es6-promise": "^4.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-cssmin": "^0.2.0",
"gulp-cssnano": "^2.1.2",
"gulp-group-css-media-queries": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-string-replace": "^0.4.0",
"jsx-control-statements": "^3.2.5",
"postcss-loader": "^2.0.6",
"style-loader": "^0.16.1",
"vue-loader": "^13.0.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"vue": "^2.4.2",
"vue-template-compiler": "^2.4.2"
}
}