forked from vb/lazyframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "lazyframe",
"description": "Dependency-free library for lazyloading iframes",
"version": "2.2.7",
"author": "Viktor Bergehall",
"bugs": {
"url": "https://github.com/vb/lazyframe/issues"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/preset-env": "^7.12.17",
"@rollup/plugin-babel": "^5.3.0",
"ava": "^3.15.0",
"jsdom": "15",
"rollup": "^2.39.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.42.1"
},
"homepage": "https://vb.github.io/lazyframe",
"jsnext:main": "src/lazyframe.js",
"keywords": [
"embed",
"iframe",
"javascript",
"lazyload",
"lazyloading",
"pageload",
"pagespeed",
"vimeo",
"youtube"
],
"license": "MIT",
"main": "dist/lazyframe.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vb/lazyframe.git"
},
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"dev": "./node_modules/.bin/rollup -c -w",
"test": "npm run build && ava -s",
"test:watch": "npm run build && ava -s -w"
},
"files": [
"dist",
"src"
],
"dependencies": {}
}