-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "@epa-wg/custom-element",
"version": "0.0.32",
"description": "Declarative Custom Element as W3C proposal PoC with native(XSLT) based templating",
"browser": "custom-element.js",
"module": "custom-element.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json",
"./CustomElement": "./custom-element.js"
},
"files": [
"*"
],
"scripts": {
"dev:help": "echo \"needed for sandbox demo\"",
"dev": "bash bin/stackblitz.sh",
"start": "npm i --no-save @web/dev-server && web-dev-server --node-resolve",
"test": "echo \"test would reside in https://github.com/EPA-WG/custom-element-dist\" && exit 0",
"typings": "npx -p typescript tsc custom-element.js --declaration --allowJs --emitDeclarationOnly "
},
"type": "module",
"types": "./custom-element.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/EPA-WG/custom-element.git"
},
"keywords": [
"WebComponent",
"Declarative Custom Element",
"XSLT",
"JS",
"javascript"
],
"author": {
"name": "Sasha Firsov",
"email": "[email protected]",
"url": "https://blog.firsov.net/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/EPA-WG/custom-element/issues"
},
"homepage": "https://github.com/EPA-WG/custom-element#readme",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/sashafirsov"
},
"web-types": ["./ide/web-types-dce.json","./ide/web-types-xsl.json"],
"dependencies": {
}
}