-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "@47deg/robeen",
"version": "0.0.3",
"description": "The graphical companion for Hood JMH benchmarks",
"keywords": [
"Stencil",
"web component",
"D3.js",
"Hood",
"JMH",
"benchmark",
"graph",
"charts"
],
"author": "47deg",
"contributors": [
"Juan Valencia Calvellido <[email protected]> (https://calvellido.es)"
],
"repository": "47degrees/robeen",
"license": "Apache-2.0",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"jsnext:main": "dist/esm/index.mjs",
"main": "dist/index.js",
"unpkg": "dist/robeen/robeen.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"devDependencies": {
"@stencil/core": "1.12.6"
},
"dependencies": {
"d3": "5.9.2"
}
}