forked from malchata/yall.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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": "3.1.2",
"description": "Yet Another Lazy Loader",
"main": "./dist/yall.js",
"module": "./src/yall.mjs",
"jsnext:main": "./src/yall.mjs",
"scripts": {
"clean": "npx rimraf ./dist",
"lint": "npx eslint ./src/yall.mjs",
"test": "npm run lint && node http.js",
"build": "npm run clean && npx rollup -c",
"postinstall": "node -e \"console.log('\\u001b[31m\\u001b[1mHey, y\\'all! Thanks for using yall.js! This is version 3 and contains breaking changes from version 2. Read the README at:\\u001b[21m\\u001b[39m\\n > \\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": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"eslint": "^6.0.1",
"express": "^4.17.1",
"rimraf": "^2.6.3",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.0.0",
"rollup-plugin-terser": "^5.1.1"
},
"dependencies": {}
}