web-assets/lazyload/v17/package.json
2023-12-30 22:34:25 +01:00

65 lines
1.8 KiB
JSON

{
"name": "vanilla-lazyload",
"version": "17.8.3",
"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",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"jest": "^27.2.1",
"rollup": "^2.44.0",
"rollup-plugin-terser": "^7.0.2"
},
"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"
}
}