forked from alexjoverm/v-lazy-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "v-lazy-image",
"version": "1.4.0",
"description": "A Vue.js component to lazy load images using the Intersection Observer.",
"main": "dist/v-lazy-image.cjs.js",
"module": "dist/v-lazy-image.es.js",
"unpkg": "dist/v-lazy-image.js",
"browser": "dist/v-lazy-image.es.js",
"author": {
"name": "Alex Jover Morales",
"email": "[email protected]"
},
"scripts": {
"build": "rollit",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexjoverm/v-lazy-image.git"
},
"keywords": [
"vue",
"js",
"lazy",
"load",
"image",
"intersection",
"observer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexjoverm/v-lazy-image/issues"
},
"homepage": "https://github.com/alexjoverm/v-lazy-image#readme",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"intersection-observer": "^0.5.1",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"rollit": "0.0.8"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"snapshotSerializers": [
"jest-serializer-vue"
]
}
}