-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "@zalari/custom-element-loader-prototype",
"version": "0.1.0",
"description": "This is a prototype for dynamically loading CustomElements and re-applying them instantly for instant updates.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html",
"prestart:examples": "shx cp -f dist/index.js src/examples/dist/index.js",
"start:examples": "http-server src/examples -c-1 -p 9000",
"build": "parcel build src/index.ts",
"parcel": "parcel",
"http-server": "http-server",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git@git.zalari.de:zalari/prototypes/custom-element-loader-prototype.git"
},
"keywords": [
"custom",
"element",
"custom",
"elements",
"web",
"components",
"prototype",
"zalari"
],
"author": "Christian Ulbrich <christian.ulbrich@zalari.de>",
"license": "MIT",
"devDependencies": {
"@zalari-oss/ce-hello-world-pure": "^0.1.0",
"http-server": "^0.12.1",
"parcel-bundler": "^1.12.4",
"shx": "^0.3.2",
"typescript": "^3.7.5"
}
}