-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "throughput-widget",
"version": "1.0.7",
"private": false,
"description": "Throughput Annotation Widget",
"keywords": [
"throughput",
"EarthCube"
],
"repository": {
"type": "git",
"url": "https://github.com/throughput-ec/widget"
},
"license": "MIT",
"author": "Throughput",
"homepage": "https://throughput-ec.github.io/",
"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/throughputwidget/throughputwidget.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"
},
"devDependencies": {
"@stencil/core": "1.16.3"
},
"dependencies": {
"jsrsasign": "^10.4.1",
"jsrsasign-util": "^1.0.5"
}
}