forked from verlok/vanilla-lazyload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
64
{
"name": "vanilla-lazyload",
"version": "16.0.0",
"description": "LazyLoad is a lightweight (2.4 kB), flexible script that speeds up your website by deferring the loading of your below-the-fold images, backgrounds, videos, iframes and scripts to when they will enter the viewport. Written in plain \"vanilla\" JavaScript, it leverages IntersectionObserver, supports responsive images and enables native lazy loading.",
"main": "dist/lazyload.min.js",
"module": "dist/lazyload.esm.js",
"browser": "dist/lazyload.min.js",
"typings": "typings/lazyload.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"jest": "^25.1.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "jest",
"devtest": "jest --watch"
},
"files": [
"dist",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/verlok/lazyload"
},
"keywords": [
"lazyload",
"vanilla",
"responsive",
"images",
"picture",
"srcset",
"SEO",
"intersectionObserver",
"sizes",
"progressive",
"performance",
"perfmatters",
"async",
"no-jquery"
],
"author": {
"name": "Andrea \"verlok\" Verlicchi",
"email": "[email protected]",
"url": "https://www.andreaverlicchi.eu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/verlok/lazyload/issues"
},
"homepage": "http://verlok.github.io/lazyload",
"funding": {
"type": "individual",
"url": "https://ko-fi.com/verlok"
}
}