-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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-progressive-image",
"version": "4.0.0",
"description": "Vue progressive image loading plugin",
"main": "./dist/vue-progressive-image.umd.js",
"module": "./dist/vue-progressive-image.es.js",
"unpkg": "./dist/vue-progressive-image.umd.js",
"jsdelivr": "./dist/vue-progressive-image.umd.js",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:update": "vitest --update",
"dev": "cross-env NODE_ENV=development vite build --watch",
"build": "cross-env NODE_ENV=production vite build",
"prepublish": "yarn test && yarn build"
},
"author": {
"name": "Matteo Gabriele",
"email": "[email protected]"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/MatteoGabriele/vue-progressive-image"
},
"keywords": [
"progressive",
"image",
"img",
"lazy loading"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/MatteoGabriele/vue-progressive-image/issues"
},
"homepage": "https://github.com/MatteoGabriele/vue-progressive-image#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/test-utils": "^2.0.0-rc.18",
"c8": "^7.11.2",
"cross-env": "^7.0.3",
"jsdom": "^19.0.0",
"vite": "^2.7.12",
"vitest": "^0.1.27",
"vue": "^3.2.25"
},
"peerDependencies": {
"vue": "^3.2.0"
}
}