-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.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
{
"name": "vue-file-picker",
"version": "0.0.2",
"description": "A HTML5 file picker for VueJS",
"main": "dist/vue-file-picker.js",
"browser": "dist/vue-file-picker.js",
"unpkg": "dist/vue-file-picker.js",
"module": "src/main.js",
"scripts": {
"build": "cross-env webpack --config webpack.config.js --mode production",
"build:docs": "cross-env webpack --config docs/webpack.config.js --mode production",
"serve": "cross-env webpack-dev-server --config docs/webpack.config.js --mode development --open --hot"
},
"repository": "github:rowanwins/vue-file-picker",
"author": "rowanwins",
"license": "MIT",
"keywords": [
"vuejs",
"vue",
"file-picker",
"drop"
],
"devDependencies": {
"autoprefixer": "^9.4.7",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-plugin-vue": "^5.1.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"vue": "^2.5.22",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}