{"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"},{"name":"brianlagunas","email":"brian.lagunas@live.com"}],"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"dist-tags":{"latest":"1.7.0"},"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"description":"Vue.js wrapper for ApexCharts","readme":"<p align=\"center\"><img src=\"https://apexcharts.com/media/vue-apexcharts.png\"></p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/apexcharts/vue-apexcharts/blob/master/LICENSE\"><img src=\"https://img.shields.io/badge/License-MIT-brightgreen.svg\" alt=\"License\"></a>\n  <a href=\"https://travis-ci.com/apexcharts/vue-apexcharts\"><img src=\"https://api.travis-ci.com/apexcharts/vue-apexcharts.svg?branch=master\" alt=\"build\" /></a>\n  <a href=\"https://www.npmjs.com/package/vue-apexcharts\"><img src=\"https://img.shields.io/npm/v/vue-apexcharts.svg\" alt=\"ver\"></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://twitter.com/intent/tweet?text=Vue-ApexCharts%20A%20Vue.js%20Chart%20library%20built%20on%20ApexCharts.js&url=https://www.apexcharts.com&hashtags=javascript,charts,vue.js,vue,apexcharts\"><img src=\"https://img.shields.io/twitter/url/http/shields.io.svg?style=social\"> </a>\n</p>\n\n<p align=\"center\">Vue.js wrapper for <a href=\"https://github.com/apexcharts/apexcharts.js\">ApexCharts</a> to build interactive visualizations in vue.</p>\n\n<p align=\"center\"><a href=\"https://apexcharts.com/vue-chart-demos/\"><img src=\"https://apexcharts.com/media/apexcharts-banner.png\"></a></p>\n\n\n## Download and Installation\n\n##### Installing via npm\n\n```bash\nnpm install --save apexcharts\nnpm install --save vue-apexcharts\n```\n\n## Usage\n```js\nimport VueApexCharts from 'vue-apexcharts'\nVue.use(VueApexCharts)\n\nVue.component('apexchart', VueApexCharts)\n```\n\nTo create a basic bar chart with minimal configuration, write as follows:\n```vue\n<template>\n   <div>\n     <apexchart width=\"500\" type=\"bar\" :options=\"chartOptions\" :series=\"series\"></apexchart>\n   </div>\n</template>\n```\n\n```js\n\nexport default {\n    data: function() {\n      return {\n        chartOptions: {\n          chart: {\n            id: 'vuechart-example'\n          },\n          xaxis: {\n            categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998]\n          }\n        },\n        series: [{\n          name: 'series-1',\n          data: [30, 40, 35, 50, 49, 60, 70, 91]\n        }]\n      }\n    },\n};\n```\n\nThis will render the following chart\n<p><a href=\"https://apexcharts.com/javascript-chart-demos/column-charts/\"><img src=\"https://apexcharts.com/media/first-bar-chart.svg\"></a></p>\n\n### How do I update the chart?\n\nSimple! Just change the `series` or any `option` and it will automatically re-render the chart. <br/> Click on the below example to see this in action\n<p><a href=\"https://codesandbox.io/s/voyy36o7y\"><img src=\"https://apexcharts.com/media/vue-chart-updation.gif\"></a></p>\n\n```vue\n<template>\n   <div class=\"app\">\n     <apexchart width=\"550\" type=\"bar\" :options=\"chartOptions\" :series=\"series\"></apexchart>\n     <div>\n       <button @click=\"updateChart\">Update!</button>\n    </div>\n   </div>\n\n</template>\n```\n\n```js\nexport default {\n    data: function() {\n      return {\n        chartOptions: {\n          chart: {\n            id: 'vuechart-example',\n          },\n          xaxis: {\n            categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998],\n          },\n        },\n        series: [{\n          name: 'series-1',\n          data: [30, 40, 45, 50, 49, 60, 70, 81]\n        }]\n      }\n    },\n    methods: {\n      updateChart() {\n        const max = 90;\n        const min = 20;\n        const newData = this.series[0].data.map(() => {\n          return Math.floor(Math.random() * (max - min + 1)) + min\n        })\n\n        const colors = ['#008FFB', '#00E396', '#FEB019', '#FF4560', '#775DD0']\n\n        // Make sure to update the whole options config and not just a single property to allow the Vue watch catch the change.\n        this.chartOptions = {\n          colors: [colors[Math.floor(Math.random()*colors.length)]]\n        };\n        // In the same way, update the series option\n        this.series = [{\n          data: newData\n        }]\n      }\n    }\n};\n```\n\n\n**Important:** While updating the options, make sure to update the outermost property even when you need to update the nested property.\n\n✅ Do this\n```javascript\nthis.chartOptions = {...this.chartOptions, ...{\n    xaxis: {\n        labels: {\n           style: {\n             colors: ['red']\n           }\n        }\n    }\n}}\n```\n\n❌ Not this\n```javascript\nthis.chartOptions.xaxis = {\n    labels: {\n        style: {\n          colors: ['red']\n        }\n    }\n}}\n```\n\n## Props\n\n| Prop        | Type           | Description  |\n| ------------- |-------------| -----|\n| **series***| Array | The series is an array which accepts an object in the following format. To know more about the format of dataSeries, checkout [Series](https://apexcharts.com/docs/series/) docs on the website. |\n| **type*** | String  | `line`, `area`, `bar`, `pie`, `donut`, `scatter`, `bubble`, `heatmap`, `radialBar`, `candlestick`  |\n| **width** | Number/String  | Possible values for width can be `100%` or `400px` or `400` |\n| **height** | Number/String | Possible values for height can be `100%` or `300px` or `300` |\n| **options** | Object | The configuration object, see options on [API (Reference)](https://apexcharts.com/docs/options/chart/type/) |\n\n\n## Methods\n\nYou don't actually need to call updateSeries() or updateOptions() manually. Changing the props will automatically update the chart. You only need to call these methods to update the chart forcefully.\n\n| Method        | Description    |\n| ------------- | -----|\n| <a href=\"https://apexcharts.com/docs/methods/#updateSeries\">updateSeries</a> | Allows you to update the series array overriding the existing one |\n| <a href=\"https://apexcharts.com/docs/methods/#updateOptions\">updateOptions</a> | Allows you to update the configuration object |\n| <a href=\"https://apexcharts.com/docs/methods/#toggleSeries\">toggleSeries</a> | Allows you to toggle the visibility of series programatically. Useful when you have custom legend. |\n| <a href=\"https://apexcharts.com/docs/methods/#appendData\">appendData</a> | Allows you to append new data to the series array. |\n| <a href=\"https://apexcharts.com/docs/methods/#addtext\">addText</a> | The addText() method can be used to draw text after chart is rendered. |\n| <a href=\"https://apexcharts.com/docs/methods/#addxaxisannotation\">addXaxisAnnotation</a> | Draw x-axis annotations after chart is rendered. |\n| <a href=\"https://apexcharts.com/docs/methods/#addyaxisannotation\">addYaxisAnnotation</a> | Draw y-axis annotations after chart is rendered. |\n| <a href=\"https://apexcharts.com/docs/methods/#addpointannotation\">addPointAnnotation</a> | Draw point (xy) annotations after chart is rendered. |\n\nHow to call the methods mentioned above?\n\n```html\n<template>\n  <div class=\"example\">\n    <apexchart ref=\"demoChart\" width=\"500\" :options=\"chartOptions\" :series=\"series\"></apexchart>\n  </div>\n</template>\n\n<script>\n  functionName: function() {\n    this.$refs.demoChart.updateOptions({ colors: newColors })\n  },\n</script>\n```\n\n## How to call methods of ApexCharts without referencing the chart element?\n\nSometimes, you may want to call methods of the core ApexCharts library from some other place, and you can do so on `this.$apexcharts` global variable directly. You need to target the chart by <code>chart.id</code> while calling this method\n\nExample\n```js\nthis.$apexcharts.exec('vuechart-example', 'updateSeries', [{\n  data: [40, 55, 65, 11, 23, 44, 54, 33]\n}])\n```\nIn the above method, `vuechart-example` is the ID of chart, `updateSeries` is the name of the method you want to call and the third parameter is the new Series you want to update.\n\nMore info on the `.exec()` method can be found <a href=\"https://apexcharts.com/docs/methods/#exec\">here</a>\n\nAll other methods of ApexCharts can be called the same way.\n\n## What's included\n\nThe repository includes the following files and directories.\n\n```\nvue-apexcharts/\n├── dist/\n│   └── vue-apexcharts.js\n└── src/\n    ├── ApexCharts.component.js\n    ├── Utils.js\n    └── index.js\n```\n\n## Running the examples\n\nBasic Examples are included to show how to get started using ApexCharts with Vue easily.\n\nTo run the examples,\n```bash\ncd example\nnpm install\nnpm run serve\n```\n\n## Development\n\n#### Install dependencies\n\n```bash\nnpm install\n```\n\n#### Bundling\n\n```bash\nnpm run build\n```\n\n\n## Supporting ApexCharts\nApexCharts is an open source project. <br /> You can help by becoming a sponsor on <a href=\"https://patreon.com/junedchhipa\">Patreon</a> or doing a one time donation on <a href=\"https://paypal.me/junedchhipa\">PayPal</a> <br />\n\n<a href=\"https://patreon.com/junedchhipa\"><img src=\"https://c5.patreon.com/external/logo/become_a_patron_button.png\" alt=\"Become a Patron\" /> </a>\n\n## License\n\nVue-ApexCharts is released under MIT license. You are free to use, modify and distribute this software, as long as the copyright header is left intact.\n","repository":{"type":"git","url":"git+https://github.com/apexcharts/vue-apexcharts.git"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","versions":{"1.0.0":{"name":"vue-apexcharts","version":"1.0.0","description":"Vue.js wrapper for ApexCharts","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["Vue.js","apexcharts","vue"],"author":{"name":"ApexCharts"},"license":"MIT","dependencies":{"apexcharts":"^1.2.0"},"_id":"vue-apexcharts@1.0.0","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"7da6cf7dd1d21e3af2a31077f9872fee3bb9d760","size":2055,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.0.0.tgz","integrity":"sha512-nl7fXPqkg3FOL8fxmm4jjmNFav8Fl8kb58cY0Qg6r4GKf1s/15j6JcuFBay1nZT3eapsV35Fmwylf5CsPZSACg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.0.0_1533799098888_0.20598285339823486"},"_hasShrinkwrap":false,"publish_time":1533799098986,"_cnpm_publish_time":1533799098986,"_cnpmcore_publish_time":"2021-12-16T11:51:31.375Z"},"1.0.1":{"name":"vue-apexcharts","version":"1.0.1","description":"Vue.js wrapper for ApexCharts","main":"index.js","scripts":{"lint":"eslint src test","unit":"karma start","test":"npm run lint && npm run unit","bundle":"rollup src/index.js -f umd -n VueApexCharts -g apexcharts:ApexCharts -o dist/vue-apexcharts.js","build":"npm run bundle","preversion":"npm test","version":"npm run build && git add -A dist","postversion":"git push && git push --tags && npm publish"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","dependencies":{"apexcharts":"^1.2.0"},"peerDependencies":{"vue":">=1.0.0"},"devDependencies":{"chai":"^4.1.2","eslint":"^5.3.0","eslint-config-google":"^0.9.1","karma":"^2.0.5","karma-chai":"^0.1.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-mocha":"^1.3.0","karma-rollup-preprocessor":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","rollup-plugin-istanbul":"^2.0.1","uglify-js":"^3.4.6","vue":"^2.5.17"},"_id":"vue-apexcharts@1.0.1","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"981a6bef6a1c2ba5f69ef799381bf5e41895c570","size":4051,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.0.1.tgz","integrity":"sha512-cWD7g6AbYjBBrK6y/Uo+hWxn2Sw9l0ZRlLrJSRM1d8UqSe85lSvMVOHwaGhuEbkVKjSrGIZSH+nOa0kANNbbhQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.0.1_1533838768036_0.5829673151565071"},"_hasShrinkwrap":false,"publish_time":1533838768164,"_cnpm_publish_time":1533838768164,"_cnpmcore_publish_time":"2021-12-16T11:51:31.125Z"},"1.0.2":{"name":"vue-apexcharts","version":"1.0.2","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"lint":"eslint src test","unit":"karma start","test":"npm run lint && npm run unit","bundle":"rollup src/index.js -f umd -n VueApexCharts -g apexcharts:ApexCharts -o dist/vue-apexcharts.js","build":"npm run bundle","preversion":"npm test","version":"npm run build && git add -A dist","postversion":"git push && git push --tags && npm publish"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","dependencies":{"apexcharts":"^1.2.0"},"peerDependencies":{"vue":">=1.0.0"},"devDependencies":{"chai":"^4.1.2","eslint":"^5.3.0","eslint-config-google":"^0.9.1","karma":"^2.0.5","karma-chai":"^0.1.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-mocha":"^1.3.0","karma-rollup-preprocessor":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","rollup-plugin-istanbul":"^2.0.1","uglify-js":"^3.4.6","vue":"^2.5.17"},"_id":"vue-apexcharts@1.0.2","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"d8be9e225adcce880b52fa16ce37c0252ce1c9ce","size":4050,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.0.2.tgz","integrity":"sha512-Udym8kpAFbFZo4G2+poR0SYwY0svp4Auj+/9yLUdpzkTgxDPSTIp8Ze+KqHwzFk/haIWKt8DMTmTfpWas47jtQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.0.2_1533839373294_0.6924020692516626"},"_hasShrinkwrap":false,"publish_time":1533839373384,"_cnpm_publish_time":1533839373384,"_cnpmcore_publish_time":"2021-12-16T11:51:30.859Z"},"1.0.3":{"name":"vue-apexcharts","version":"1.0.3","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"unit":"karma start","test":"echo \"Error: no test specified\" && exit 1","bundle":"rollup src/index.js -f umd -n VueApexCharts -g apexcharts:ApexCharts -o dist/vue-apexcharts.js","build":"npm run bundle","preversion":"npm test","version":"npm run build && git add -A dist","postversion":"git push && git push --tags && npm publish"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","dependencies":{"apexcharts":"^1.2.0"},"peerDependencies":{"vue":">=1.0.0"},"devDependencies":{"rollup":"^0.64.1","rollup-plugin-istanbul":"^2.0.1","uglify-js":"^3.4.6","vue":"^2.5.17"},"gitHead":"49ebca669295a2ddc5626968e8273e57e5d8489a","_id":"vue-apexcharts@1.0.3","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"6a05760220165f97f698c01e14ea8551e8441979","size":4766,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.0.3.tgz","integrity":"sha512-aEfgyvsmj5yvv6iMeSnILx3zM0hHTv0gYDY8zyue2aWsHenOa8OnXpy+3zcaiMkSyQbXIYY/xmuvCb+6P7ya9Q=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.0.3_1533883574865_0.051691737235467494"},"_hasShrinkwrap":false,"publish_time":1533883575002,"_cnpm_publish_time":1533883575002,"_cnpmcore_publish_time":"2021-12-16T11:51:30.651Z"},"1.1.0":{"name":"vue-apexcharts","version":"1.1.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"unit":"karma start","test":"echo \"Error: no test specified\" && exit 1","bundle":"rollup src/index.js -f umd -n VueApexCharts -g apexcharts:ApexCharts -o dist/vue-apexcharts.js","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","dependencies":{"apexcharts":"^1.3.2"},"peerDependencies":{"vue":">=1.0.0"},"devDependencies":{"rollup":"^0.64.1","rollup-plugin-istanbul":"^2.0.1","uglify-js":"^3.4.6","vue":"^2.5.17"},"gitHead":"04069b8dcdf02c229bc6ea0e574d534877cf3300","_id":"vue-apexcharts@1.1.0","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"2d3a5bdfe057f0816aefa722a81d2cffa262bf64","size":15681,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.1.0.tgz","integrity":"sha512-gcCcFqKeDf785ZIj5gK3ZHUq18uRb4Suhlc2bDe+1EBsXOv9n3xAlE9c7ViZQ1rr52XsvRsPGysR4xiNU8TjLQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.1.0_1534401254789_0.18208386347615502"},"_hasShrinkwrap":false,"publish_time":1534401254921,"_cnpm_publish_time":1534401254921,"_cnpmcore_publish_time":"2021-12-16T11:51:30.442Z"},"1.1.1":{"name":"vue-apexcharts","version":"1.1.1","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup src/index.js -f umd -n VueApexCharts -g apexcharts:ApexCharts -o dist/vue-apexcharts.js","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","dependencies":{"apexcharts":"^1.4.2"},"peerDependencies":{"vue":">=1.0.0"},"devDependencies":{"rollup":"^0.64.1","rollup-plugin-istanbul":"^2.0.1","uglify-js":"^3.4.6","vue":"^2.5.17"},"gitHead":"69538ad1f54a3b6acc7f5809f67921bfbd68b8c4","_id":"vue-apexcharts@1.1.1","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"95f4d0ad5896310a1305a2c4e35f2cc24312967c","size":16251,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.1.1.tgz","integrity":"sha512-BW57E3cVHutZ0YVKQYnxVDDROXerg+l4fhm5eg6g0ujW0Xhv7sasxWPdB0hySAB95Mg1taQkqOB5jpHLmM7HOQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.1.1_1535959664445_0.8633887180945372"},"_hasShrinkwrap":false,"publish_time":1535959664596,"_cnpm_publish_time":1535959664596,"_cnpmcore_publish_time":"2021-12-16T11:51:30.167Z"},"1.1.2":{"name":"vue-apexcharts","version":"1.1.2","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^1.4.12"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"04c0617bb0cbde026c6caa171881507009eb6c70","_id":"vue-apexcharts@1.1.2","_npmVersion":"6.2.0","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"f8af85a2337661184c53d3d1efc611387a84c2ab","size":16826,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.1.2.tgz","integrity":"sha512-CqTOCA4yKjgpv+Wl/5sB/w0rrHUuL2EpZLkFkVfJ3AYE7I7ada+fdDqcswvw7rDAH0uX5HdAeW7eI1XO6e67JA=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.1.2_1538041123599_0.4648832608315734"},"_hasShrinkwrap":false,"publish_time":1538041123678,"_cnpm_publish_time":1538041123678,"_cnpmcore_publish_time":"2021-12-16T11:51:29.902Z"},"1.2.0":{"name":"vue-apexcharts","version":"1.2.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^1.4.12"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"fb939222258c231800b711fe00d35ad2128facb4","_id":"vue-apexcharts@1.2.0","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"0bd03fdfa0102f0527dbf2482cb63a12deb3ef7e","size":17023,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.0.tgz","integrity":"sha512-6h4/LqddfkCRv18CJjA9Jpig0Uc1JCdxOELHWT/en+jYMpc2jY6TksBHKJ42EY1u7ozBeVhOQDGyYNwpl0uRYg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.0_1538315059882_0.2762180520663742"},"_hasShrinkwrap":false,"publish_time":1538315060069,"_cnpm_publish_time":1538315060069,"_cnpmcore_publish_time":"2021-12-16T11:51:29.639Z"},"1.2.1":{"name":"vue-apexcharts","version":"1.2.1","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^1.4.12"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"5063b182ddf968529bb52c7b380dc5c98a650eea","_id":"vue-apexcharts@1.2.1","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"631e585576a481a484602309b06f1f7b8f2aad36","size":16763,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.1.tgz","integrity":"sha512-/4ai3IJuGwpuqNBmino2ZB2nOja6oaEYcLiQf6a9CxHJeX0yzFdS7rteslVTnWM/LISR93CGiFfZ4uzQx4OK4Q=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.1_1538322666166_0.8027020501350559"},"_hasShrinkwrap":false,"publish_time":1538322666347,"_cnpm_publish_time":1538322666347,"_cnpmcore_publish_time":"2021-12-16T11:51:29.035Z"},"1.2.2":{"name":"vue-apexcharts","version":"1.2.2","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.4"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"c626ec10d60761371e5e3f03052b7de14abef686","_id":"vue-apexcharts@1.2.2","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"98726d46081c50fc7c4b2a4818565a7d665ad625","size":17275,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.2.tgz","integrity":"sha512-ogyq36wufIkJwaOMt8Kwwpu5wAdJPlTn/3UdeJr1leS614cAfMRQENQ4lOlQUw/SX+29Xd5ZYLPeOx+WDud4Jg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.2_1539692588044_0.06388029352750313"},"_hasShrinkwrap":false,"publish_time":1539692588177,"_cnpm_publish_time":1539692588177,"_cnpmcore_publish_time":"2021-12-16T11:51:28.807Z"},"1.2.3":{"name":"vue-apexcharts","version":"1.2.3","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.6"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"eede8beec02298fbd85788fa015d3b88ca5dbde5","_id":"vue-apexcharts@1.2.3","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"08d0717cc1288858a95e1f276f269d0b13d2595c","size":18104,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.3.tgz","integrity":"sha512-QE5V4Zgp8DYtPLG2nX/C9wHbQBnMdU98cs2/G7rMBsvDoM8MSsqakmLSPgsnuxkYwID6iPhMWyIXlJXFi0giig=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.3_1541242598649_0.36060443293145483"},"_hasShrinkwrap":false,"publish_time":1541242598900,"_cnpm_publish_time":1541242598900,"_cnpmcore_publish_time":"2021-12-16T11:51:28.525Z"},"1.2.4":{"name":"vue-apexcharts","version":"1.2.4","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.6"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"f8486ee22d424aa8f5387c610d6fe035c34cdca2","_id":"vue-apexcharts@1.2.4","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"560243661bc2b3308ea8a2b1f43f68a69482e5ec","size":18256,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.4.tgz","integrity":"sha512-EeAduWGa53L0BPCHE99oPkuD4bupKNLx2pAtYrVmDX7NkkeDjnzt0PV2PBDdylzxlQkCvRCZ/ZkF5XMyy5bxRw=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.4_1541938603792_0.921283414252323"},"_hasShrinkwrap":false,"publish_time":1541938604064,"_cnpm_publish_time":1541938604064,"_cnpmcore_publish_time":"2021-12-16T11:51:28.188Z"},"1.2.5":{"name":"vue-apexcharts","version":"1.2.5","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.6"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"12c6c354227c35c2fd556c7ed66a5fc66fbde26f","_id":"vue-apexcharts@1.2.5","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"99db0a61d47b33f367b73594d27539c6a1fccaf4","size":18253,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.5.tgz","integrity":"sha512-Xfc6OZJDZmdEJMXAMtj3inHMGkp6J+wvgHctyYz3OIf9pY52lhOfedvj/fFrDVDEn41P0hQj84x2dLLPhzo9ow=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.5_1542007994677_0.25369599752803595"},"_hasShrinkwrap":false,"publish_time":1542007994940,"_cnpm_publish_time":1542007994940,"_cnpmcore_publish_time":"2021-12-16T11:51:27.921Z"},"1.2.6":{"name":"vue-apexcharts","version":"1.2.6","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.6"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"2fb592b813001c33a3483074cdc98f262c77b350","_id":"vue-apexcharts@1.2.6","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"4786e8bcbaab0468896ca962538899ad2dc7ede8","size":18279,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.6.tgz","integrity":"sha512-+5bofE8d0KmXPrIhEoIqrg++qM83OnfO5lIoXW+E5WUqPcP6Ep708DBIwg4KyAi7jIiazmBqHRoj7EWfaSa3gg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.6_1542018960607_0.4190821097486117"},"_hasShrinkwrap":false,"publish_time":1542018960802,"_cnpm_publish_time":1542018960802,"_cnpmcore_publish_time":"2021-12-16T11:51:27.714Z"},"1.2.7":{"name":"vue-apexcharts","version":"1.2.7","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.6"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"c3c1864bd1ffdc6e389efe3b148c372cc2e698f2","_id":"vue-apexcharts@1.2.7","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"8f124d0422b0572869db8d4cbebe8eb8e25bbe70","size":18294,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.7.tgz","integrity":"sha512-Zp7dh1S2i4a1kkzIzHlDlTplwblYDtmxBX68IxiJGTeGNmziqZN6Zlg4DHgEb8FnKyhIDfED9/UadD20kFtz6g=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.7_1542712492680_0.20157738415011028"},"_hasShrinkwrap":false,"publish_time":1542712492824,"_cnpm_publish_time":1542712492824,"_cnpmcore_publish_time":"2021-12-16T11:51:27.495Z"},"1.2.8":{"name":"vue-apexcharts","version":"1.2.8","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^2.1.6"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"e8b1827ba7ff13963d0a38406795133eef4154e0","_id":"vue-apexcharts@1.2.8","_npmVersion":"6.4.1","_nodeVersion":"8.9.4","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"b08303dd67b3cb4616f806f9a7466aa656eea21a","size":18454,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.8.tgz","integrity":"sha512-Sn7uyt3RLhYEVMbdqHrY9GMq35gPgOPP7ZQFEzWlXiMQ1816oabFppHSKoNIxREHjWpuUv+0InsxjK6XhzTZbQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.8_1546930760284_0.4498578194687617"},"_hasShrinkwrap":false,"publish_time":1546930760440,"_cnpm_publish_time":1546930760440,"_cnpmcore_publish_time":"2021-12-16T11:51:27.230Z"},"1.2.9":{"name":"vue-apexcharts","version":"1.2.9","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.0.0"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"b64a26a0277aa78b82ff7a7644df8455dba6432d","_id":"vue-apexcharts@1.2.9","_npmVersion":"6.5.0","_nodeVersion":"11.7.0","_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"dist":{"shasum":"ac2ca61536a0ba050b7effe876fcbb1d757a9dec","size":18475,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.2.9.tgz","integrity":"sha512-Xvp0kEEI+tqS+9yHoUXpf6Ne4gV6b8aNBmR1E5Dxlu9odZP8C43+hhE0Ce9tFZqWvFKiGxBjlBEN2NL3t26w1w=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.2.9_1549193586723_0.7950684711495013"},"_hasShrinkwrap":false,"publish_time":1549193586888,"_cnpm_publish_time":1549193586888,"_cnpmcore_publish_time":"2021-12-16T11:51:27.022Z"},"1.3.0":{"name":"vue-apexcharts","version":"1.3.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.0.0"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"0bb127fed303ae40e5b8bbe84f137fec6aa20fc8","_id":"vue-apexcharts@1.3.0","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"cf025dd02d3b01e24f8ca9912995f43f3ee7ebf0","size":20539,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.0.tgz","integrity":"sha512-dMnYtt9VpyN7qScSzYgLlGNvNw9u30ugiOAd9tKtpnz/Sjh7RLhV6+g5U/IMj8tniYJOvhCm7N/unmr01De+fw=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.0_1551153344646_0.34291145455920446"},"_hasShrinkwrap":false,"publish_time":1551153344761,"_cnpm_publish_time":1551153344761,"_cnpmcore_publish_time":"2021-12-16T11:51:26.368Z"},"1.3.1":{"name":"vue-apexcharts","version":"1.3.1","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.0.0"},"devDependencies":{"@babel/core":"^7.0.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.0.0","rollup":"^0.64.1","rollup-plugin-babel":"^4.0.3","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-eslint":"^5.0.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"9da36823e90aca55f4c57547fb2eb2451448dd4b","_id":"vue-apexcharts@1.3.1","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"284cc2e4466be3af3be82613ccdb6f8fa16ea2f3","size":20584,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.1.tgz","integrity":"sha512-pAVHBtJxvLlGnFpBSPeaKshwDRz5RZ/H1Kjc13j5MfPt0znNW1EKE4nmOWTPrqENbcQMQ3UyhnYt+9BdkhrwOw=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.1_1552230183026_0.1908382836660114"},"_hasShrinkwrap":false,"publish_time":1552230183141,"_cnpm_publish_time":1552230183141,"_cnpmcore_publish_time":"2021-12-16T11:51:26.141Z"},"1.3.2":{"name":"vue-apexcharts","version":"1.3.2","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.5"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"7f9b03af19400f3d3dac0376100cfb00f2ad013a","_id":"vue-apexcharts@1.3.2","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"f4c0475146d39a668983e7311244987da4a35176","size":21246,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.2.tgz","integrity":"sha512-3a3v6FKUlpD3BHWiDhuN/7Jcho9pE3+r6PEUccdzfpRFj0jn9W+zAHtaiKrdbBsTqXPKDfbd4dkT25SvBo/cxw=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.2_1554061596042_0.47023599734552035"},"_hasShrinkwrap":false,"publish_time":1554061596198,"_cnpm_publish_time":1554061596198,"_cnpmcore_publish_time":"2021-12-16T11:51:25.924Z"},"1.3.3":{"name":"vue-apexcharts","version":"1.3.3","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.5"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"7ed4028a9d13c57a2c31fb85e98a1c22593d36e6","_id":"vue-apexcharts@1.3.3","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"a157c66dc044096f872d1093eea538a41ad3ad0a","size":21547,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.3.tgz","integrity":"sha512-0ybT2UgrxAKYvdmgeUahltGlOOY9BozR6EUU1dMG4jJY/FIRHRx6yg88GHkg8P1DCCqabRDWRfeKFNTB7xrAmA=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.3_1554638293601_0.872356913548042"},"_hasShrinkwrap":false,"publish_time":1554638293756,"_cnpm_publish_time":1554638293756,"_cnpmcore_publish_time":"2021-12-16T11:51:25.555Z"},"1.3.4":{"name":"vue-apexcharts","version":"1.3.4","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"7b7df3f7d1c641ff8ca5edcd913f9de66497fec7","_id":"vue-apexcharts@1.3.4","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"6e2b162177fe7c81be9f1bb744dc420a495f6f78","size":21611,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.4.tgz","integrity":"sha512-oWIzBLQuK1S3aigpf5cNRDdDK83xRoQcOSMmvbnJFXrzl7lI5lw8VT9heeKGp2WgeOSo5nX93K+CrALdo2gG6Q=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.4_1554800597844_0.450672020164536"},"_hasShrinkwrap":false,"publish_time":1554800597992,"_cnpm_publish_time":1554800597992,"_cnpmcore_publish_time":"2021-12-16T11:51:25.335Z"},"1.3.5":{"name":"vue-apexcharts","version":"1.3.5","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"c0609d8ab527a2e7ba6ef58efe592c98c9bcd37c","_id":"vue-apexcharts@1.3.5","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"4c98c314ffdb6ea63c9354678bf93a666a859921","size":21598,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.5.tgz","integrity":"sha512-9UeY9013+BQfQbx7JrBjLiQf3wNa041OrfnC3F1onmsIY1z842xGMiRD60PqBSvc3wHzxYtKzj8LngSuDYWaCA=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.5_1557244594981_0.4805789845214823"},"_hasShrinkwrap":false,"publish_time":1557244595333,"_cnpm_publish_time":1557244595333,"_cnpmcore_publish_time":"2021-12-16T11:51:25.132Z"},"1.3.6":{"name":"vue-apexcharts","version":"1.3.6","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"c5e33c985f3258fa1aca58578708e052281fa564","_id":"vue-apexcharts@1.3.6","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"86417069a98c72f3cdf858245455fb1214d47d5f","size":21734,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.3.6.tgz","integrity":"sha512-SnThMhrGjBm9vCN0Kz5ToqI4NYj2pRCRNCyFYpu0TQKagV3lb44xSrzNcXx3HaLx7dJysvQy50MJYocsN6o0jQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.3.6_1560073237697_0.5543366914242789"},"_hasShrinkwrap":false,"publish_time":1560073237870,"_cnpm_publish_time":1560073237870,"_cnpmcore_publish_time":"2021-12-16T11:51:24.893Z"},"1.4.0":{"name":"vue-apexcharts","version":"1.4.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"c20d649dcdcc2921f1d047a2643009d3260dad3e","_id":"vue-apexcharts@1.4.0","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"a654ae51e5d47fe2ac9f8b4c3d1095426b09c808","size":21666,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.4.0.tgz","integrity":"sha512-x3HplG6UZ5ZEoyNYaFZlMUgijyBvkG65mB4AY4RMvEMMxp83kh0QZV8x47vimZ96K7vDkPeUrIH5Uy6FjSY8lg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.4.0_1560792741699_0.5155611485274849"},"_hasShrinkwrap":false,"publish_time":1560792742430,"_cnpm_publish_time":1560792742430,"_cnpmcore_publish_time":"2021-12-16T11:51:24.681Z"},"1.5.0":{"name":"vue-apexcharts","version":"1.5.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"c0864f0ae8ebcda4c28e05a03c4d4e887968c93f","_id":"vue-apexcharts@1.5.0","_nodeVersion":"11.7.0","_npmVersion":"6.8.0","dist":{"shasum":"55209d87f389a4929f888fb3a21ef3ddd7f8177d","size":21691,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.5.0.tgz","integrity":"sha512-BhwhC45vQkhcsYwDGXjVczGL1KReedu/4lNH+hr0SzKNL8FgK4BQZgE+BJHwBQ5gt1Bd9JYnwe/DPWumC7O3bg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.5.0_1567621995852_0.09654613020569269"},"_hasShrinkwrap":false,"publish_time":1567621996020,"_cnpm_publish_time":1567621996020,"_cnpmcore_publish_time":"2021-12-16T11:51:24.459Z"},"1.5.1":{"name":"vue-apexcharts","version":"1.5.1","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"2fda5eea285b35ee2f4010aaea641eb24291e257","_id":"vue-apexcharts@1.5.1","_nodeVersion":"10.16.3","_npmVersion":"6.9.0","dist":{"shasum":"f235d3c8047690f598864b70bd389081efff7576","size":126013,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.5.1.tgz","integrity":"sha512-faMfIj7g4MEceWjh5Aux7NfEdJYiSvMK6ml6UA2oeQH444kU4z532zR8P6AvCj0x6LzV2fgv2POzt0poMaoIjg=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.5.1_1572720762269_0.4775739090830611"},"_hasShrinkwrap":false,"publish_time":1572720762395,"_cnpm_publish_time":1572720762395,"_cnpmcore_publish_time":"2021-12-16T11:51:23.934Z"},"1.5.2":{"name":"vue-apexcharts","version":"1.5.2","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"5e241b06830b126a84e83ebae1373d0d8f98b191","_id":"vue-apexcharts@1.5.2","_nodeVersion":"10.16.3","_npmVersion":"6.13.4","dist":{"shasum":"d1f55b889718aa9e1c753e267c8cb59055ff89f3","size":124712,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.5.2.tgz","integrity":"sha512-m7IIyql4yU6cLTu5RODx3DcdxCekmNRzUh7lEoybq2MXcgabmBPhUn8qgXNx1HucWiMNOdXfwq/L6TfCbKnfMw=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.5.2_1578739288144_0.02119315057716653"},"_hasShrinkwrap":false,"publish_time":1578739288295,"_cnpm_publish_time":1578739288295,"_cnpmcore_publish_time":"2021-12-16T11:51:23.423Z"},"1.5.3":{"name":"vue-apexcharts","version":"1.5.3","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"1ff48090055142a6b7b8d8ec7cef69126dc7c1b4","_id":"vue-apexcharts@1.5.3","_nodeVersion":"10.16.3","_npmVersion":"6.13.7","dist":{"shasum":"9fde83727d944707da5c8c2fa9f09a051b48d082","size":124754,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.5.3.tgz","integrity":"sha512-ImbvQxgwbLMrEc9/veDIJ7lzncf1fJDSNqqK0x2YDNUCq5tE9uqM4Gb/ZYUB5WlDM3vDpzwDEmsidWcaO6/WXQ=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.5.3_1586023212812_0.7546233814444605"},"_hasShrinkwrap":false,"publish_time":1586023212983,"_cnpm_publish_time":1586023212983,"_cnpmcore_publish_time":"2021-12-16T11:51:22.663Z"},"1.6.0":{"name":"vue-apexcharts","version":"1.6.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.6.6"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"d20e1dc6fb55624f4b04994dc34a29d385024b30","_id":"vue-apexcharts@1.6.0","_nodeVersion":"12.18.2","_npmVersion":"6.14.5","dist":{"shasum":"c7d3afd93f712433d404e5ceeb4e3aa65f422af2","size":124731,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.6.0.tgz","integrity":"sha512-sT6tuVTLBwfH3TA7azecDNS/W70bmz14ZJI7aE7QIqcG9I6OywyH7x3hcOeY1v1DxttI8Svc5RuYj4Dd+A5F4g=="},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.6.0_1594639841566_0.816498509698234"},"_hasShrinkwrap":false,"publish_time":1594639841721,"_cnpm_publish_time":1594639841721,"_cnpmcore_publish_time":"2021-12-16T11:51:21.819Z"},"1.6.1":{"name":"vue-apexcharts","version":"1.6.1","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.26.0"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"bd116709b9630f219af398dc8d811cdbc70e3e73","_id":"vue-apexcharts@1.6.1","_nodeVersion":"12.0.0","_npmVersion":"6.9.0","dist":{"shasum":"21b7febbb81cb0d13a98fd01efba0300407b5d86","size":126450,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.6.1.tgz","integrity":"sha512-ILn3/55IvZQUgsc7+jKDjPfHfGUlcUQi/lDrLjRe5g7gfjj99o8otXoHwMeib3CBHYdQXNG9foe1vzv7RdUzXA=="},"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.6.1_1618164673948_0.8697326779549923"},"_hasShrinkwrap":false,"publish_time":1618164674128,"_cnpm_publish_time":1618164674128,"_cnpmcore_publish_time":"2021-12-16T11:51:20.952Z"},"1.6.2":{"name":"vue-apexcharts","version":"1.6.2","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":"^3.26.0"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^0.64.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"gitHead":"3cc50d557072c814f379910a7a864673d1212a3a","_id":"vue-apexcharts@1.6.2","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"0547826067f97e8ea67ca9423e524eb6669746ad","size":22170,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.6.2.tgz","integrity":"sha512-9HS3scJwWgKjmkcWIf+ndNDR0WytUJD8Ju0V2ZYcjYtlTLwJAf2SKUlBZaQTkDmwje/zMgulvZRi+MXmi+WkKw=="},"_npmUser":{"name":"junedchhipa","email":"support@apexcharts.com"},"directories":{},"maintainers":[{"name":"junedchhipa","email":"support@apexcharts.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.6.2_1627495854252_0.3919093791171053"},"_hasShrinkwrap":false,"publish_time":1627495854414,"_cnpm_publish_time":1627495854414,"_cnpmcore_publish_time":"2021-12-16T11:51:20.300Z"},"1.7.0":{"name":"vue-apexcharts","version":"1.7.0","description":"Vue.js wrapper for ApexCharts","main":"dist/vue-apexcharts.js","scripts":{"bundle":"rollup -c","build":"npm run bundle"},"repository":{"type":"git","url":"git+https://github.com/apexcharts/vue-apexcharts.git"},"keywords":["Vue.js","apexcharts","vue","charts","visualizations"],"author":{"name":"Juned Chhipa","email":"juned.chhipa@gmail.com"},"bugs":{"url":"https://github.com/apexcharts/vue-apexcharts/issues"},"license":"MIT","peerDependencies":{"apexcharts":">=4.0.0","vue":"^2.5.17"},"devDependencies":{"@babel/core":"^7.4.0","@babel/plugin-external-helpers":"^7.0.0","@babel/plugin-proposal-decorators":"^7.4.0","@babel/plugin-transform-runtime":"^7.0.0","@babel/preset-env":"^7.4.2","rollup":"^2.79.2","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.1.8","rollup-plugin-copy":"^0.2.3","rollup-plugin-eslint":"^5.1.0","rollup-plugin-istanbul":"^2.0.1","rollup-plugin-node-resolve":"^3.4.0","uglify-js":"^3.4.9","vue":"^2.5.17"},"_id":"vue-apexcharts@1.7.0","gitHead":"a65864c9b5ebf1605226059c2f7857d868b7aa1e","types":"./dist/vue-apexcharts.d.ts","homepage":"https://github.com/apexcharts/vue-apexcharts#readme","_nodeVersion":"22.2.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-QMpvBllJ1XvFsK4dwcbyxKalVpHfJnoqsNWszY55HJk/Sn7WP1f5YUv4JIzugqu4GTQB6gLcCVwwPDQFtwr0oQ==","shasum":"9087840c9068e39805f369d92f0e47a913955ad6","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-apexcharts/-/vue-apexcharts-1.7.0.tgz","fileCount":33,"unpackedSize":460596,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBp0XE3MGYqJ8+cRIkRnnydL0GsD7CLbTbQ80/ym4936AiEA9zxTMfx7A9HRuez9LBDcRf68TEh+X5HaoP9wFFWJzh0="}]},"_npmUser":{"name":"junedchhipa","email":"info@apexcharts.com"},"directories":{},"maintainers":[{"name":"brianlagunas","email":"blagunas@infragistics.com"},{"name":"junedchhipa","email":"info@apexcharts.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-apexcharts_1.7.0_1732243857606_0.43330587329404535"},"_hasShrinkwrap":false}},"name":"vue-apexcharts","time":{"created":"2022-01-27T14:40:36.595Z","modified":"2023-06-09T02:25:37.715Z","1.0.0":"2018-08-09T07:18:18.986Z","1.0.1":"2018-08-09T18:19:28.164Z","1.0.2":"2018-08-09T18:29:33.384Z","1.0.3":"2018-08-10T06:46:15.002Z","1.1.0":"2018-08-16T06:34:14.921Z","1.1.1":"2018-09-03T07:27:44.596Z","1.1.2":"2018-09-27T09:38:43.678Z","1.2.0":"2018-09-30T13:44:20.069Z","1.2.1":"2018-09-30T15:51:06.347Z","1.2.2":"2018-10-16T12:23:08.177Z","1.2.3":"2018-11-03T10:56:38.900Z","1.2.4":"2018-11-11T12:16:44.064Z","1.2.5":"2018-11-12T07:33:14.940Z","1.2.6":"2018-11-12T10:36:00.802Z","1.2.7":"2018-11-20T11:14:52.824Z","1.2.8":"2019-01-08T06:59:20.440Z","1.2.9":"2019-02-03T11:33:06.888Z","1.3.0":"2019-02-26T03:55:44.761Z","1.3.1":"2019-03-10T15:03:03.141Z","1.3.2":"2019-03-31T19:46:36.198Z","1.3.3":"2019-04-07T11:58:13.756Z","1.3.4":"2019-04-09T09:03:17.992Z","1.3.5":"2019-05-07T15:56:35.333Z","1.3.6":"2019-06-09T09:40:37.870Z","1.4.0":"2019-06-17T17:32:22.430Z","1.5.0":"2019-09-04T18:33:16.020Z","1.5.1":"2019-11-02T18:52:42.395Z","1.5.2":"2020-01-11T10:41:28.295Z","1.5.3":"2020-04-04T18:00:12.983Z","1.6.0":"2020-07-13T11:30:41.721Z","1.6.1":"2021-04-11T18:11:14.128Z","1.6.2":"2021-07-28T18:10:54.414Z","1.7.0":"2024-11-22T02:50:57.783Z"},"readmeFilename":"README.md","homepage":"https://github.com/apexcharts/vue-apexcharts#readme","_source_registry_name":"default"}