-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "st-lazy",
"version": "2.1.0",
"description": "Web components for lazy loading - you can use them everywhere, without any dependency. Contains also @Lazy decorator for Stenciljs to call annotated method when component is scrolled to viewport. Web components are based on @Lazy",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"unpkg": "dist/index.js",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "npm install && stencil build --es5 --docs",
"start": "stencil build --watch --serve",
"dev": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"dependencies": {},
"devDependencies": {
"@stencil/core": "^0.18.0"
},
"engines": {
"node": "9.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jarrvis/st-lazy"
},
"keywords": [
"Stencil",
"decrator",
"Web components",
"scroll",
"lazy loading",
"IntersectionObserver",
"st-img"
],
"author": "Michał Kaliszewski",
"license": "MIT",
"bugs": {
"url": "https://github.com/jarrvis/st-lazy"
},
"homepage": "https://github.com/jarrvis/st-lazy"
}