-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "custom-elements-ts",
"version": "0.0.16",
"description": "Create native Custom Elements using Typescript without using any third party libraries",
"main": "index.js",
"module": "custom-element.js",
"scripts": {
"build": "node tools/build.js",
"start": "node tools/start.js",
"bundle": "node tools/bundle.js",
"test": "aria test tests",
"serve.coverage": "aria serve --test-coverage",
"coveralls": "cat ./node_modules/.tmp/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"components",
"custom",
"dom",
"elements",
"web",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@ngx-devtools/server": "beta",
"@types/jasmine": "2.8.8",
"@webcomponents/custom-elements": "1.2.2",
"aria-tools": "0.0.2",
"coveralls": "^3.0.2",
"event-stream": "3.3.4",
"magic-string": "0.25.3",
"typescript": "^3.3.3333"
},
"typings": "index.d.ts",
"contributors": [
"Aivan Monceller",
"Arjay Elbore",
"Martin Llaneza"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geocine/custom-elements-ts.git"
},
"homepage": "https://geocine.github.io/custom-elements-ts/"
}