-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
60 lines (60 loc) · 1.52 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-picture-input",
"version": "3.0.1",
"description": "Mobile-friendly picture file input component with image preview and drag and drop.",
"main": "PictureInput.vue",
"scripts": {
"test": "jest",
"build": "export NODE_OPTIONS=--openssl-legacy-provider; poi --prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alessiomaffeis/vue-picture-input.git"
},
"keywords": [
"vue",
"picture",
"image",
"input",
"preview",
"form",
"upload"
],
"author": "alessio@maffe.is",
"license": "MIT",
"bugs": {
"url": "https://github.com/alessiomaffeis/vue-picture-input/issues"
},
"homepage": "https://github.com/alessiomaffeis/vue-picture-input",
"devDependencies": {
"@vue/test-utils": "^1.0.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"jest": "^29.6.1",
"jest-serializer-vue": "^3.1.0",
"poi": "^12.10.3",
"vue": "^2.7.0",
"vue-jest": "^3.0.7",
"vue-server-renderer": "^2.5.13",
"vue-template-compiler": "^2.5.13"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"unpkg": "umd/vue-picture-input.js",
"jsdelivr": "umd/vue-picture-input.js"
}