-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.37 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
53
54
{
"name": "stencil-apexcharts",
"version": "2.3.0",
"description": "Stencil Component for ApexCharts",
"author": {
"name": "Mikael Karon",
"email": "[email protected]",
"url": "https://mikael.karon.se"
},
"repository": {
"type": "git",
"url": "https://github.com/apexcharts/stencil-apexcharts.git"
},
"keywords": [
"apexcharts",
"stencil",
"charts",
"data-visualization",
"web components"
],
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/stencil-apexcharts-new/stencil-apexcharts-new.esm.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",
"release": "standard-version"
},
"peerDependencies": {
"apexcharts": "^3.26.1"
},
"devDependencies": {
"@stencil/core": "^2.5.2",
"standard-version": "^9.2.0"
},
"license": "MIT",
"standard-version": {
"scripts": {
"prerelease": "npm run build"
}
}
}