-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "yall-js",
"version": "4.0.2",
"description": "Yet Another Lazy Loader",
"type": "module",
"source": "./src/index.js",
"exports": "./dist/yall.mjs",
"main": "./dist/yall.cjs",
"module": "./dist/yall.js",
"unpkg": "./dist/yall.umd.js",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && npx microbundle && npm run copy",
"copy": "cp -v dist/yall.js ./test/js/yall.js && cp -v dist/yall.js.map ./test/js/yall.js.map",
"dev": "npm run clean && npx microbundle watch",
"lint": "npx eslint ./src/**.js ./src/**/*.js",
"test": "npm run lint && npm run build && node ./http.js",
"postinstall": "node -e \"console.log('\\u001b[31m\\u001b[1mThanks for using yall.js! This is version 4, which remove support for lazy loading img, picture, and iframe elements. You should use native lazy loading for those use cases. Learn more at \\u001b[34mhttps://github.com/malchata/yall.js\\u001b[0m')\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/malchata/yall.js.git"
},
"keywords": [
"lazy load",
"lazy loader",
"lazy loading",
"intersection observer",
"IntersectionObserver",
"mutation observer",
"MutationObserver",
"requestIdleCallback",
"images",
"video",
"iframe",
"web performance",
"requestAnimationFrame"
],
"author": "Jeremy L. Wagner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/malchata/yall.js/issues"
},
"homepage": "https://github.com/malchata/yall.js#readme",
"devDependencies": {
"eslint": "^8.16.0",
"express": "^4.18.1",
"microbundle": "^0.15.0"
},
"files": [
"dist"
]
}