-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "vue-file-drag-and-drop",
"version": "0.1.2",
"license": "MIT",
"description": "Vue component that provides a convenient use of the HTML drag and drop interface",
"author": "Salih Candir <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve src/main.js",
"build:lib": "vue-cli-service build --target lib --name vue-file-drag-and-drop src/lib.js",
"lint": "yarn lint:es && yarn lint:style",
"lint:es": "vue-cli-service lint --fix",
"lint:style": "prettier --write --ignore-unknown .",
"lint:check": "vue-cli-service lint --no-fix && prettier --check --ignore-unknown ."
},
"main": "./dist/vue-file-drag-and-drop.common.js",
"files": [
"dist/*",
"src/*",
"README.md"
],
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.2",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"autoprefixer": "^9",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^6.2.2",
"postcss": "^7",
"prettier": "2.4.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"vue": "^2.6.11",
"vue-cli-plugin-tailwind": "~2.0.6",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"keywords": [
"vue",
"vuejs",
"drag-and-drop",
"file",
"image",
"tailwind"
],
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/CSalih/vue-file-drag-and-drop.git"
},
"bugs": {
"url": "https://github.com/CSalih/vue-file-drag-and-drop/issues"
},
"homepage": "https://github.com/CSalih/vue-file-drag-and-drop#readme"
}