-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 KB
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
{
"name": "util-web-components",
"version": "1.1.1",
"description": "A collection of utility web components.",
"author": {
"name": "Manaday K. Mavani",
"email": "m.k.mavani@gmail.com",
"url": "https://twitter.com/manadaym"
},
"keywords": [
"utility",
"web components",
"stencil"
],
"homepage": "https://github.com/ManadayM/util-web-components",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/util-web-components/util-web-components.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"dependencies": {
"@stencil/core": "1.17.2",
"intersection-observer": "0.11.0"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "25.2.3"
}
}