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.47 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": "12.4.0",
"description": "A fast, lightweight script to load images as they enter the viewport. SEO friendly, it supports responsive images (both srcset + sizes and picture) and progressive JPEG",
"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.6.4",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-rename": "^1.4.0",
"gulp-rollup": "^2.16.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify-es": "^1.0.4",
"jest": "^24.9.0"
},
"scripts": {
"build": "gulp",
"dev": "gulp watch",
"test": "jest"
},
"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": "andrea.verlicchi@gmail.com",
"url": "http://andreaverlicchi.eu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/verlok/lazyload/issues"
},
"homepage": "http://verlok.github.io/lazyload"
}