-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "vue-filepond",
"version": "7.0.4",
"description": "A handy FilePond adapter component for Vue",
"homepage": "https://pqina.nl/filepond",
"license": "MIT",
"repository": "pqina/vue-filepond",
"main": "dist/vue-filepond.js",
"browser": "dist/vue-filepond.js",
"module": "dist/vue-filepond.esm.js",
"unpkg": "dist/vue-filepond.min.js",
"types": "types/index.d.ts",
"peerDependencies": {
"filepond": ">=4.7.4 < 5.x",
"vue": ">=3 < 4"
},
"files": [
"dist",
"types/*.d.ts"
],
"keywords": [
"vue",
"vuejs",
"filepond",
"file",
"upload",
"drag",
"drop",
"browse",
"image",
"preview"
],
"author": {
"name": "PQINA",
"url": "https://pqina.nl"
},
"scripts": {
"build": "mkdirp dist && npm run build:browser && npm run build:module",
"build:browser": "babel lib | bannerjs -m > dist/vue-filepond.js",
"postbuild:browser": "uglifyjs dist/vue-filepond.js --compress --comments '/^!/' --output dist/vue-filepond.min.js",
"build:module": "cat lib/index.js | bannerjs -m > dist/vue-filepond.esm.js",
"build:watch": "nodemon --watch lib -x \"npm run build\"",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-modules-umd": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"bannerjs": "^1.0.7",
"filepond": "4.9.3",
"minicat": "^1.0.0",
"mkdirp": "^0.5.1",
"nodemon": "^2.0.2",
"replace": "^1.2.0",
"typescript": "^3.7.4",
"uglify-js": "^3.7.3",
"vue": "2.6.11"
}
}