{"maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"dist-tags":{"latest":"13.1.0"},"author":{"name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com","url":"https://ashish-chopra.github.io"},"description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","readme":"# ngx-gauge\n<!-- [![Build Status](https://travis-ci.org/ashish-chopra/ngx-gauge.png?branch=master)](https://travis-ci.org/ashish-chopra/ngx-gauge) -->\n![npm](https://img.shields.io/npm/v/ngx-gauge)\n![npm](https://img.shields.io/npm/dm/ngx-gauge)\n[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/ashish-chopra/ngx-gauge/issues)\n![NPM](https://img.shields.io/npm/l/ngx-gauge)\n\nA highly customizable Gauge component for **Angular** apps and dashboards. It provides many configurationable options to customize according to your needs. Checkout the live demo [here](https://ashish-chopra.github.io/ngx-gauge). (For older versions of Angular, check out the [compatibility matrix](#compatibility) below).\n\n![alt text](https://raw.githubusercontent.com/ashish-chopra/angular-gauge/master/examples/examples.png)\n\nIn version `v5.0.0`, we introduced markers, ticks and background opacity for gauge as shown below. Checkout the documentation below.\n<img src=\"https://raw.githubusercontent.com/ashish-chopra/ashish-chopra.github.io/master/src/assets/demo2.png\" alt=\"markers demo\" width=\"300px\" />\n<img src=\"https://raw.githubusercontent.com/ashish-chopra/ashish-chopra.github.io/master/src/assets/demo1.png\" alt=\"markers demo\" width=\"300px\" />\n\n# Getting Started\n\n#### <a name=\"compatibility\"></a>Angular Version Compatibility Table\n\n| Angular Version | ngx-gauge Version |\n|--- |--- |\n|6.0 | - |\n|7.0 | - |\n|8.0| 1.0.0-beta.12 |\n|9.0 | 1.1.0 |\n|10.x.x | 2.0.0 |\n|11.x.x | 3.0.0 |\n|12.x.x | 4.0.0 |\n|13.x.x | 5.0.0 |\n|14.x.x | 6.0.0 |\n|15.x.x | 7.0.0 |\n|16.x.x | 8.0.0 |\n|17.x.x | 9.0.0 |\n|18.x.x | 10.0.0 |\n|19.x.x | 11.0.0 |\n|20.x.x | 12.0.0 |\n|21.x.x | 13.0.0 |\n\n#### Step 1: Install npm module\n\nFor latest version use the command:\n\n```bash\nnpm install ngx-gauge\n```\n\nFor a specific version for an older Angular version as per [Compatibility table](#compatibility) above, use command:\n\n```bash\nnpm install --save ngx-gauge@<version>\n```\n\n#### Step 2: Import the _NgxGaugeModule_\n\n```ts\nimport { NgxGaugeModule } from 'ngx-gauge';\n\n@NgModule({\n    ...\n    imports: [NgxGaugeModule],\n    ...\n})\nexport class AppModule { }\n\n```\n\nBe sure to import `NgxGaugeModule` after Angular's `BrowserModule`, as the import order matters for _NgModules_.\n\n#### Step 3: Use gauge component in HTML\n\n`NgxGaugeModule` provides a `<ngx-gauge>` component which can be used in any angular template to render a gauge.\nIt's configuration properties can be bind to a typescript variable as shown below:\n\n```ts\nimport { Component } from '@angular/core';\n\n@Component({\n    selector: 'app-component',\n    templateUrl: 'app.html'\n})\nexport class AppComponent {\n    \n    gaugeType = \"semi\";\n    gaugeValue = 28.3;\n    gaugeLabel = \"Speed\";\n    gaugeAppendText = \"km/hr\";\n}\n```\n\n```html\n<ngx-gauge [type]=\"gaugeType\" \n           [value]=\"gaugeValue\" \n           [label]=\"gaugeLabel\"  \n           [append]=\"gaugeAppendText\">\n</ngx-gauge>\n```\n\nCheckout the extensive list of configuration properites given below and try them to acheive your desired customization. In case you face any problem, then raise an issue [here](https://github.com/ashish-chopra/ngx-gauge/issues).\n\n# Configuration Properties\n\nThere are plenty of configurable properties available to tune the gauge as per your needs.\n\n| Name      | Description  | Required  | Default value  | Possible values |\n| ---       | ---          | ---       | ---               | ---            |\n| `size`    | Specifies the size of the canvas in which Gauge will be drawn. It is used as `width` and `height` both. | No       | `200` | Positive Integer           |\n| `type`      | Specifies the gauge's type.                     | No        | `\"arch\"`     |  `\"full\"`, `\"semi\"`, `\"arch\"`  |\n| `min`  | Specifies the minimum numeric value for gauge's scale.  | No     | `0`  | Any numeric value  |\n| `max` | Specified the maximum numeric value for gauge's scale. | No       | `100`  | Any numeric value  |\n| `value`          | Specifies the current value of the Gauge in the range specified by `min` and `max`. It is a required attribute.       | Yes       | `undefined`  | Any numeric value |\n| `cap`       | The style of line ending at the gauge's end.    | No        | `\"butt\"`    | `\"round\"`, `\"butt\"`           |\n| `thick`        | Specified the thickness of the gauge's bar.            | No        | `6`        | Any Positive Integer |\n| `label`       | Specifies the text to display below the Gauge's reading.  | No  | `undefined`                | Any String           |\n| `foregroundColor`         | Specifies the foreground color of the Gauge's scale.                    | No       | `rgba(0, 150, 136, 1)`             |   Any color value string       |\n| `backgroundColor`    | Specifies the background color of the Gauge's scale.| No        |    `rgba(0, 0, 0, 0.1)`           |    Any color value string        |\n| `append`   | Specifies a `string` appended to the Gauge's reading. For example `\"%\"` most commonly used. | No        | `undefined`        | Any string           |\n| `prepend`      | Specifies a `string` prepended to the Gauge's reading. For example `\"$\"` in case of financial data displayed in Gauge.                                        | No        | `undefined`            | Any String           |\n| `duration`    | Specifies the duration (in milliseconds) of the Gauge's animation | No       | `1500` | Positive Integer           |\n| `thresholds` | Specifies an object of threshold values at which the gauge's color changes. Checkout an example [here](#configure-threshold-color-ranges).  | No |  `none` | {}\n| `markers` | Specifies an object of marker values at which value to place a marker. Can be a line or triangle and optionally may specify color, size and label. Note if you use labels you should add to margin value to the gauge using the margin option | No | A special object of the format shown. Currently type supports \"line\" or \"triangle\" marker. ```{ \"50\": { color: \"#555\", type: \"triangle\", size: 8, label: \"Goal\", font: \"12px arial\" } , ... }``` | {} |\n| `margin` | Specifies an optional margin for the gauge. | No | 0 | Positive Integer |\n| `animate` | toggles the gauge animation.  | No |  `true` | boolean\n| `aria-label` | Specifies the label used by screen readers | No | `undefined` | Any String\n| `aria-labelledby` | Specifies the ID of any external element to be used as label by screen readers | No | `null` | Any ID String\n\n## Configure Threshold Color Ranges\n\nYou can customize the colors of the gauge based on the current value being shown. In order to show different colors when gauge crosses certain value, use property `thresholds`. It takes an object with the threshold value  as `key` and an object with `color` property as `value`. For example:\n\n```ts\n@Component({ ... })\nexport class AppComponent {\n    ...\n\n    thresholdConfig = {\n        '0': {color: 'green'},\n        '40': {color: 'orange'},\n        '75.5': {color: 'red'}\n    };\n\n    ...\n}\n```\n\n```html\n<ngx-gauge ...  [thresholds]=\"thresholdConfig\"></ngx-gauge>\n```\n\nThe keys in the threshold object signifies the minimum value at which the color will be applied. For instance, if the gauge's current value is `53.2`, then orange color will be applied because after point `40` every value will be displayed as `orange`, until next threshold is encountered. In this example `75.5` is the next threshold.\n\n## Custom Directives for display text\n\nSometimes setting a property value on `<ngx-gauge>` does not solve your purpose. You may want to add custom HTML for displaying `value`,`append`, `prepend` and `label` texts. In order to provide custom templates for these properties display following directives can be used.\n\n```html\n<ngx-gauge [value]=\"currentValue\">\n    <ngx-gauge-append>\n        <!-- custom append text or HTML goes here -->\n    </ngx-gauge-append>\n    <ngx-gauge-label>\n        <!-- custom label text or HTML goes here -->\n    </ngx-gauge-label>\n    <ngx-gauge-prepend>\n        <!-- custom prepend text or HTML goes here -->\n    </ngx-gauge-prepend>\n    <ngx-gauge-value>\n        {{ currentValue * Math.PI | number }}\n    </ngx-gauge-value>\n</ngx-gauge>\n```\n\nNote that `value` attribute is still required on `<ngx-gauge>` even when you are providing custom template using `<ngx-gauge-value>`. Because `value` attribute is responsible for calculating the gauge's drawing on a scale.\n\n<!-- # Playground\n\nThe examples section is redesigned as a playground where you can play with Gauge by tuning its different parameters. \nAnd, you can see the result live on-screen. It is good start to get familiar with Gauge.\n\n![alt text](https://raw.githubusercontent.com/ashish-chopra/angular-gauge/master/examples/playground.png)\n -->\n\n# Contribution Welcome\n\nThe project is continously evolving with every new release. Give it a star, if you like it. For contribution, setup the development environment as follows:\n\n1. clone and setup the project dependencies\n\n```shell\n$> git clone https://github.com/ashish-chopra/ngx-gauge.git\n$> npm install\n```\n\n2. Use following commands based on what you'd like to do:\n\n```shell\n$> npm start             # builds the project and watch for changes. \n$> npm test              # runs test suite once and exit.\n$> npm run test:watch    # starts the test framework and watch for changes in code.\n$> npm run build         # triggers a manual build for library, outputs at `/dist` directory.\n```\n\n3. To add a new feature or fix a bug, make sure to create a new branch from `master`.\n\nFirst thing first, explore the [issue tracker](https://github.com/ashish-chopra/ngx-gauge/issues) to find something to contribute. There are tons of other project setup related issues and activities in which you can help. Your feedback could also be a great contribution.\n\nIf you face any problem, then raise an issue [here](https://github.com/ashish-chopra/ngx-gauge/issues).\n\n# License\n\n[MIT License](https://github.com/ashish-chopra/ngx-gauge/blob/master/LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/ashish-chopra/ngx-gauge.git"},"bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"license":"MIT","versions":{"0.0.0":{"name":"ngx-gauge","version":"0.0.0","keywords":["angular","2","angular","4","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"name":"Ashish Chopra"},"license":"MIT","_id":"ngx-gauge@0.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"6028447c12e80daa71918e33cb65482d97043600","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-0.0.0.tgz","integrity":"sha512-w3PSEt21yQk5sdFYZx/V4cgLmTw4ttM4Rgtie81N8cJNQGSDQEfBm30TM01Lsccicau9c+L9FPjQDFMs7JX1IA==","signatures":[{"sig":"MEYCIQDSg0htKuMLi3huBpEphtCHRTCrrwS2NoeEyCXqydFrPAIhAIj7Uo7pl4r4uuagQ14Cn1WszQUAjFQyEfhWxevyzVAL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6028447c12e80daa71918e33cb65482d97043600","gitHead":"665e0bcc8d50036b4103ea78bc920869adf1a621","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A gauge component for Angular 2+ apps","directories":{},"_nodeVersion":"6.10.0","_npmOperationalInternal":{"tmp":"tmp/ngx-gauge-0.0.0.tgz_1493541855601_0.949684141902253","host":"packages-12-west.internal.npmjs.com"}},"0.0.1":{"name":"ngx-gauge","version":"0.0.1","keywords":["angular","2","angular","4","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"name":"Ashish Chopra"},"license":"MIT","_id":"ngx-gauge@0.0.1","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"dca97698f0e9f4c63c5ec691c9587bfcc0436ce7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-0.0.1.tgz","integrity":"sha512-U2anCCb7ZjBjUI4dwfPQY3PIy1nrILVEc6PQ9X4uL3mE8+eeJOOjmvEckTwmQKZfhv+H9hucz2dLDMwZuX6yKQ==","signatures":[{"sig":"MEQCIFf5ycpxyWS0oiPzO7i0Q7Nah6dqO9iKbqYrMtEc+XTdAiBgGp+gXmMPWYyDET+l5B0pbgxXFhJrSeqHHdVuHzm2yA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dca97698f0e9f4c63c5ec691c9587bfcc0436ce7","gitHead":"c882953b8c0661256a60b2460aea22f549a218a0","scripts":{},"_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A gauge component for Angular 2+ apps","directories":{},"_nodeVersion":"6.10.0","_npmOperationalInternal":{"tmp":"tmp/ngx-gauge-0.0.1.tgz_1493542348717_0.7991496417671442","host":"packages-12-west.internal.npmjs.com"}},"1.0.0-beta":{"name":"ngx-gauge","version":"1.0.0-beta","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"d8e41bdb1f7e177a8f2fb6dbafa05daa73829244","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.tgz","integrity":"sha512-e7PiPFRUxFReroEFIPZG+VYjRyqE1ZJ3Pyexjtx4Zhon/Sf+ti6Rcx+fTnnjHGZwKqsOGTFWtyaOyKijHeXZgw==","signatures":[{"sig":"MEYCIQCAhGSACE4KQAMQmta1IMC/G7O9m586fPL1HuuLvII9TwIhAIKZcb22ZEq2EUdH3mslXIImrqTCp28lbSzhiMb5G4Fw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/ngx-gauge.umd.js","_from":".","es2015":"ngx-gauge/ngx-gauge.js","module":"ngx-gauge/ngx-gauge.es5.js","_shasum":"d8e41bdb1f7e177a8f2fb6dbafa05daa73829244","scripts":{},"typings":"ngx.gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"metadata":"ngx.gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"_nodeVersion":"6.10.0","peerDependencies":{"@angular/core":"^4.3.6","@angular/common":"^4.3.6"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge-1.0.0-beta.tgz_1508134414130_0.9951260541565716","host":"s3://npm-registry-packages"}},"1.0.0-beta.1":{"name":"ngx-gauge","version":"1.0.0-beta.1","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.1","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"0f09e9df34efc0d61e6960782224efc0b346945c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.1.tgz","integrity":"sha512-uRWbl204bbxNijTvcFsQ8+O+t2iHmhAimrN4dK10GCIcB69CNfkW/z3w+mS7xw8gIAXsx26nmTqGMKiM0fcmPA==","signatures":[{"sig":"MEUCIQC3c1w0euUD0PEvFOyQubSk5iIlHrf0Mwg+E9FJqA4pbQIgZQj79fcLQY7OsDcDgiUswlEqLhqV90vDSU/MAm+/DlE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/ngx-gauge.umd.js","_from":".","es2015":"ngx-gauge.js","module":"ngx-gauge.es5.js","_shasum":"0f09e9df34efc0d61e6960782224efc0b346945c","scripts":{},"typings":"ngx.gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"metadata":"ngx.gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"_nodeVersion":"6.10.0","peerDependencies":{"@angular/core":"^4.3.6","@angular/common":"^4.3.6"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge-1.0.0-beta.1.tgz_1512706086355_0.05875459755770862","host":"s3://npm-registry-packages"}},"1.0.0-beta.2":{"name":"ngx-gauge","version":"1.0.0-beta.2","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.2","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"e2e7816a7422eec20f5086655853813c54f82b1b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.2.tgz","integrity":"sha512-JkEDmLPFDn80iNeJZMwyLnm4qKtc6hnzU764P0iiON2XjlaiK7aJBA86B1CVNozGbHWDmHTh8Mm+6YfN40MB5A==","signatures":[{"sig":"MEUCID5e9sa7uQPphQddAu0QitCm20L3QZw6r2KSFEsdd4rIAiEArBBO+8mRpL3mJkg6UCpzzoVf5ofzhq4o0dqnTNa+oss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"bundles/ngx-gauge.umd.js","_from":".","es2015":"ngx-gauge.js","module":"ngx-gauge.es5.js","_shasum":"e2e7816a7422eec20f5086655853813c54f82b1b","scripts":{},"typings":"ngx.gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"metadata":"ngx.gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"_nodeVersion":"6.10.0","peerDependencies":{"@angular/core":"^4.3.6 || ^5.0.0","@angular/common":"^4.3.6 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge-1.0.0-beta.2.tgz_1515605211625_0.5048981020227075","host":"s3://npm-registry-packages"}},"1.0.0-beta.3":{"name":"ngx-gauge","version":"1.0.0-beta.3","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.3","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"15971e64801e3f491c625fe3127945942ff94ffc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.3.tgz","fileCount":17,"integrity":"sha512-Dkusl1RwkgLqE40ySpNumlMelaiiHAwDO23j87yyxXosUedYAvx6kuzsk0Zw8u63fFHFzj+h16NFfZdhh15WcQ==","signatures":[{"sig":"MEQCIA4W72YBZSPxNK1I4kKJJNPcTpcO0Do3VYL78JZ+xldhAiB1HiXYjSY1rDsndNSjeJ8lSDHH6DjbFsv86n8ud4Q68Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":161552},"main":"bundles/ngx-gauge.umd.js","_from":".","es2015":"ngx-gauge.js","module":"ngx-gauge.es5.js","_shasum":"15971e64801e3f491c625fe3127945942ff94ffc","scripts":{},"typings":"ngx.gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"metadata":"ngx.gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"_nodeVersion":"6.10.0","_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^4.3.6 || ^5.0.0","@angular/common":"^4.3.6 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.3_1520663067022_0.3318512636663933","host":"s3://npm-registry-packages"}},"1.0.0-beta.4":{"name":"ngx-gauge","version":"1.0.0-beta.4","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.4","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"cfbaab6660430926dc0814a00d1a06c9bdd6e581","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.4.tgz","fileCount":18,"integrity":"sha512-zyngKQfRloNnkR1+ssfTSggItWFdIwz5deVOEhMUexxclXip86mka/3pi32rIKDczKToIdncy347OiQkMHVioQ==","signatures":[{"sig":"MEUCIGIJxDcbYDf840NzpNdokO06rGN9cExgCcZp0E8T7PzEAiEAjeOuyNqxq1WX7laVy+bRjan7DJ0NMep6m85Nr2DgjFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198399},"main":"bundles/ngx-gauge.umd.js","_from":".","es2015":"ngx-gauge.js","module":"ngx-gauge.es5.js","_shasum":"cfbaab6660430926dc0814a00d1a06c9bdd6e581","scripts":{},"typings":"ngx.gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"metadata":"ngx.gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"3.10.10","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"_nodeVersion":"6.10.0","_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^4.3.6 || ^5.0.0","@angular/common":"^4.3.6 || ^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.4_1520669245443_0.6191113033978517","host":"s3://npm-registry-packages"}},"1.0.0-beta.5":{"name":"ngx-gauge","version":"1.0.0-beta.5","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.5","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"cbfa67ce7d39488938c1cd5404336fbf21bda112","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.5.tgz","fileCount":33,"integrity":"sha512-DfRM067Y6bLi/oXtyui8aKim31RovKCmkuaHl0BGdBbU4MncR/J7iPbzUrYAbZbck8GAM69QX7tWbSfF4CVFuw==","signatures":[{"sig":"MEUCIQCV2NGIeGPD3FqexZBaO55Y8vK/GRajmbnqZhQ1BmnnKgIgU8a0dx+CWELisx63LSo3QA7ZcvtsNA6K738xVhstrTo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":266363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIdRdCRA9TVsSAnZWagAAl0oP/1PxpKeF1bev5ansj3SG\nh/FNTnnVjx19SVC0Cyj2ESgaik+brSson0UXi9Tfl4qGsMQVAj0aKeM3Qdbg\nKm44sWCS67JfAPUb0yfk52Ukn8xRqeSN7nVN69tKvyae9oPcqGP0oc0DME64\nZIlaH72LAd/bJfD9wSk/YBBYjSk81UMpaals/4fovf1xs6M0OzjmbOWrgaWp\n3W/0zcadLOzBeeeaaIsW4ZXpIXQUZ1Ht5jpFIJb+IgnYcALn1MJRs5jU+sXX\n++L+yLXsJ4UCTGL7W1K9x0pwbDJJ6DZhUCHj7izgshdeO8NRaKyNZxtVk64g\nfHCCKTjTJphPf2OjQxJaUl+SnZxVEVP9FFyWrglI4pKWF9yFIW9XVF4Sooxr\nIO2HcZ+7kRf8ZpkVIj013n1IG/A940ILrErW0qLk1KjWM0fJc/shYs2028D9\nUzp3VPm/+hoYSK724IUtAO4D6Qoo6xF3x+AQVJg8vHHMJPjO8hyddJbscpwx\n5nlF4MBnoyreHViA6FiMs08OOv7gJmwXhOoQC5i7Qz8duZvYfdZ71+8k57MQ\nPt3GvuFHCGGN4NNIqwrM+1ztroC2SoQqjzd1o3S7acCWWzm/q6sUHzV7tDse\nrebyDZw/YpNp1Tdsur0+knYvW+W+8QqoSUCcCWCIBx+lPTD06FtzXwBBB0TX\nn2L5\r\n=eVnY\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.4.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^7.1.0","@angular/common":"^7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.5_1545720924533_0.97695164747416","host":"s3://npm-registry-packages"}},"1.0.0-beta.6":{"name":"ngx-gauge","version":"1.0.0-beta.6","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.6","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"b2e7ca013272f908fb560c374daf8439c1a17506","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.6.tgz","fileCount":33,"integrity":"sha512-/+3GHAdwBZu/ziYWiEfryl49CcBMX2cEw4FrlLk0P4edagotb0Sv+sRD6SEzrLk8aLcJzIjDp79ar9BryPC+OQ==","signatures":[{"sig":"MEUCIQDjv8JHJLmOiv/arrwTZEDaTkGHyZPA4Pzg/TexkhXrMQIga4jYyo3juPxBCreJAyVg+MXumkyklHyG362IfOKWUJI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":266351,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIdpXCRA9TVsSAnZWagAAftEP/2nF1clFbte13zmg8EhW\nqCA4xDHemwlak2LMtAreN8LmToSug+elRSyOtBumDabLTsum73iriBHHPD3m\njwtyY6Dk4ZBYI+7V8U6tQpo+e1BMavYzYy9xvz905V0pLFDr3iOou5tI4Z15\n6DX8Z9HtR1OXvpaXr40axz7JzUu36Msgr5rc2o30CcO1mr4vr8ao0uYzX9Tl\no5dgNzy1yXpcytRFkEJ5wlKH14tkNOjuu3UGRmeUKHpYurK7LjwwtdGmGhbw\nLGeMYR3UdafxF6Tmyj6OlvO26SNepddvkOx/w0bqDwcpGyz2KJIdWMWCFi7T\nESdy6eHnvffCnkj77vNNvdMPFlSB39GK7ttZ473ZHL282Ux9I/FYrTCF37AX\n2e+Yz4ypgEwEs3W7PZ2TuGV3ftQJl9gku5ighRrXAN9pkqfFg8XVln/Pp/+X\nVB7wcg1Uz6rJpx837FF8ttRwKzgBNmYaj2R4m7S6476ddIK62w9MasaXpE2r\n3r1Lai1ZYa3JNisSk7LL3p+wn40w8DSvemlq5kW+KdMgM67LCHSFnSmpQiL7\nlQT/YAckosp0lrKEwxIDB16dQRThPxGAahXkrf+WTcEkJXVqcMIRhaTfVDSf\ndeNFfQRjkBOnzTeYkEwW6Ezj+95Z6EMBXG8+s8Zqk1JF7TRHPeDyFMeAjKdK\nuWed\r\n=W1V1\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.4.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^7.1.0","@angular/common":"^7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.6_1545722454814_0.9321324630507588","host":"s3://npm-registry-packages"}},"1.0.0-beta.7":{"name":"ngx-gauge","version":"1.0.0-beta.7","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.7","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"d45488922c4b15ba4ca2f52dce9e16fc4a3e0eb9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.7.tgz","fileCount":33,"integrity":"sha512-pN3QIsQ5RZ5G2Nm+fi9PFw4AtN9ZPnKvPhPDKbcY5SnI34/zEr0+9r+CPXrVvWJ9HQKIIfuOuFMApCNh54fpVw==","signatures":[{"sig":"MEYCIQD9NFYkZB0iRkanJ098z/DSKKBxPDLDmpApkAUVK/R9xgIhAO6MJdCnJX9qxq4HeMSsJ0ZmwCSBUN+BiuPCLM2XxJIu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":275496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIfSrCRA9TVsSAnZWagAAN5gP/iH2liEfkBBz6fnbCg4M\nnt+uXp8UCQgHEVaOYnFL16wrRGO3Ym7ao4HDRdAHPXtM76Q9VfN1YUh+esqe\n6UZA60Sl06Dbh1JIvumn9fvezntpgOakZJFuEcHMkq7pwp3OwP6SzocuyA1l\nEG/rAbFmTY0e6Q27D0k+d4ynW+fSW/8zEcoyCCIfqKUyNjBrrKubYpEm/nW8\n+2XTGYvnTBYc4sF4pSg9Vbaj+eOdvxCamDjTFRPYd/vb6r8eGgWyXdqw7rDR\nEjNAq1r/dCGQ1Mb0yOiR0qTg1alvZEbSG9dJrr2troSX2xw9DJfTtUMg2B68\ntCrdOCIzSwZSYHSiv2e1KqJvRN8QCOHXpT5NJdOdDgF8QAHBh9oGmU3qBXcI\nPD4KIA1FTVer8KwSjJzPNsZ0HSWL76zjUY/RVm/NOkbZLzDIHFveBUuXiu5A\nT22rcrOXTXf6OW4/T9YqmIyKVvQDFdYS4HMB4hteXIP1PP7TYPHF9WXQR7Zo\n0Ajs+lAwADjMiOmXj42SWaVuWalDFDbXplptJTxzkxan3ILr8OCGLN3zR5s3\npmgn0eZKqQyKp4d+UvPMoHTaTQnZHjRncW2GobhxCjNwxoMzTBKydycHxqw+\nPdCOLMjivahhlAqPKdbpfVpe7iGNYaqoI+x4jp3qVn/AJP1/JFOAXtXmtZ2F\nQIrE\r\n=5zNp\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.4.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^7.1.0","@angular/common":"^7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.7_1545729194850_0.2034972351071742","host":"s3://npm-registry-packages"}},"1.0.0-beta.8":{"name":"ngx-gauge","version":"1.0.0-beta.8","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.8","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"b42240a43a047d502ec07ae17d8484b36fcfd5a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.8.tgz","fileCount":33,"integrity":"sha512-/A9dPlArffWqw5Fb2EZfipvP5WWxSKn7noDmCFp+o0DwwmBbJMlgiaVzn5/VjIhisaOkYefnqeJbEIQ2rF5JrQ==","signatures":[{"sig":"MEUCIQC8fpQssEbSwYxeFp6MqAWZ5D8loz7AIsBx4TeZ4Q4COAIgLgBXgDySYf/bYk3VuuP0Ha2uNCXsrAg4FNa5FNQbrv4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":278976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8gKnCRA9TVsSAnZWagAAJrgP/3wis4eb0FJs2pIz3bwh\nWp5Tv6OQuVD4dsownSFY/aMbshSmwHqUMSa+ms6JT/6NgCMekhENv4QFcpab\n/GtcR9I4tXytTXEmtErgiMevbouDxqUC18zzVcqDYGTflnLNocUNYEI6q3Bm\najpKmYtDfwE3sz/O65ZFQd+Pk2O3DGjyEH9EAnhu+6wlWiYgpm4wr7NngOPc\nuVA0C9hXezAILTNIE7/h3R3/GrISS/gqXJ9Vzgx6fibxFLWxyZdHRdzAHTge\nRkJjxPbUY7E72F1w6TbZSG8Fb5j5T28dQiq85Ge5S9Zh6IX6MErDfeF8ZXhy\nesMFzqoPGwluDA8QykcRxGwz9ItbgXs8uSBPq5OUz6BLz1rLSoBddqCmyzJ8\nEK1Qvy08rJlZQDp8a0LaEBgDy4wZzVxWd4+PkB97GV6fBaT9wL53jzZC6cML\nbWQ7YZqwa/nRNd2MBtibr2R/WtH4PR9SAsKuO7I8am7Nvl3HkCCQ+ZTs8f3+\nqBgGQfdvc2g+pwpEsVurDEe3jN2lyrETTU30FyhhcLaoJ60Q89PEvgOy7M23\nJjMtgLO70rKRWb1Dl1AmHgBMzU/R6ThicETEDFnDr0NBpzeMGfYA9WWstiiC\njqgpa7ngcOsrQ9knD/7KBMMDU9o1QjQ2cCGr/lv3KuyXK7uTo7/qtCsJQt7+\nSIWp\r\n=RUZ4\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0-beta.8.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.4.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^7.1.0","@angular/common":"^7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.8_1559364262268_0.19239645303087438","host":"s3://npm-registry-packages"}},"1.0.0-beta.9":{"name":"ngx-gauge","version":"1.0.0-beta.9","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.9","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"4195632112788ddc64ffd24ae990076a8e925f56","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.9.tgz","fileCount":33,"integrity":"sha512-x76QpX+Um9Rjl5ROZxgZUx7SwJYUpS9LI1cnOOTP7ADdV8TmB4J6nNBRea9p+V4Ube2XWsIR7xD4graYEaRlWg==","signatures":[{"sig":"MEQCIFxRp2D4gQ6+VVOyvfnD1UdBSaroMhH4e6oV/4VzRws2AiAnjMOv3GAPrQrWF4ftydzsjWY4V3svd+hCSY+OuFDhZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":288772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8yX6CRA9TVsSAnZWagAAgzsQAI4Xj1evIKoN7sgxhwTp\nj0fUqvn9HM3WCylN0RmKj+iryq+FXBVREp1sgDaCTg7lzmEFGWSd8nSy6rWS\nhWW2LHWPwrq6NyBYsAnYBb+B1xB79GV/7ECJ66T/6EK1PfWkCYog6D2Ak+vU\nkyuA0Sy682LhDgZwba7nZXucEBgB/kl5YMNjJ3lAQgFDxUXr/Q0FBoLlz4mh\nPZaqIhLNX1KAYfr8PgJ6UhQBHQNSGAr/vP+6g+XHXu1abiwVf/CAmMMds0RZ\n4N4qrzPe79gtOHFOzpi1irW1lnGE9ZxI9DZxSxVpGpE6HOotQhmfBZ0ZO7BP\nBVnFrl96+WxDO1R2Df4/EaFo0bm2PXAYQpzpApKKu2JrJ7QkdjgjJefp9nVR\nnOA5GAs+uG/51KbqmsVFv45B9XqRZQlQWWnrikNv0xBrgYqvjzKVn9SSqvbJ\nGwTJn7tJx+4Gd1UdlY78tejuncHa4xRqc+BTXMeTaQlFVC0z5mIchMDVRj7l\nT+WiVboKTle985/APEdxp7sDhYijR+urOHxB/0/N+Ixn8AsSdmsa/HpHDxlW\nVGu13WylY83DwFsNsnKXftWh7FNybH9zaX1z5pDHeH5qmb7RMaBlnmr8Rxju\nGDnmES90OvV0U6rCAvK9LQCEEUZrzTMKAfazUXHF4PSQXraAogqHoPWXOs+J\n5VqK\r\n=yO5m\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0-beta.9.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.4.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^7.1.0","@angular/common":"^7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.9_1559438841398_0.9615580963291879","host":"s3://npm-registry-packages"}},"1.0.0-beta.10":{"name":"ngx-gauge","version":"1.0.0-beta.10","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.10","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"766a66513230a598f85e472858ba57cc6929cc5e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.10.tgz","fileCount":33,"integrity":"sha512-j/YOntC31Pe24Et0wooi1YOmkA11Xw5YzsdBUIvYtvikvO6jwQ5tKwHimP981QAWW3S6/FQ9y94Fd/auJfyGkw==","signatures":[{"sig":"MEYCIQCu55ZXgV/I2ghR8xtnH9lu7zsb3HN+ppIQdcB4GQfV/gIhANp/ysTHm3Yctbf2taCIpqEXFnF0Tviv7Tl0a9DrSVLm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":289913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9HxMCRA9TVsSAnZWagAA4r0QAKL0Smovock5lWT02Ztc\nvV5r/wjmEud6TEl3NSOJjZ4nPGGN8yGJe/YnWPO1RKA0FDaSADyHcGDIvGKc\nWErbfRL97puInk5+mJF7bapz/3JzkddqIovLWvDUB3Ek4ZweV7IF8pbyak1r\nRX7yhwc1jkOFyUuc3TJreHQ6/hX6ArJeSTGFjUYfi/qQPpMdPLS3MkRIBIf0\nlWCwz02Bosf+FphngPM1O2ys7vqAyR/sshaV2vgzab+8N296P7RPuNQC1aAp\nSkpnVU5fgjv8Tr7DmVdrUQJNzRhpKYWNSuvH+gv1/sxLKsfXkkA2Ro7hXo3f\nzV+ftBLppD7vWwIx9Vqlsv8LaXX9l7XtNePTo8HKZEQoym/vSGvqs96NFxWQ\nCPLiC8PCOZjPKpgAzMeyIzBZRUcAFhhyYlh59lUoIWg+SdW81LAoVBNcsjBK\nbLhtJWWaMPvzfIzZqYzGvdTGZt++OGsWt8pV7ootOJ1UVtGLSn6/7EXYLXaj\nToG+cRsueD6fU7nmmw5MIjuprKJdvQL4mSRuxIU8W6eKiL+ir6eVqkLFaxQG\nQmRiCx0nrCwBrvTlPOxbWBidSt92ew7jsYsL044Ubrjigf2cVG4iuHuIssWy\n5vh6E6ka5ZrYc/4oRHQ2lKmP1u6QUV120d2fdzL0aSQnRZQVELjNAqYIb2xX\nJc3U\r\n=f4eQ\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0-beta.10.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.4.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^7.1.0","@angular/common":"^7.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.10_1559526475689_0.1497902154916908","host":"s3://npm-registry-packages"}},"1.0.0-beta.11":{"name":"ngx-gauge","version":"1.0.0-beta.11","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.11","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"0725fbe66235cbb04d9d11e964ba5ebff3e76935","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.11.tgz","fileCount":43,"integrity":"sha512-/o+4DBujl5bUWfOvjbbZqqbuTwZNmFzP+JKxoCviNZbY3VowQWxCiQLSBB+j/Zc4M/MY4ecgJz+uxSLO06OQCA==","signatures":[{"sig":"MEUCIQDxxs3h1JNYaX0jEBAQhalOayoAkL2M1oAUR/zuiclT8wIgA5eyrf66114QWqOmQxwq+uEqriGzvowhf97w2WEyBM4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":428219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYw+PCRA9TVsSAnZWagAAyoQQAImVwDtDidN4QnieyVDP\n7nKK5NziDOmYxSIywx8OMYVi4XbgZOzHH8dkATXC1zE89lb0iJj3QWc/7Miq\nbTn1J/brvwXX53cP1WIgAp1ltFWVJGtk1wmjrahA7p9OXzzQzMqr7pPs3iql\nKktE0ln0p8aZfkaE1h5X7h8BZwWEnHfp3oQLFyP/ES0mjxiCoqcBEoe/gQ+D\nSaCoDSUPKkT+tFUpjjrU9wnffQPHfggKNptOSx5cY7/hOAeTjoLskarj40yQ\nUsk8JmQIOVmdfj9k7tyR+tR4PW7tPpR0TfeHaXRTKRAxdl8Jc53w9a3pumRT\nZ1GOZPoGmqNsz4O+6n4X7LM3MAQhr+CUqV6uob25koDD91wGZZDpAKXuwkel\njSB8KBFJSXqx2OqLEqyn4F/BnyS98MpkSrTxuiSP4rpDMweJu87ql82SVLqm\n0vggdFx1MjbFx1yzSE4UZVhPTqA3XNqVYGX3ceg08eG/qzsJcfmwU7oiz3i6\ned2kmYFT9J79s8NkafyZQ6d6BUQY37hgomUKlEftMMj65qBq0O4VPPCXdBhi\no6JoZMK7BCW/OXD2NWqkhkMNJXY1uJTVoosdFzp+KJgJipnNYRZQGvTRWqRj\nGSz0vWs2CDefgH0UmtUDCWBkMOjFDH3bfw2LXvRZ01uakhVNoXJ+dGY/MoQw\n7PEm\r\n=B252\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0-beta.11.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.9.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"es2015_ivy_ngcc":"__ivy_ngcc__/fesm2015/ngx-gauge.js","peerDependencies":{"@angular/core":"^8.0.0","@angular/common":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.11_1566773134778_0.3621504724562601","host":"s3://npm-registry-packages"},"__processed_by_ivy_ngcc__":{"es2015":"8.2.3","typings":"8.2.3"}},"1.0.0-beta.12":{"name":"ngx-gauge","version":"1.0.0-beta.12","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.12","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"5fa3315c4c5a8a594cf16649cfed717cf5bda980","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.12.tgz","fileCount":33,"integrity":"sha512-Cuzvfx/3ZJv1V3D0rhu2mFCRLlFo0GC9DH/qooXB70QsG2CCsmIaunu1/WIqkxpryykg03vMnu366Gu3WE7G/A==","signatures":[{"sig":"MEQCIGwK2/wdy680rTvbvshBe4kd2JtUqow1rb9GvlXxDrG2AiBvnHFSiy+E6zxEdLKPnnIXo1XaFJHf2DcrSp8hI6K5FA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":301566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQkHtCRA9TVsSAnZWagAATu4QAI00XvdAq+M6QFODegLp\nMe+JY7QwzzL2oSPv8BimCkfE6TNI3ZYlTDqkL3pigQPSiEvOwKN9Cs6PBZz/\nMq4TdV0ozmSqR2OiH7VV/5tVI5CDZ+H83bc7Jo3qvrPiwfzS9VbxxdO6NScm\nDsEOUBmsU6+YRqdjWPGage2yHyz7GoHO+j8ARF6l4E6j9AE3MNTJNCfPpwRt\nr4ph0IOTRLmJaop6oe9frc93LoSFuh1cVpflrLehUwrf2hKjiMxA3rct77bx\nvxeQ+AC7on0+gxCmsiT+Q5qnmFqclYveC7c/OmG0xJoyboHI6+WTA17gX+GJ\nd38Hne4hYXNohcRWGbS3iptKr8KKexK1mxSrjrcqO8WbgQsG5/DWyDhJa2nO\n0ukH4ZqzcE+LGNe0yos2jJM2CLchk2mRcKqb/2n1Mhd6BepLSv8V1McU4Pj6\nPYStvnClsCooHvdMigsVrid//Gyf21F7MMGvezDOn/13CK+Q8FR5arXLO4Uf\nV1v2G+BhteXUN+ZjZm89ZbQNiQsoGch2HunLBfqeOZtSUfhVn8l55QgGQAr3\nUkaYc7CNxrx1bV+EK8fKMdiAaAk/+QTn9pAFspr0HbBcL7YN+vwB9L/vViJN\nMqNGZRXFcvY528INvIjDavva1fHynwy3CRgORzwkEX+/+ak3wKWe2ITNwNqM\nwR2m\r\n=EYH5\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0-beta.12.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.9.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"tslib":"^1.9.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^8.0.0","@angular/common":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.12_1581400557219_0.4822723564971494","host":"s3://npm-registry-packages"}},"1.0.0-beta.13":{"name":"ngx-gauge","version":"1.0.0-beta.13","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0-beta.13","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"e356e77f4965c216a0bef6a03ae1781b8ccc6255","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0-beta.13.tgz","fileCount":33,"integrity":"sha512-46wd0lR8d2hB/9H0U4Oe/50/Gv6vlaR3ygUJAQOI2vYeYi1fxjsI3y5b5PqsFpfce3PUqfVM4kyCSz7CsaNjow==","signatures":[{"sig":"MEYCIQDeMk7Vecv0ibVinTHzGd+aZ71KKYbvfQCL4OPio8DJmAIhAMN/gRKxHb0HCeBXa9GzMOP1fyRhppd/ogBk2KriMW/K","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":320651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRjJpCRA9TVsSAnZWagAAkBIQAJNdR6wTXeK2awTGCj1O\nmpcX51cioLO0jtcM/0w7Hmr2/DptGI9ljFNFLVVUYr89sujKNv9c7m6OBL7H\nquZGazyIzVaOw4/QPullnwkWVJ0oreZV3YsNOv/YbkR27YIy8RP5q3hemQPr\nYShjuQTF4wcRFtlWNGRWqSesNGtavBJxyaQBx2pNOnMG5bph5QKGKJzeuYog\n3uDGWTjS3LSKiiRlXizwu8MpIbO3Keu0DkjsLH2F7q34pnXSoFpmZSq//PDP\nyd7KeW4kbY2QgvUvZr/xqG2AK7Bhc6VxGOvL5tDIBkYGnMnM0bBxe4LXsqpj\nj7dArEpuZE3/NHlsFDDuRhtsXj1HLTaFc7Q7ogGl6h9yHAbhe+BaHqeu2rIM\neUsfvKwlKYmKg185XYtfkWguzCwaTPFkdGp0nzwExlCdLtr+CJ6C51UUht6r\nwHJi7tOYYHWbqSXOo9G/+iywN17kiswAwz4VelM3sA8ZoMNoleelgPIASjVe\nd4k25YmYT+pACROIAXDtrOZ23iLdboEQKmnRZpOEhr2JarTSzrkxvXBkqvEA\n4dY0oFnK8qMd8gT9VAOSqFhsA1/IueCBLueKnYc7bYJbTVYhN1R6q5vYydKY\nhTHrld8CHcH+ADvO1hgxSleJ1mPsEgEDJPX1HUI3+fOQ0QRY9s56LayKsHly\nflbV\r\n=bZwK\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0-beta.13.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.9.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/core":"^9.0.0","@angular/common":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0-beta.13_1581658728576_0.36265203023804093","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"ngx-gauge","version":"1.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"4a15f71c87b7ff98dd2a9117b4ce4e082b839f64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.0.0.tgz","fileCount":33,"integrity":"sha512-rHDuhFj3coq8Lm9w+0lwG2//eP0kPyOk4NlU5JlBPzlK9QFEJV+xDthlMh61VewA+sNmKaXkfay3NsAQCQMJ1g==","signatures":[{"sig":"MEQCIGY6RNZCKldRPORF5V7YAoGKCDn9/HPvfIoLP7KYtPiaAiBBpeH6er0Zk8yTudLnX1WPfNF1sVLIw7dWHcClPF1YZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":320704,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRk/eCRA9TVsSAnZWagAAkZ4P/3T0UDFv5sGmsmyCsguc\nd+DEuaAdgBtfchbbzq7ESfrYd815W6HnUsdJd34LP9TLlKYsBq+t7JGqDN5i\nUM7VRQEfCoW9zubaoNA2yDYQC6VfDRXVvDEwNOiYhh8FdV+huIZ98UfJCRsd\ne0b+HuU69fAJZHeZcsANsq7dfWX7ukGjbxRMToAZMbp3TPe7DO5ArnxaLfWN\n6rP/2qk0kExUDX7ih0T+KpdwSnG3ip3j7nuiFVGNiMOz/bzeTgO6xbbZLm29\nLOkd75wjoZnHt9LDeoxr2hlkVJJBSxs7cxEZBcx8jidGOapcJsJ4/WYE/3en\nYWb7kZxJp0TgFnklqrtCqyuDemURf1AZq0yVeOoIDo2FpbDwyorRz1R9QL5w\nljxzC9aUwXIGBkYtk+R7wi+BXNKM92bGQzuTCy0Q4EVaaHxTAB9QmMQAlDcG\nqfvNO8k88ANBBsPcJRltPTnXT0ZjGXgsjDPvicn7ttAdoOEAuHjFPrMAApLW\nIm2n21vBaP7u63gwcu6VnU8pCw3iosP6A/T/nk7f09VIDR9o6glMgzPzCggT\nqu1QBnopdweh4O8GpuYZ0y7psJcAxqdaLPQmsfiIviloEjI95mVefk8vcDJA\n9FEw8c7ysBWtyh55Fora1iOSpVJO9iUGIXtLp9l/gC08AdIeyeZPw269Ilew\nrFBk\r\n=BUZD\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.0.0.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.9.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/core":"^9.0.0","@angular/common":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.0.0_1581666270230_0.6381975539097877","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"ngx-gauge","version":"1.1.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@1.1.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"fdc7b8fe8ecc58e694328f73c098bbf6a4126bfc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-1.1.0.tgz","fileCount":33,"integrity":"sha512-tclLMKz55X7nGvz10mogyl1TvH2lrI0uSEo1aCvP3h4Rrq6gwKvc2ItSRwVCuA1WgSVJYOjxzTZzUB6BiewFmw==","signatures":[{"sig":"MEUCIQCg5FqvtRYfyswbvtKhJ+u3YRNn6yHpOkUMGMUyZaSZogIgHVkKY5g2as4o1Yb0ZL8MvzuCPMvmXKvFozQWVpH7ShY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":335368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeR5SRCRA9TVsSAnZWagAAMAcQAJ2EFm1OXnAU64rbYgVy\nLuRVhA/odphTCDPe4frG91llSVBP0b/xEuqx1JE8sd8Bcg+ef1X3fTtVfHMf\nyEQAEVFZeylPwDblmWjdqONalx9jk/meOCZsS8u0Ay2sXflDTmP0aNZjz2O6\nmwTJJDdjOpn3jNS6ZZUZcDKz7VY8Ri/kqVz70BLStrrB9fLpi96iqkphYOyW\ndTbmi6y16MklguWPZ4BatEgGSSaTXZUwZ0EeQ7FCP51/f+l0xkzONWZa0KGc\nrufm72Bt4QOOjk8RLR2WLE9BdX8yA7J/pEc0+/KNZ2gkuXxFklsJsWUZf24H\nQ42FEv5WNVpamgV5w4hEqNgBnaFDVUsghWPBz5lc979w4KkSenN7UQ17FGAc\n09DmLxC3X9Rc8cIHrIioAYWUXL5PFD7cul20ntdxVWg6sfIoE3LawDMAptPo\nYcpnQ1jnMJsEQ0a2NYnLkO8v9titgH+OSPOcoYXyoXsiGQ5MsCovMYO/VR7o\nZsn2BBqpauMJFZGOqmzdCAvyJ3hjt4tXTocVsUfzJ69bZKzOquU+7aFeGsUh\n79a9oS5zW2c3mzWYpP2Ry0PjMdc5+NFoTpGRUHf7e+00twjDF9l42h3lWv/7\nw+BWPHspa2W9IuAIarWmvOM2g3kMC5ntbIgOzwGzWbWJ6KbDPvzEw/CAWtWH\n6iZq\r\n=uoaO\r\n-----END PGP SIGNATURE-----\r\n"},"esm5":"esm5/ngx-gauge.js","main":"bundles/ngx-gauge.umd.js","_from":"file:ngx-gauge-1.1.0.tgz","fesm5":"fesm5/ngx-gauge.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm5/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.9.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"peerDependencies":{"tslib":"^1.10.0","@angular/core":"^9.0.0","@angular/common":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_1.1.0_1581749392878_0.955685796859548","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"ngx-gauge","version":"2.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@2.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"2c7eeb5e89aee7afffd9fbc30fa00baf38591a47","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-2.0.0.tgz","fileCount":24,"integrity":"sha512-YfkmWHL8fmi7Q2HatmA2Uv3ac6qqij8FsOGJQbJ0HUSPx8I8fQ4In0ffR8zqauVC1BWGiFmuCwr0M7nRDyqYjw==","signatures":[{"sig":"MEUCIE+LIGz9MT0cLXov0A6wgpGJ8De9xJLwNcpn9mcw37DjAiEA+k0BRFE7D1YtG8c0Vh56rDBPAPUrBqIpTyaw+xobioE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgVt5ECRA9TVsSAnZWagAAMhEP/icZJq26yIP847SZimJ+\npvQyLFHBz/PCXkDvQqqaA2w27nqROmw3Yw2Z0gu2X40nJ9IO8t+2Sne7t6ZC\nvO/5lPai56Zmmtot9u0Z563Fi5F8uDlTJzWHwFQzmrxTIMyF/iCxshshcNTr\n3hPy/MYtd0oL01rHGZlUUGHAlJyUTDxSEPoaKTolqWK7oRRM5tCJlagd9f54\nfkmILKh3Mvjm8cGX2nVe99pA/czy6dHp8D+4cMmQWaDRehzU3o2HsH+wN3jJ\n5UaIbXkQ68D03DOliQ6BIS8JJppO6xyoVm+KyMg36Ef86tkwahrpU0UMgxSv\n05OL5UtyREik6dX+fQ7Y83e1Fls1/GyVxQccDiIU3zFmEa1DPEga4QeOOZer\nxDzrTYq78A2U7NoVDO43J8v0Uqt4S3uNBHuQML77zQ8XsYvYpfI4lS88bsw/\nwa/U5F4CGjYn61YuNbVXeEeemlaKxv0cMcG4DpPThvh3nQBrnVcFn57rxEAe\nF83m/7CbgqXyiKvysYntBndA8Dx6kQSsoYB/KIf++X+VbCT/kYMrtBKXiozK\nfDTkn014kOcWjgwbN/hRXHlQ55VQLrKidwftRFYwDNKbyxyPH/jc/CKrWFYo\nfyMhgbfB0sjqybgrKom5J3KHYnK0VYdjfPuNNnaDfk+WknWMG1qvKGoM0SON\n1e7U\r\n=cAky\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-gauge.umd.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm2015/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.14.11","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"14.16.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^10.0.0","@angular/common":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_2.0.0_1616305732065_0.9804701383290013","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"ngx-gauge","version":"3.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@3.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"b45c9036d67cc24a3a4e5044150b874a62b3595d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-3.0.0.tgz","fileCount":24,"integrity":"sha512-++ALyP98KAH4CgFBzCinTXlo5BnJ9lfxgjlxEN/MtOrMJY5yog63PxuOpNx698ixMI3obR3W9mWwfTyRUFwDnA==","signatures":[{"sig":"MEYCIQDAvNXicoXdyiDP+8PCzBNiWCkLgYsz4CRk56HOonD/KwIhAPqyqVJjwqfXQRjDYOq4DIkFtngUyvOKb85JYC3Ko/Dk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWXF6CRA9TVsSAnZWagAAvA0P/jyGTT4mzvlbzN5GqNXQ\nci2hpWt2l23d9kch9+rtkwSoFDB3gWAT/kEgOqVWkGji3B1skfmUBe4nLllq\nhdUwuixNrPemkAuPfPepgDv7LeBSQTu/IDonHyUQjTUncQRUahXo2vCx5CoC\nZMBGK/n0rbZzUdklclKSCYt47Lb5X2KwJ7Vjw6cUIxUqdBrGPmPgSOWp2JlB\ncKatu0tUcEDscXoHAc7N8EtdWJcSus01cOqLxGrSIsGWisCnm3ZNVI63vMje\nbmuH/P9K/04jAlGQhTiIK99QNb1dILuVn4Dj8794IyGwoQhjYnaI6ZaeEqTc\n/WqQoiSIgUSFAzialzVYuDOMcRpi7p+LYx2xzjo1sGoSfT5NOQUllW8guJn8\nQIXljywCXyKV0qUUvlw19WUSF5hOvShbvznzED245ssWLtjo69MWhMeU11Ej\n0iHWfPKrZG92xjeIFa57wLqVYtnci38IQtwsOV7UOXels0xcd2dijLfhVsUg\nZuQ9X6NfOWvAS/rdkZBLFrwYRrXexKk5yxFLDc65cfaakZy6kbJ/rq9gv209\nsSisP4m374CtjlOI5HX+WNnusb0YKQ50ERFzR4m4/TfAdiVP6Ub2KibpW1Y3\nM6v6xH8ka7i+tpvoTGffHUKunPscQMIEL+YM6OcsLiMHSfF9lHnDfIVHOnHO\nM703\r\n=DmTx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-gauge.umd.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm2015/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","metadata":"ngx-gauge.metadata.json","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.14.11","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"14.16.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^11.0.0","@angular/common":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_3.0.0_1616474489575_0.5776653872434916","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"ngx-gauge","version":"4.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@4.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"bbd5275afe1d22b8c9d87395259b6869dfc45137","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-4.0.0.tgz","fileCount":20,"integrity":"sha512-oi0Y+RgUuB4Lj0NMLAFtEW7uokm6JB+y+UpfnL4HmvwsDohk4jRM5JKzuJgmbkU15Sck/TQvV+mTZB/Zs9+Ctg==","signatures":[{"sig":"MEQCIDL5fr1yEXkSC+qVovrlkF1pEDZUUrJFsHQhl2gUha5vAiA7ei5iIFodaznMKFMcpRaUDo+ZOfS15RgiPskZtxderg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":167364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhBIv1CRA9TVsSAnZWagAA8PQP/j4ZUyrBDeubPhRTP5Af\n4tbj1NxQoFpPJ/42yOZc6ALgXnZBUsYV20/aqwFPCxFjJ6UCbT53Tr1vfxw/\nELIyRrhb/DWym9rzmGS5Sf2K68f4CDNvYshx5aYz10zksatdiwEVBOeYYGAp\nDnGBadGX84uFCDQqByrVuKuH7IjU4rsgNNCYdWRPkZrlnvuw2O7tZarQ6ng5\ntB2tGoZGOmM1lsVHvyaV5iL8KnR07N0EAfZjkQjU5ZmzsVdaAdEzxzmnY40I\nsFrEEfdZCBKhiNQS8KM7X3SIxQPzCMlVZkdq2o94ndqPbKdy44jY1rmzxCbJ\nSwW8+PT2d7KadcVrf3CrvFMmxR0hZ6RPGNGQkM8Klrvs0CjYr34LzVwfcWSY\nQvNI53DJPOMqGusSXziEtSnKTw+y88PxjgSQq1Fh37JVH6/wsk+tV7/PyRYl\nWHozriYIyN/oUIWqVZaIIm9zKm8YQiVsBedqDkc5aAfW5JrGDW14ThcdMK4S\nYPZ9m0HOc8LsSsqK/Ta2Ree7Jm4gj014Hgi//m8u7+Aor/5powCxM7A+z2E+\nQ0Z/reSO/CBCahZY0rw9oKdQynB6EKwruW+gUAixnWQDpCi6tQFYmu36H/11\n5eB0S6I8GoCsJQ+4j1QBPH5rV5OIoARrnfduipip96gavnge2siRQyBRKS5g\ns9ER\r\n=/QpG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/ngx-gauge.umd.js","es2015":"fesm2015/ngx-gauge.js","module":"fesm2015/ngx-gauge.js","esm2015":"esm2015/ngx-gauge.js","typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.js","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.14.11","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"14.16.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^12.0.0","@angular/common":"^12.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_4.0.0_1627687925166_0.6976431214876915","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"ngx-gauge","version":"5.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@5.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"9c1eb709552e9abaf4d3ee9340a200cf6affa939","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-5.0.0.tgz","fileCount":20,"integrity":"sha512-qnUGubVOoT7C1ioO7QQyNizaFDHKmyRhtChOhmO1SwDPT7hsEegb+Q0XyKbEddcoFoWIsGmdbexVODLEWpPt6g==","signatures":[{"sig":"MEYCIQCTXmiWS3louIqBAjg7DHL07X2FKgZDLGlZ6piVuLUomgIhALXL7bYAQhQueATK2nCiXun4Wz89G0lly9HP33hW6wcd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":253578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSeh7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqMKA//TRDtrGsPBOsSzL/O25DcfcBKwL4a95MyV2TlYdFFeM7LjT1f\r\njadiSoNpZr3B4LlvITQJ4P3vAhMBOOt+LIvll8VKGJwhGcozZlaHnTmVSjoC\r\nPS6NvLFOtODupmAjNvkYC7okxiLt7BfC+ATsqPdpp0b3wen3a07egGGgQr1h\r\n1OW7Aljlecerm012G16G7BXxaTHM1Ys7T//IXpLohNH0KkQ+gTZVh+oHH9eQ\r\npX7wm9RIcAYYWSTSLTwOu/S7Uurttfv6AlNDEmwXCHkAY+UOg3tBTHpgct3x\r\nlI6OYOYua0euhjmLkUbDh8NtocEy5JWIu9/vDTtFW+LJLFBEbfVPHBlaXnO3\r\ntNBMdI3RaTceit27h05m/Cfq2P8drfKQB7UPku97Xz9KMHwf6KGm4m5I+dmr\r\nPpvmRfgE34FpkwiyQuCRFzn+SxcMoHK01dh8e1ZTph+MD5wga8aTPZ9lFKVF\r\ngsZftcYBbr9iamtpLiEcTlnXHOkAqpcOpZGZrOYqnqaNLZdhrGoLzirOlr8h\r\ngMy04FADGS95IuLF5t+UHPPN4Afo3xQmL6FtENX4KIT6H66Nqf0EHaxP+6p8\r\nV/om7k4+8LXxu9tanuVlJqb9GCCO3HZoBVoBOtDGcRSps3p39sYj52qGn7k3\r\ntDyiABzcOblqo2tFYV/gUyVgkP3aqjJaNxQ=\r\n=dTzU\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-gauge.mjs","module":"fesm2015/ngx-gauge.mjs","esm2020":"esm2020/ngx-gauge.mjs","exports":{".":{"node":"./fesm2015/ngx-gauge.mjs","types":"./ngx-gauge.d.ts","es2015":"./fesm2015/ngx-gauge.mjs","es2020":"./fesm2020/ngx-gauge.mjs","default":"./fesm2020/ngx-gauge.mjs","esm2020":"./esm2020/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"typings":"ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.mjs","fesm2020":"fesm2020/ngx-gauge.mjs","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.14.16","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"14.19.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^13.0.0","@angular/common":"^13.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_5.0.0_1649010810887_0.5732988533511834","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"ngx-gauge","version":"6.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@6.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"195d4ac3edf49c77ae84d467d42728a577a840b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-6.0.0.tgz","fileCount":20,"integrity":"sha512-sXegk6qagd9QN1+kcydjDfPfdK2hh73+W2fIhhXuqBQCG3+5j8SdXEN0jog6eeD5LozRCU0LZgjtwovN6Nc4Bw==","signatures":[{"sig":"MEUCIEGdrl5zg32jzxekd8yIpHdLhPTVg65uBr+nARUaB3ryAiEAuoyxJtVEhBRawFFSBYWa0WaREn/Grp58RD7dyFp02Ao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":248305,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/XYxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmru4w/9Eb7uXb/cHtDVBgDjUrB+XND9GnGV/hvZBZaHbc6dCSyTZ9jN\r\nmm253HcdGxE32Ow2lVrShsFWk1tnTHhvaWZHL/3SebXYi0IhMDZ1da4TwzAS\r\n7RrFN1X//YSvfHSAGgWG1nZoc6OWTmR+x8GpuBErZVZQjQzmz7FgCiZmZMiU\r\nk4wS7Oc4KvwP1X+ByX4cotBdJnuF2Qzb68HGVNRgZcMJ641LILQ8bg2wd4iN\r\nt8xWbxMoaFzQDZtmbjouw4asTTVnQac1lszFoqU+qY2cuWSkljK1112xPa4p\r\nlGIX3EvLbZgO9EDGeOmD6rGHt/xUkAIGWyL7SCZ9Fe2ybgyBPawHSdNk+N+J\r\nZqE/AEpnK9+XVHHK612Vz+6lt73Nxx1Wd0jfsxQYr7006s3LzmE8aNAe4uYQ\r\n0xiGBONn6OUkm4e7F/mMgLSERusft5u9/MAN10YHIJDe3ZN8/ESm0K2EM6HZ\r\n5dWM0pZ/wvTYl9t0IsJKXSg6Es1EP3isY2LwrNilrnhOUQF1YXB2QOPBynGz\r\nFFYy1VtX4qPLHnQxmVve89aSTofMThry7Snjp9kxNjtFMPqMiMhnR9GIGaC7\r\n+XinESxkeNMTbNRqjpu8Dg7qgxw9kQkX4aIFezBE+QCjmbkFPcJBDBbpiMlN\r\n2zLA6+mGFMEcC/XMDSQFwlXtyCo/sDi1zjo=\r\n=j/6I\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-gauge.mjs","module":"fesm2015/ngx-gauge.mjs","esm2020":"esm2020/ngx-gauge.mjs","exports":{".":{"node":"./fesm2015/ngx-gauge.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-gauge.mjs","es2020":"./fesm2020/ngx-gauge.mjs","default":"./fesm2020/ngx-gauge.mjs","esm2020":"./esm2020/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.mjs","fesm2020":"fesm2020/ngx-gauge.mjs","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"6.14.13","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"14.17.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^14.0.0","@angular/common":"^14.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_6.0.0_1660778032931_0.7866573978020304","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"ngx-gauge","version":"7.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@7.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"479d73fe0559bf3cb13ea79023ea265bf628fa43","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-7.0.0.tgz","fileCount":19,"integrity":"sha512-tWBxm6jNb6/j8jJmpUPExDsVtHCaoghTBIcan0dNBXAFunvbH009AX48QJP36HIiOM3OlsZ3DHp3GbIhUFzS+Q==","signatures":[{"sig":"MEYCIQDQewYdHzr/UPEWBXNcMd+DSweqGSt1cyJgADQ8UxNxsgIhAKN3KEwDlFWQ17yIIQOHT0F5bU/sbDHGYEOlbS3Gp1Uv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7rCgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoyEw/+NOYYdRs1xFeBu1bd6PHsYOxjb/z8wpLI6ATflUPrOdM92AwT\r\nZ45H+5b42X3Sih362Tt5JLt9/G4DeZj3lrrTvf2vpMIn1fp05WcRmpbOv+oj\r\njXXYd0yTayUmVuiHa8G0J62UNSHcJ/ye6nUqG2uK1XQLmGiwQYTQBFioNy05\r\n7Xlb0hhOC8d3wQVbEJ7VJ44FQseMyIhTyUJsK3SkgHsecOV58aSRnmrIH97E\r\nM9Ikq9cN7zo1TMWEEkxXosouguqyweho8ZRncj/A3+Cs33jODGc+gHQMPGsg\r\n60jlPmvYcxY/oz8vTcpsbtgcFFqBsX9rP+jCLJc8eqXQcDqaXokfVoGgcTIR\r\nIc92Cmtpeo0EGG7q2WYN9l+++u7A0cOoIFBZTpele1AJPp7YimTAVjum4kOJ\r\nFSTEMKRdCCEN78EUO/1tfEpU8ENC7JjBg/tWaB/jgig92T60TuBGmEKNlb2Q\r\ngwwEFDHmLJ+vWtYe5XK30lfEd0bC+MkSGYSaUrLo/H6UWB2oVTI5s9e1cJ/0\r\nqJ0ZCiCbL/W7sLce3zsHx72lNxByHObQ4QqSwLjPO6ftN5db/iwoAXei9avb\r\nyieNtXxnL5WdRHLvmxozAgpxe/v3DsmFVTjuhDkN9NM6zyuFxvNK5VEhbWBa\r\nuVJj7wSWP086xsuDT/lMH6ynrdL9rXl9fO4=\r\n=bJ9m\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/ngx-gauge.mjs","module":"fesm2015/ngx-gauge.mjs","esm2020":"esm2020/ngx-gauge.mjs","exports":{".":{"node":"./fesm2015/ngx-gauge.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-gauge.mjs","es2020":"./fesm2020/ngx-gauge.mjs","default":"./fesm2020/ngx-gauge.mjs","esm2020":"./esm2020/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"111ab4b20525a690d20fa30649c4fccfe3f9ad0e","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.mjs","fesm2020":"fesm2020/ngx-gauge.mjs","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"9.3.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"18.14.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^15.0.0","@angular/common":"^15.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_7.0.0_1676587168605_0.37726307973902795","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"ngx-gauge","version":"7.1.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@7.1.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"9a7a285c1bf33a1a7918bb9b89e09f9f02173251","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-7.1.0.tgz","fileCount":18,"integrity":"sha512-eyhpRMXJaieVdGWrh/U7I7dA5K52QfA04+CbLd/kwub3VVWPIm9Rr/p2c2wy65X3b9TMPh8K/mPtEcINQyIdtw==","signatures":[{"sig":"MEYCIQCJc+U8sMgkEmK9cIxaCQgyySV3ftOBnpciSzBPe7KCbgIhAM/6JxZrOjUAimFRZgFL59bUsVaud3BVWgcQtJ76++Gj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258831},"es2020":"fesm2020/ngx-gauge.mjs","module":"fesm2015/ngx-gauge.mjs","esm2020":"esm2020/ngx-gauge.mjs","exports":{".":{"node":"./fesm2015/ngx-gauge.mjs","types":"./index.d.ts","es2015":"./fesm2015/ngx-gauge.mjs","es2020":"./fesm2020/ngx-gauge.mjs","default":"./fesm2020/ngx-gauge.mjs","esm2020":"./esm2020/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"c4651a7f3574536b244faad389ae1ee9bfe4c02e","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"fesm2015":"fesm2015/ngx-gauge.mjs","fesm2020":"fesm2020/ngx-gauge.mjs","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"9.3.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"18.14.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^15.0.0","@angular/common":"^15.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_7.1.0_1688506827169_0.7516944455480206","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"ngx-gauge","version":"8.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@8.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"e2414a16940aa4afbf9f1e62d05acff57a8b1d6f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-8.0.0.tgz","fileCount":16,"integrity":"sha512-EBBhKK1rnaTj3gzZHMbooOl5WzgNiFDdXV0ByC63LiGJzUimi5yHG5Y8Xp2SyjN0yXpaiE1x2g8opMwQJmTUBw==","signatures":[{"sig":"MEUCIDUCuRwsrJ6juFg7lNMhBRgvIx0ZnQ9ryRt5BRQp86MJAiEA+XkJAl/hPzi6ZAC6+ULCYQIpNv8h+4t+xy2DPipYgv0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":183052},"module":"fesm2022/ngx-gauge.mjs","exports":{".":{"esm":"./esm2022/ngx-gauge.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-gauge.mjs","esm2022":"./esm2022/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"b7752b679f50c72cb40195e53cca168547ac49d6","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"9.3.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"18.14.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^16.0.0","@angular/common":"^16.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_8.0.0_1688508706029_0.17673044069287203","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"ngx-gauge","version":"9.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@9.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"150e4bcc37689e07fb2daa723327f9905f24b50c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-9.0.0.tgz","fileCount":16,"integrity":"sha512-0Gtc73ZEO/FlNlghS0jIjqiyykSBuRdw8x6ObPJqrzA+H1Nt1HDK0PtxbHqRNnPs4JnFLk3w6n5ar6nSX3syhQ==","signatures":[{"sig":"MEYCIQDdyGt4pdNhSKZarYSSazORoJBIg0XQbYMtmEt0OnexEwIhAOnWbaTPUgJ8wwD5vE0d2h+wb4tJ/hodJd5AMSf9UPbp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181770},"module":"fesm2022/ngx-gauge.mjs","exports":{".":{"esm":"./esm2022/ngx-gauge.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-gauge.mjs","esm2022":"./esm2022/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"0ee92d13f53f92b989a268d7cd16f9ba6e7e8299","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"9.3.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"18.14.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^17.0.0","@angular/common":"^17.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_9.0.0_1702365297135_0.22983341824487202","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"ngx-gauge","version":"10.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@10.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"308ab045ce7c1f9a6998cab7dc13d245b09ceb87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-10.0.0.tgz","fileCount":15,"integrity":"sha512-axuF3T9Ou2sFNvkNwlMX74Wapo5/7nF/EapCMX8teakjhEtz8TtBWNy65t2VMuNF2rIY91ep4rgqbBgEdEEjlA==","signatures":[{"sig":"MEQCIF1U+295MUukjdzKy9H1nJ7caWY2IYIFvXrTnKfeccEdAiAsAigCnYiv3uuVifjjJc5ALOIKOQEI62K8wavLp2xoxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":171935},"module":"fesm2022/ngx-gauge.mjs","exports":{".":{"esm":"./esm2022/ngx-gauge.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-gauge.mjs","esm2022":"./esm2022/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"a9476f37910e0dad8b347f140362ef511d6c065b","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"10.7.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"20.15.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^18.0.0","@angular/common":"^18.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_10.0.0_1726855638114_0.02639718062525498","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"ngx-gauge","version":"11.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@11.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"7728513f7fabcd9523ed2f8ebd8d20782a14f8ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-11.0.0.tgz","fileCount":16,"integrity":"sha512-9bfy49EZefajjGK4Rib0LKlpZwixI91Wlay/b6kO2uHj33mvlp4h9xs9b8to8touDkbHE2tKEKlQR/Bi880vEg==","signatures":[{"sig":"MEUCIEtjzWTd0Jg1mCGzfLWKeTOvAOXc7OFfx0ka8VO7Wo6dAiEAneTolcvuCsVRu+xbrvmja+1Y+3lknYwuRrO+rJ5YsEo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":179799},"module":"fesm2022/ngx-gauge.mjs","exports":{".":{"esm":"./esm2022/ngx-gauge.mjs","types":"./index.d.ts","default":"./fesm2022/ngx-gauge.mjs","esm2022":"./esm2022/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"e8a745d025a09c8fe7ae33cfc623cfd513952e79","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"10.5.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"20.12.2","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^19.0.0","@angular/common":"^19.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_11.0.0_1737487133069_0.09133362795696964","host":"s3://npm-registry-packages-npm-production"}},"12.0.0":{"name":"ngx-gauge","version":"12.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@12.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"7c3243272ad5fbe30dbbd616cc52ce27a54391a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-12.0.0.tgz","fileCount":5,"integrity":"sha512-52BHs2Z4lfQQSu4OkA2Sow0y01U/tyyd3P7zj3lPcTDPkzp6XaaLAP1ncP+icejq7ihaVHOTa2T3TXrwCjLP8g==","signatures":[{"sig":"MEYCIQD5toiColHd8SQrkzIE+e+SOMD3vKMviTOhX2ThIFoyjQIhAMFlrboqWonBABN8TSgOMJfaPpWL9xegBoTMcFzfWfMj","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":89556},"module":"fesm2022/ngx-gauge.mjs","exports":{".":{"types":"./index.d.ts","default":"./fesm2022/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"gitHead":"fe51e17fba65519e98f06265096bb51d4791fa8c","typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"11.5.1","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"24.5.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^20.0.0","@angular/common":"^20.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_12.0.0_1754684656307_0.9897932502317959","host":"s3://npm-registry-packages-npm-production"}},"13.0.0":{"name":"ngx-gauge","version":"13.0.0","keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"url":"https://ashish-chopra.github.io","name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com"},"license":"MIT","_id":"ngx-gauge@13.0.0","maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dist":{"shasum":"e345b4b08fc9156b8d70fd218edd4e42ecf3cf95","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-13.0.0.tgz","fileCount":5,"integrity":"sha512-Gjhkj+gbnzBBNf1DF1sr+CNPXdmfXN9P0Q92+IYOIc2Bo8EJhfiFe/rJq7My8pFdgGW2MlsCTVbaPt1lowEisQ==","signatures":[{"sig":"MEUCIHEN896s0QW3d57GgpZljDdUc9ICHpbtaJvIssq0h/omAiEAtEyAXeDPKcjI2KGjmJeSs+gXCrQkhG1uS5OgWWq+bOg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":89380},"_from":"file:ngx-gauge-13.0.0.tgz","module":"fesm2022/ngx-gauge.mjs","exports":{".":{"types":"./types/ngx-gauge.d.ts","default":"./fesm2022/ngx-gauge.mjs"},"./package.json":{"default":"./package.json"}},"typings":"types/ngx-gauge.d.ts","_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"_resolved":"/Users/ashish/Documents/ngx-gauge/dist/ngx-gauge/ngx-gauge-13.0.0.tgz","_integrity":"sha512-Gjhkj+gbnzBBNf1DF1sr+CNPXdmfXN9P0Q92+IYOIc2Bo8EJhfiFe/rJq7My8pFdgGW2MlsCTVbaPt1lowEisQ==","repository":{"url":"git+https://github.com/ashish-chopra/ngx-gauge.git","type":"git"},"_npmVersion":"11.6.2","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","directories":{},"sideEffects":false,"_nodeVersion":"25.2.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^21.1.3","@angular/common":"^21.1.3"},"_npmOperationalInternal":{"tmp":"tmp/ngx-gauge_13.0.0_1770619879410_0.6229353444031438","host":"s3://npm-registry-packages-npm-production"}},"13.1.0":{"name":"ngx-gauge","version":"13.1.0","description":"A highly customizable Gauge Component for Angular 4+ apps and dashboards","repository":{"type":"git","url":"git+https://github.com/ashish-chopra/ngx-gauge.git"},"peerDependencies":{"@angular/common":"^21.1.3","@angular/core":"^21.1.3"},"keywords":["angular","gauge","dashboard","meter","charts","ng2","ngx","ngx-gauge"],"author":{"name":"Ashish Chopra","email":"sendtoashishchopra@gmail.com","url":"https://ashish-chopra.github.io"},"license":"MIT","bugs":{"url":"https://github.com/ashish-chopra/ngx-gauge/issues"},"dependencies":{"tslib":"^2.0.0"},"homepage":"https://github.com/ashish-chopra/ngx-gauge#readme","module":"fesm2022/ngx-gauge.mjs","typings":"types/ngx-gauge.d.ts","exports":{"./package.json":{"default":"./package.json"},".":{"types":"./types/ngx-gauge.d.ts","default":"./fesm2022/ngx-gauge.mjs"}},"sideEffects":false,"_id":"ngx-gauge@13.1.0","_integrity":"sha512-8Glt0rpGa8KBSNMgp4GRskvEmrNvXmknKgBZhvu7qmPG5za8f35SYTXOXOjXcMlcWBxw0zE9iIfAINvoOG6i8Q==","_resolved":"/Users/ashish/Documents/ngx-gauge/dist/ngx-gauge/ngx-gauge-13.1.0.tgz","_from":"file:ngx-gauge-13.1.0.tgz","_nodeVersion":"25.2.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-8Glt0rpGa8KBSNMgp4GRskvEmrNvXmknKgBZhvu7qmPG5za8f35SYTXOXOjXcMlcWBxw0zE9iIfAINvoOG6i8Q==","shasum":"54669b944b7a5565ab3b7f0f481bff3d46f64a53","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ngx-gauge/-/ngx-gauge-13.1.0.tgz","fileCount":5,"unpackedSize":89399,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCYhcDMCNE+8di4BhfTuUr5oBWIvvbuy8Nz5BjdiVsefwIhAL9UUnerIA5G5SLjFBxw/pIh7oMmMtD2UIyxZvdJClUe"}]},"_npmUser":{"name":"anonymous","email":"sendtoashishchopra@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sendtoashishchopra@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ngx-gauge_13.1.0_1770625198761_0.9167183796934051"},"_hasShrinkwrap":false}},"name":"ngx-gauge","time":{"created":"2017-04-30T08:44:17.515Z","modified":"2026-02-09T08:19:59.074Z","0.0.0":"2017-04-30T08:44:17.515Z","0.0.1":"2017-04-30T08:52:31.486Z","1.0.0-beta":"2017-10-16T06:13:35.131Z","1.0.0-beta.1":"2017-12-08T04:08:07.314Z","1.0.0-beta.2":"2018-01-10T17:26:51.775Z","1.0.0-beta.3":"2018-03-10T06:24:27.111Z","1.0.0-beta.4":"2018-03-10T08:07:25.531Z","1.0.0-beta.5":"2018-12-25T06:55:24.697Z","1.0.0-beta.6":"2018-12-25T07:20:54.951Z","1.0.0-beta.7":"2018-12-25T09:13:15.004Z","1.0.0-beta.8":"2019-06-01T04:44:22.431Z","1.0.0-beta.9":"2019-06-02T01:27:21.606Z","1.0.0-beta.10":"2019-06-03T01:47:55.857Z","1.0.0-beta.11":"2019-08-25T22:45:34.922Z","1.0.0-beta.12":"2020-02-11T05:55:57.393Z","1.0.0-beta.13":"2020-02-14T05:38:48.663Z","1.0.0":"2020-02-14T07:44:30.346Z","1.1.0":"2020-02-15T06:49:53.013Z","2.0.0":"2021-03-21T05:48:52.415Z","3.0.0":"2021-03-23T04:41:29.747Z","4.0.0":"2021-07-30T23:32:05.348Z","5.0.0":"2022-04-03T18:33:31.096Z","6.0.0":"2022-08-17T23:13:53.101Z","7.0.0":"2023-02-16T22:39:28.827Z","7.1.0":"2023-07-04T21:40:27.358Z","8.0.0":"2023-07-04T22:11:46.230Z","9.0.0":"2023-12-12T07:14:57.301Z","10.0.0":"2024-09-20T18:07:18.361Z","11.0.0":"2025-01-21T19:18:53.312Z","12.0.0":"2025-08-08T20:24:16.479Z","13.0.0":"2026-02-09T06:51:19.548Z","13.1.0":"2026-02-09T08:19:58.937Z"},"readmeFilename":"README.md","homepage":"https://github.com/ashish-chopra/ngx-gauge#readme"}