-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "vue3-dropzone",
"version": "2.2.1",
"description": "",
"main": "dist/index.common.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.common.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "npm run build:cjs && npm run build:umd && npm run build:esm",
"build:cjs": "BUILD_FORMAT=cjs rollup --config rollup.config.js",
"build:umd": "BUILD_FORMAT=umd rollup --config rollup.config.js",
"build:esm": "BUILD_FORMAT=esm rollup --config rollup.config.js",
"test": "jest",
"release": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yaxian/vue3-dropzone.git"
},
"keywords": [
"vue3",
"dropzone",
"file-upload",
"vue3-dropzone"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yaxian/vue3-dropzone/issues"
},
"homepage": "https://github.com/Yaxian/vue3-dropzone#readme",
"peerDependencies": {
"vue": ">=3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/vue": "^6.3.1",
"@types/jest": "^26.0.20",
"@types/testing-library__jest-dom": "^5.9.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"jest-watch-typeahead": "^0.6.1",
"rollup": "^4.7.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^26.5.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vue": "^3.0.4"
},
"dependencies": {
"attr-accept": "^2.2.2",
"file-selector": "^0.2.4"
},
"files": [
"dist"
]
}