-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "native-lazy-loading",
"version": "2.0.0",
"description": "Add the loading attribute to completely defer the loading of offscreen images and iframes.",
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"LICENSE",
"index.js",
"runkitExample.js",
"types/index.d.ts"
],
"scripts": {
"build": "rm -f index.js && tsc",
"lint": "eslint .",
"lint:js": "eslint . --ext .js",
"lint:ts": "eslint . --ext .ts",
"test": "npm run test:eager && npm run test:lazy",
"test:eager": "mocha test/eager.js",
"test:lazy": "mocha test/lazy.js"
},
"repository": {
"type": "git",
"url": "https://github.com/samiahmedsiddiqui/native-lazy-loading.git"
},
"keywords": [
"native",
"lazy-loading",
"native-lazy-loading",
"lazysizes",
"web.dev",
"lazyload",
"data-src"
],
"author": "Sami Ahmed Siddiqui <sami.siddiqui@yasglobal.com> (https://www.yasglobal.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samiahmedsiddiqui/native-lazy-loading/issues"
},
"homepage": "https://github.com/samiahmedsiddiqui/native-lazy-loading#readme",
"runkitExampleFilename": "runkitExample.js",
"dependencies": {
"posthtml-parser": "0.10.2",
"posthtml-render": "3.0.0"
},
"devDependencies": {
"@types/node": "17.0.19",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"eslint": "8.9.0",
"mocha": "9.2.1",
"tsd": "0.19.1",
"typescript": "4.5.5"
}
}