-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "loading-attribute-polyfill",
"version": "2.1.1",
"description": "Fast and lightweight dependency-free vanilla JavaScript polyfill for native lazy loading / the awesome loading='lazy'-attribute.",
"source": "./src/loading-attribute-polyfill.js",
"browser": "./dist/loading-attribute-polyfill.js",
"esmodule": "./dist/loading-attribute-polyfill.modern.js",
"module": "./dist/loading-attribute-polyfill.module.js",
"umd:main": "./dist/loading-attribute-polyfill.umd.js",
"repository": {
"type": "git",
"url": "git://github.com/mfranzke/loading-attribute-polyfill.git"
},
"author": "Maximilian Franzke",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"lazy loading",
"native lazy loading",
"img",
"image",
"iframe",
"polyfill",
"web development",
"javascript",
"html",
"front-end"
],
"bugs": {
"url": "https://github.com/mfranzke/loading-attribute-polyfill/issues"
},
"homepage": "https://mfranzke.github.io/loading-attribute-polyfill/demo/",
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@wdio/cli": "^8.0.0",
"@wdio/dot-reporter": "^8.0.0",
"@wdio/local-runner": "^8.0.0",
"@wdio/mocha-framework": "^8.0.0",
"html-validate": "^8.0.0",
"husky": "^8.0.0",
"microbundle": "^0.15.0",
"np": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"pretty-quick": "^3.1.1",
"xo": "^0.54.0"
},
"scripts": {
"test": "run-p validate:* lint:*",
"lint:xo": "xo src/loading-attribute-polyfill.js",
"validate:html": "html-validate demo/index.html",
"test:wdio": "wdio run webdriverio-tests/wdio.conf-crossbrowsertesting.js",
"build": "microbundle",
"dev": "microbundle watch",
"release": "np",
"prepare": "husky install"
}
}