-
-
Notifications
You must be signed in to change notification settings - Fork 676
/
Copy pathpackage.json
67 lines (67 loc) · 2.09 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
65
66
67
{
"name": "vanilla-lazyload",
"version": "17.3.0",
"description": "LazyLoad is a lightweight (2.4 kB) and flexible script that speeds up your web application by deferring the loading of your below-the-fold images, videos and iframes to when they will enter the viewport. It's written in plain \"vanilla\" JavaScript, it leverages the IntersectionObserver API, it supports responsive images, it optimizes your website for slower connections, and can enable native lazy loading.",
"main": "dist/lazyload.min.js",
"module": "dist/lazyload.esm.js",
"browser": "dist/lazyload.min.js",
"typings": "typings/lazyload.d.ts",
"dependencies": {
"caniuse-lite": "^1.0.30001161"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-node-resolve": "^7.1.3",
"jest": "^25.5.4",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.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/vanilla-lazyload"
},
"keywords": [
"lazyload",
"vanilla",
"responsive",
"images",
"picture",
"srcset",
"sizes",
"native",
"SEO",
"intersectionObserver",
"progressive",
"performance",
"perfmatters",
"async",
"no-jquery"
],
"author": {
"name": "Andrea \"verlok\" Verlicchi",
"email": "andrea.verlicchi@gmail.com",
"url": "https://www.andreaverlicchi.eu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/verlok/vanilla-lazyload/issues"
},
"homepage": "https://www.andreaverlicchi.eu/vanilla-lazyload",
"funding": {
"type": "individual",
"url": "https://ko-fi.com/verlok"
}
}