{"_id":"ng2-google-charts","_rev":"42-a8c40cd1127c085f466eee1e4d17851c","name":"ng2-google-charts","time":{"modified":"2022-06-21T05:42:01.291Z","created":"2016-11-03T17:53:50.197Z","0.0.0":"2016-11-03T17:53:50.197Z","0.0.1":"2016-11-03T18:36:32.053Z","0.0.2":"2016-11-03T18:43:54.074Z","0.1.0":"2016-11-03T23:14:42.391Z","0.1.1":"2016-11-03T23:26:39.481Z","1.0.0":"2016-11-18T17:54:19.959Z","1.0.1":"2017-01-20T19:00:39.078Z","1.0.2":"2017-03-16T21:14:02.811Z","1.0.3":"2017-03-16T22:43:35.130Z","1.0.4":"2017-03-16T23:12:35.847Z","1.1.0":"2017-03-23T17:47:44.654Z","2.0.0":"2017-03-31T20:24:44.825Z","2.1.0":"2017-04-02T12:58:13.924Z","2.2.0":"2017-05-09T22:10:10.955Z","2.3.0":"2017-05-12T22:29:46.612Z","2.4.0":"2017-05-26T22:08:26.652Z","2.4.1":"2017-06-07T21:20:17.225Z","3.0.0":"2017-06-29T21:16:18.365Z","3.0.1":"2017-07-22T08:33:32.571Z","3.1.0":"2017-08-26T12:53:51.346Z","3.2.0":"2017-09-23T10:05:04.905Z","3.3.0":"2017-10-21T09:57:48.423Z","3.4.0":"2018-02-19T19:23:28.697Z","3.5.0":"2018-11-18T17:50:09.186Z","4.0.0":"2019-01-27T22:57:46.553Z","5.0.0":"2020-01-06T17:47:38.527Z","6.0.0":"2020-04-05T12:26:34.657Z","6.0.1":"2020-06-24T16:07:53.859Z","6.1.0":"2020-07-13T17:56:25.941Z","6.2.0":"2021-12-10T23:06:57.367Z","7.0.0":"2021-12-11T00:06:08.038Z"},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"dist-tags":{"latest":"7.0.0"},"readme":"# ng2-google-charts\n\n> Angular Google Charts module\n\n[![NPM Version][npm-image]][npm-url]\n[![Downloads][npm-downloads-image]][npm-downloads-url]\n\n\n## Versions\n* Version 6 is built with Angular 9, should work with Angular versions from 8 to\n  13.\n* Version 7 is built with Angular 12 in Ivy partial compilation mode, works with\n  Angular versions from 12 to 13.\n\n## Features\n* All chart types\n* Dashboard and controls\n* Chart Editor\n* Formatters\n* Events\n\n## Sponsoring\n\n*If you are using this package commercially or if you find it useful, please\nconsider [sponsoring][donate-url] this project.*\n\n## Install\n\n```bash\nnpm i --save ng2-google-charts\n```\n\n## Quick start\nImport the module in your `app.module.ts`:\n```ts\nimport { Ng2GoogleChartsModule } from 'ng2-google-charts';\n\n@NgModule({\n  ...\n  imports: [\n    ...\n    Ng2GoogleChartsModule,\n  ],\n  providers: [\n})\nexport class AppModule { }\n```\n\nIn your templates, use the `google-chart` component like this:\n```html\n<google-chart [data]=\"pieChart\"></google-chart>\n```\nand in the corresponding `.ts` file:\n```ts\nimport { GoogleChartInterface, GoogleChartType } from 'ng2-google-charts';\n\npublic pieChart: GoogleChartInterface = {\n  chartType: GoogleChartType.PieChart,\n  dataTable: [\n    ['Task', 'Hours per Day'],\n    ['Work',     11],\n    ['Eat',      2],\n    ['Commute',  2],\n    ['Watch TV', 2],\n    ['Sleep',    7]\n  ],\n  //firstRowIsData: true,\n  options: {'title': 'Tasks'},\n};\n```\n\n## Usage & Demo\nCheck out the [reference documentation][reference] and the [live demo][example-page].\n\n## License\n\n[MIT](LICENSE.md)\n\n[npm-image]: https://img.shields.io/npm/v/ng2-google-charts.svg\n[npm-url]: https://npmjs.org/package/ng2-google-charts\n[npm-downloads-image]: https://img.shields.io/npm/dm/ng2-google-charts.svg\n[npm-downloads-url]: https://npmjs.org/package/ng2-google-charts\n[reference]: https://www.devrandom.it/software/ng2-google-charts/additional-documentation/usage.html\n[example-page]: https://www.devrandom.it/software/ng2-google-charts/demo\n[donate-url]: https://github.com/gmazzamuto/ng2-google-charts?sponsor=1\n","versions":{"0.0.2":{"name":"ng2-google-charts","version":"0.0.2","description":"Angular2 Google Charts module","main":"build/ng2-google-charts.js","typings":"build/ng2-google-charts.d.ts","scripts":{"flow:lint":"tslint src/*.ts src/**/*.ts","flow.install:typings":"typings install","flow:compile":"rm -rf build && tsc","build":"npm run flow:lint && npm run flow.install:typings && npm run flow:compile","prepublish":"npm run build","test":"karma start","test:ci":"karma start --singleRun"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts","devDependencies":{"@angular/common":"^2.0.0","@angular/compiler":"^2.0.0","@angular/core":"^2.0.0","@angular/forms":"^2.0.0","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"1.7.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","ts-helpers":"^1.1.1","ts-loader":"^0.8.2","tslint":"^3.15.1","typescript":"2.0.2","typings":"^1.3.3","webpack":"^1.12.14","webpack-dev-server":"^1.14.1","zone.js":"^0.6.23"},"peerDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/forms":"^2.0.0"},"gitHead":"537aa39467f573aed1e54cd06be18786f1038651","_id":"ng2-google-charts@0.0.2","_shasum":"24e023cc9d823ec12fb120937e0f36063e6fdbaf","_from":".","_npmVersion":"4.0.1","_nodeVersion":"7.0.0","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"24e023cc9d823ec12fb120937e0f36063e6fdbaf","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-0.0.2.tgz","integrity":"sha512-biEQXblTKlCzo5OOrF+H+vPU9s6p36SNlBX1POkx/NC2Ifzy5Pv2uEBT21MxairEo5fDg3vFpjdm2SqXHvYpew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICiEUSR7N/AwFAV32RuFY2NqLzMDzhmi+skR3qVAFCCeAiEArt/Q7fAa9z9JtqPhei2YZ8TGJvSXjLNwTlhbpt5xwqk="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-google-charts-0.0.2.tgz_1478198632301_0.1323501297738403"},"directories":{}},"0.1.1":{"name":"ng2-google-charts","version":"0.1.1","description":"Angular2 Google Charts module","main":"build/ng2-google-charts.js","typings":"build/ng2-google-charts.d.ts","scripts":{"flow:lint":"tslint src/*.ts src/**/*.ts","flow.install:typings":"typings install","flow:compile":"rm -rf build && tsc","build":"npm run flow:lint && npm run flow.install:typings && npm run flow:compile","prepublish":"npm run build","test":"karma start","test:ci":"karma start --singleRun"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts","devDependencies":{"@angular/common":"^2.0.0","@angular/compiler":"^2.0.0","@angular/core":"^2.0.0","@angular/forms":"^2.0.0","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"1.7.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","ts-helpers":"^1.1.1","ts-loader":"^0.8.2","tslint":"^3.15.1","typescript":"2.0.2","typings":"^1.3.3","webpack":"^1.12.14","webpack-dev-server":"^1.14.1","zone.js":"^0.6.23"},"peerDependencies":{"@angular/common":"^2.0.0","@angular/core":"^2.0.0","@angular/forms":"^2.0.0"},"gitHead":"2a0ff8407307b8839ba6188e9e277219eb52ec2b","_id":"ng2-google-charts@0.1.1","_shasum":"475a5747670034ec6346d13cbfdf23c18a589ccc","_from":".","_npmVersion":"4.0.1","_nodeVersion":"7.0.0","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"475a5747670034ec6346d13cbfdf23c18a589ccc","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-0.1.1.tgz","integrity":"sha512-BN9o2whPwjyRvFEIpdv5lW/PSYx63a8chLUsaX1K0Fb4uoNAcuzE42kn78mcOXYWvx5qdkpwQPFRVLPDsjn32A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+Yk93dpMm0dJie70gw6d1xtXywB3qJJcy4NljGtXEvAiEAiPcqpIZXyqVpk3mqB3alcCu2VM577gMN1Tg7QAqljzY="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-google-charts-0.1.1.tgz_1478215597569_0.276360395597294"},"directories":{}},"1.0.0":{"name":"ng2-google-charts","version":"1.0.0","description":"Angular2 Google Charts module","main":"build/ng2-google-charts.js","typings":"build/ng2-google-charts.d.ts","scripts":{"flow:lint":"tslint src/*.ts src/**/*.ts","flow.install:typings":"typings install","flow:compile":"rm -rf build && tsc","build":"npm run flow:lint && npm run flow.install:typings && npm run flow:compile","prepublish":"npm run build","test":"karma start","test:ci":"karma start --singleRun"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts","devDependencies":{"@angular/compiler":"^2.0.0","@angular/core":"^2.0.0","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.0","jasmine-core":"^2.4.1","karma":"^1.3.0","karma-jasmine":"^1.0.2","karma-phantomjs-launcher":"^1.0.2","karma-sourcemap-loader":"^0.3.7","karma-webpack":"1.7.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","ts-helpers":"^1.1.1","ts-loader":"^0.8.2","tslint":"^3.15.1","typescript":"2.0.2","typings":"^1.3.3","webpack":"^1.12.14","webpack-dev-server":"^1.14.1","zone.js":"^0.6.23"},"peerDependencies":{"@angular/core":"^2.0.0"},"gitHead":"fec06fdd25d586f6d5b5410e344ce4739fd59a17","_id":"ng2-google-charts@1.0.0","_shasum":"256bdb0cd2ad565bcfada786ffccc8554b11b98c","_from":".","_npmVersion":"4.0.1","_nodeVersion":"7.0.0","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"256bdb0cd2ad565bcfada786ffccc8554b11b98c","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-1.0.0.tgz","integrity":"sha512-moFvO+J4GavUotVoLPFhmoxoEZkNQpoO7SShq1nc4zxkntAiqrrVD7UEGQOjBUWLU6l5YOgu1Z8pTgT1Y14iMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGztsiQRgsEyVf6yJutbDKsC/jHkkaSMqkoImZBzhk9iAiEAo8yfhnL+ox2V49cGlZEmWU4U+cet9ZxoMad7sxdOdQE="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-google-charts-1.0.0.tgz_1479491658049_0.8056960527319461"},"directories":{}},"1.0.1":{"main":"bundles/ng2-google-charts.umd.js","version":"1.0.1","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^2.3.0","@angular/compiler":"^2.3.0","@angular/core":"^2.3.0","@angular/forms":"^2.3.0"},"_id":"ng2-google-charts@1.0.1","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"75a85d1060beabcc1f704b3985940fac8f6b16e2","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.2.2","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"75a85d1060beabcc1f704b3985940fac8f6b16e2","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-1.0.1.tgz","integrity":"sha512-hi+BHPiUtOZsC7+lK27Ur0mj2YosnJBhSHnJlq0LjplcYezal1RoHxUr7ueJ+U3s9STJKdpI/CTMQxG2VB15ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBVOUJJ175Jt6AU1DkCboiWV8EbPaUPqThLCLLLvSyMWAiEAyzlnryjNikTt08Oh6Fwmb3OZaGlQ9jjt+Wi5KpneIxA="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-google-charts-1.0.1.tgz_1484938837174_0.055788016179576516"},"directories":{}},"1.0.4":{"main":"bundles/ng2-google-charts.umd.js","version":"1.0.4","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^2.3.0","@angular/compiler":"^2.3.0","@angular/core":"^2.3.0","@angular/forms":"^2.3.0"},"_id":"ng2-google-charts@1.0.4","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"408fc4b4b6ad48ef70c4a0d1e04c4bc93f242e98","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.2.2","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"408fc4b4b6ad48ef70c4a0d1e04c4bc93f242e98","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-1.0.4.tgz","integrity":"sha512-cBmixXUjnt75nFmcLcymVS9K8lkP3oBJkTZwvpzF4LJdTjC8B6p0knQTm/0BBqLmZg3up8YE6bcjP/q48PLOvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCm7g2UgETAV7/1YNdIGk//nh8Q4qzDcZiotY3B0TRuRgIgOcr60TG4HpKcYMu1cTgnnAjT8G2GNmqrkFHGf2TXv5k="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-google-charts-1.0.4.tgz_1489705953862_0.12216598144732416"},"directories":{}},"1.1.0":{"main":"bundles/ng2-google-charts.umd.js","version":"1.1.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^2.3.0","@angular/compiler":"^2.3.0","@angular/core":"^2.3.0","@angular/forms":"^2.3.0"},"_id":"ng2-google-charts@1.1.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"763b7ff5feb9e3ebbc1efb7cc1bf59be6e65e859","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.2.2","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"763b7ff5feb9e3ebbc1efb7cc1bf59be6e65e859","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-1.1.0.tgz","integrity":"sha512-MCIQgUuJtbwNXnXTR90EpOA9rRW7PSlWVmq8MbVwoGy/VL4OYQdbz0W0rp5mSSj9NNoi2KOsZVTROFoEwpQC0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmHn3vLV35TYHzGiCcgiizyW3y2UWTZ6pA6V3o6Bo1PAIgbKKuDls4Kof5ZX7MNkkukgIGd/pvkM5Wp7ZnoooC7I0="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng2-google-charts-1.1.0.tgz_1490291264041_0.01716277957893908"},"directories":{}},"2.0.0":{"main":"bundles/ng2-google-charts.umd.js","version":"2.0.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@2.0.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"905499e45d1f178312ab6506d48d4bd7ef093748","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"905499e45d1f178312ab6506d48d4bd7ef093748","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-2.0.0.tgz","integrity":"sha512-illBzLqA2MhiGFIJkGNQl6JWYHtCS4UIGEXpjIAOBz2ee8d/EkprLPB0hV3LcFFfqeRTBBUZ/sZtHJXNQ+QU5Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHMfgDNvXUNIABPOF9TjIdJeIBhwRw3BWccLfPhRS4LnAiAkZR6ul47tklxOS2VmIZfPC2PXCiueCF/X8yk8Ccjcnw=="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng2-google-charts-2.0.0.tgz_1490991884272_0.23277230514213443"},"directories":{}},"2.1.0":{"main":"bundles/ng2-google-charts.umd.js","version":"2.1.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@2.1.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"9a6628ed42ab6406fbe1585ebabc55cd17218d2b","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"9a6628ed42ab6406fbe1585ebabc55cd17218d2b","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-2.1.0.tgz","integrity":"sha512-CGwP5ZG1VUQ+YxQVK/s511NeDINd9QlxhLJLUvenbwreW51f0/pKWPc4NF8CUSKmmpAZ1WsIzMIO25wkYtDGTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMzmwCV5UZ+6wSJLctdIh7l7OFv3DG9OaxzUCJAfgBswIhALSQaQnwMjgiolKFBsx7ngN+mMwpncwUEzXxPTYZ9HBM"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng2-google-charts-2.1.0.tgz_1491137893070_0.5855566030368209"},"directories":{}},"2.2.0":{"main":"bundles/ng2-google-charts.umd.js","version":"2.2.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@2.2.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"558850b767f5d1bcde515ab1d7edf196d8b73cb6","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"558850b767f5d1bcde515ab1d7edf196d8b73cb6","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-2.2.0.tgz","integrity":"sha512-OGZlXgpmd3o8CLwdcDIOjmNnVde6gbG0ZgW9iWoLYbuRxgIpWr0mylCZXof8i/w+VWujqxmTj12CrMZATWOx/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBqPYllzW9SqHgzOBELOYEiwD7HLzssPxVYl+ANXWklgAiEA6sosED+rMTqgBR55dHDf++lGj4eJm8DxqWmD9rqWF+Q="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-google-charts-2.2.0.tgz_1494367809008_0.3647430606652051"},"directories":{}},"2.3.0":{"main":"bundles/ng2-google-charts.umd.js","version":"2.3.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@2.3.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"ffae304a022990c7e409affebc2e36061af95f68","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"ffae304a022990c7e409affebc2e36061af95f68","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-2.3.0.tgz","integrity":"sha512-zqYJ3GbnA/hhvyBvmFo5BxuOsX3dt8Em57BeVJC3D+BICy2BTUrA+14wLcbsrqJB831xta64/8MnjG+MU3dCLA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGvUSV45+ZJYOpIWVBVbohT2fGQ+NhXjIgMQ4dFA0tCzAiBoXOW4vf590UlLRrK3DL/Sp8x1+eHcnIC0mvtL8KZnzA=="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng2-google-charts-2.3.0.tgz_1494628185832_0.10329037066549063"},"directories":{}},"2.4.0":{"main":"bundles/ng2-google-charts.umd.js","version":"2.4.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@2.4.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"e8a31d630faf7d3ff6194ed8fbf353d5e9cbb156","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"e8a31d630faf7d3ff6194ed8fbf353d5e9cbb156","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-2.4.0.tgz","integrity":"sha512-0gMO1FK+9Fsuze0b5hGA8LUr1BFxGIqv67Wbu75SLVMdkym9yfJ0DbaUIjrCh095BPa2+3MuqVHKmkwK8SFIWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7bhKmSF/TJZdPrtO1fqcbK7rzEALzzqGz7A1Kmh7kswIhANi7GiF0o29WnfHmoUugrZvsIVyhRUyiEa/ifMte7jjN"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-2.4.0.tgz_1495836505540_0.7900703314226121"},"directories":{}},"2.4.1":{"main":"bundles/ng2-google-charts.umd.js","version":"2.4.1","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@2.4.1","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"03cdfb03fbfe4e960a2e7ab7bebbd2bfc7b9c8c5","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"03cdfb03fbfe4e960a2e7ab7bebbd2bfc7b9c8c5","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-2.4.1.tgz","integrity":"sha512-1BHPj/HTam9rsImZarlpkYH419s0k1ezlRwUZNAcv0kOtm5bS0CQrqCd+2HczmQtYWWqcxXpFAwz4Lc9EYX2qQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHvCiGL+bkRQlsHmAAJxNcXZswYcVugggYk2BsvYadawIgMN4fLIWG2haBxptAO3i5pg4yE2yUHgmNnxLFvlXA7nY="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-2.4.1.tgz_1496870415088_0.3155412382911891"},"directories":{}},"3.0.0":{"main":"bundles/ng2-google-charts.umd.js","version":"3.0.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@3.0.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"36b0a3f32d29a4bcbc9a24b83e419629ff8f7108","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"36b0a3f32d29a4bcbc9a24b83e419629ff8f7108","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.0.0.tgz","integrity":"sha512-kYfkxNobovYYD4p3wG9liYv1hbnbK6d38b0AjqJM7tVBaPQE9WkLce3vMRr48/1UxUmqQkFYHbX6d0xYyibmDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDUjadgikpeAbhbb1YOpWCAWpnyR0Job4+c+roHufKSegIgdcvQjbgDPSnj7oo9sZD2gT4SZe5R1cqAtNvkYcas4/4="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-3.0.0.tgz_1498770977257_0.9297976908273995"},"directories":{}},"3.0.1":{"main":"bundles/ng2-google-charts.umd.js","version":"3.0.1","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@3.0.1","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"54da4a155fb5dea5ef4e3b275e1b65853908d51e","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"54da4a155fb5dea5ef4e3b275e1b65853908d51e","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.0.1.tgz","integrity":"sha512-vDUh5wlJdqk9FC1pZfepTWaAlcuXmTJeudxdQNUxPA0rJr9h0eC1IZs+Aw6ZXdJyBl+LiW6ETN3WiLdtxoDMEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEGHSMPFeJEeT1RIcukrNKidMdTy64GNyexF+fwLbwKuAiBxePx8Vcfc8iJtzQ5cTk8kbvhp/IeebaiBidNv8+BCSA=="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-3.0.1.tgz_1500712411488_0.14976911176927388"},"directories":{}},"3.1.0":{"main":"bundles/ng2-google-charts.umd.js","version":"3.1.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@3.1.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"18e904085d65878315b0095a42326f38a349fb40","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"18e904085d65878315b0095a42326f38a349fb40","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.1.0.tgz","integrity":"sha512-CsTmT5uGx5rS+OQN3ei8xYwR2P65nrCVjFFQzMLhUNdH/5Wv0i1IDfTwiE5CmMBq6ypw8FxFeqW6Hb6C36zU5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUY1s85zsr1xfPfaAk8ACB4UX6v8AJosfxv3NUW/2ClwIgJd4/T104nAD+s//hAu893j9YbKMjfMJptN/XAKVcPLk="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-3.1.0.tgz_1503752030230_0.047088050516322255"},"directories":{}},"3.2.0":{"main":"bundles/ng2-google-charts.umd.js","version":"3.2.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular2","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0"},"_id":"ng2-google-charts@3.2.0","devDependencies":{},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"60dce687cc5502bb832c40bdfeb672eab7e71400","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"60dce687cc5502bb832c40bdfeb672eab7e71400","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.2.0.tgz","integrity":"sha512-spjXdhPR/nN/iS3sSQCzaiEiZeGOHRL5NF23n4zPuDaOV0WSIiLNSfdCUoVUM9Ivs9S2I/cMlQ1hftKi8VFiHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHib3M4lCy7HkOBSnrpk43DU1aPqax4yOdfCMY2S657pAiA7I+kvByb/ak6ZCVYoHdQYt1dP9tHtmQGeOMf++H0C4A=="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-3.2.0.tgz_1506161103864_0.64984893752262"},"directories":{}},"3.3.0":{"main":"bundles/ng2-google-charts.umd.js","version":"3.3.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular","angular2","ng","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","dependencies":{"moment":"2.17.1"},"peerDependencies":{"@angular/common":">=4.3.0","@angular/compiler":">=4.3.0","@angular/core":">=4.3.0","@angular/forms":">=4.3.0","rxjs":">=5.4.3","typescript":">=2.4.2"},"_id":"ng2-google-charts@3.3.0","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"71de294c34b8e631315f9983ae9398c9b7991bed","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"71de294c34b8e631315f9983ae9398c9b7991bed","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.3.0.tgz","integrity":"sha512-s5GYBTSI2i+yY720K+L/BAsu/ml2Y+xsYX+U6W6QJAN6lFjH8VvOm9qmvXPRepsv7KWNcgKAAI14TK3auStU8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG9OpAy7LLF2RSmLT/3kad0QAEyMmEhwPdqZs2akosFNAiEA3i+u7dl3dx1q/ySZyPTUgFY8/BXlShkM46tIjLrYHMU="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts-3.3.0.tgz_1508579867047_0.6475704689510167"},"directories":{}},"3.4.0":{"main":"bundles/ng2-google-charts.umd.js","version":"3.4.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular","angular2","ng","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","peerDependencies":{"@angular/common":"^5.2.0","@angular/compiler":"^5.2.0","@angular/core":"^5.2.0","rxjs":"^5.5.6","typescript":"~2.5.3"},"_id":"ng2-google-charts@3.4.0","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","scripts":{},"_shasum":"9e3770fbed673fea56e12b22983675c387e8d131","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"shasum":"9e3770fbed673fea56e12b22983675c387e8d131","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.4.0.tgz","fileCount":33,"unpackedSize":107710,"integrity":"sha512-d554z/zib/5R6Wx9+tsyLhJeG3tyD2Y0xDsAWi5NjuUxAkY1wbC6bsc6oZuXp1Ci34Apd0/Kf5nPGmKIPMbOYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD6hNJLEQX4Mh6Mx4WdXCMXWt9O1SFCgn8CWpZTpgXxSQIgO+Oai91VG1E80DP2A4OP5D8fmbzzGApiM6AcIAql9EQ="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_3.4.0_1519068208029_0.8704934636111636"},"_hasShrinkwrap":false},"3.5.0":{"main":"bundles/ng2-google-charts.umd.js","version":"3.5.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular","angular2","ng","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","_id":"ng2-google-charts@3.5.0","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"integrity":"sha512-ypmmuTs1ox13f723QMdF8N7i9yt47CBCoobE9QL+GxOPbYq9dZdfzwH201HULsGXnMaQ6VkzyfrELvnw2ERhbA==","shasum":"a968f6003787b492f087796fa44438195c5e4e1c","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-3.5.0.tgz","fileCount":34,"unpackedSize":139357,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8aZRCRA9TVsSAnZWagAAlR4P/jSYxvGeMIXQJCIfc8BC\nXCN4ZdTitggeZEiTqtQVd72/wuvgfXSt4U34Q9+7rsYqysSQI1yohZYdFPvG\n2/+az3ackxt6CjxsfqdY+qO5W+Mu38RgLseOOrAiAqAcfiBnEDlqj/+CPE6W\nWJmLJRfZWiPYGSTy3yUIpfOeMo9cKlst6VTPCdVeXepQtWoUyNqPwGFGD7wL\n5KFVLPMZxVy2NcvfNMFO4JIzqHtBfQUs1kxQHJ/xEl726ZGL8X5nT43OxLC4\nVGHHKZFptSh3LUN1UzdZs0C9iS1Tw9UEX0TmB4lycnuD+sgKDLwwGMvzYaIf\nTKA1D1Tdo/S+gA6kYzT9NlxSc1RnVfE31tt07tL6xmB8TvITgqJO7QfRZxpE\n46tqxjS0SRYuYJ0qL+jBZ0rQhVmES+b84oZhags98fAnh9zUkCBXf2lqHN/j\ndYSknFhP8ruuXNpam+pEu+8WjwA96+oS5byzCnvG5dZBOyjlHybvuQC/bS8c\n8alP/Im3ywCovYa+yy+sgx8SzTsiK3ul5jHzeYQY7cf2QO6W9IRI0T2NBqGd\nBd+2HYXqP06G7zxMeHyscDb8qZfpDgyB49BUEqJKjDJfEU5UGCDxLCbHR9tL\nRcwg3D5Pn1CN7lTM4tuDMHvNPLQMOghhPrigE1gPgEnZQ/TN1Ez97H/nCcaX\nOWEP\r\n=x9Qp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCokTGKs+v4uY5Zk75L16Dz9pcY9OM5cYm8NDV353ClZwIhAOkxbyO6tViJhmlOZwkfZS9OdYCO5bX4AddOGO281KDc"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_3.5.0_1542563409087_0.3231027697432407"},"_hasShrinkwrap":false},"4.0.0":{"main":"bundles/ng2-google-charts.umd.js","version":"4.0.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular","angular2","ng","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","_id":"ng2-google-charts@4.0.0","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"integrity":"sha512-OKSqhmiT5EducIUliT89bz7ugX6vyfd3YK8wvYeZhIl2eSTPKPJpx5bHWgnmqSA5EVXDp+yTgNVWd1HYUh10SQ==","shasum":"d0baa742f000b162750e6dfaae53d2c1fbf7f841","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-4.0.0.tgz","fileCount":39,"unpackedSize":164550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTjdrCRA9TVsSAnZWagAAnsEP/1LPLkT4u+/Hk0kZqYLk\nGQAoXg71RU12RZy0L1yefr5HFiNxqW2Qz17udimtK1FerBR9TmVLkp7XWsi6\nrSt20BG479RTG/39ErUmyni6lKokNwbzq3RZBa7c7onWwZygb94KOoIEkN/S\nOduXY6N2szyxNt8qMl4tQ0xwcx+wklML580yEwYMJ8ZA5npE+OrBVhSt70/5\n48UGnLQJ4ldXTne5oLtanvWscAP2GG89EaYfy3ok7VqzcDdPt6q/bTqv7TEH\n7A4tfzt31Vpa0pHXz9+V1WMmahN/nHVnMbaCv+MO46DvkHTAgPx/nX+D9yO2\n3OjUqZk3STZEP/9p3P8R1m3Nln8qQJceicY9ryvTX+h4wfNYcZEHRgKa7377\nsVE5guN0UBcAyJhMHIzdfCL3SH0qF2wbZ2znMmdRdPdCTLm0u/Fq+KdzYkdg\nadkJ9QtYV/J6MecWXrI01tqU8FMZOBghFhPcXjoFWr5Xn1rLzd8CQDO2ddRN\nCGObnpNUftqlZrCKV6qklV7mPgNgsobZdniLVjXl3Gr+8fh4GtUfA00F3qfD\naZUs9vOp/mcwRilVmNfliDUtJJF4IkvdApuZyExEQ1y1hVBn5Q10VkZlER8O\nN72EB2h4Oru4/3b/4ebLL0JRsPfzrsGFTWZYsGKtu0EG37tEg5K9JfZWbHP4\n14cx\r\n=DhvN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCucL8XO1PUXdRQUfC+IvAIx535RWsDwr1s+J3uO0buqwIhAO/ql0D72ewAVld3F0EhK0ujwXSclczS+RQEEKEu+j9i"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_4.0.0_1548629866461_0.2712398372766418"},"_hasShrinkwrap":false},"5.0.0":{"main":"bundles/ng2-google-charts.umd.js","version":"5.0.0","description":"Angular2 Google Charts module","module":"index.js","typings":"index.d.ts","keywords":["angular","angular2","ng","ng2","Google","Charts"],"author":{"name":"Giacomo Mazzamuto"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/gmazzamuto/ng2-google-charts.git"},"name":"ng2-google-charts","peerDependencies":{"@angular/core":"~8.2.14"},"_id":"ng2-google-charts@5.0.0","bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"homepage":"https://github.com/gmazzamuto/ng2-google-charts#readme","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"dist":{"integrity":"sha512-8ehbdI3vpY1PT4UMqvNidTxyh4bN/JB1bVbSqnyXLcbBg//kH0vleLCcd4y9c2OTyTmhVobsgqZstcMwLNI9Pg==","shasum":"2a4b8f7a040fa96962cb33ea6858d7c68a320300","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-5.0.0.tgz","fileCount":42,"unpackedSize":180023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeE3K6CRA9TVsSAnZWagAAdpkP/0ROC3ZhY0RAD6B/Yu/R\nGljAOoX7qJU2kj4VoHXDFHXhOCgdG4SQVXkXKvrfFL/YzZXaWECS+S5GM58R\nxpABXO85jUVSoFanN6s2m6UEOV9WX47csOoxOIv4AZCGj5m0pV9bpQlzBuYF\ndULQsZjyOgaBov0zclAo+1VBRwReuO6c23BU7uySxvOifhtXIX+dYuxug2gg\nPRChdNKyE40JabNBGUGWMzBJQLfS4IN7XUrPLQA6V93RRUCgB1n+iDGtGLTS\n2POVc4nDBZldR5nAZzu1s4iCPOncGLSyQgft7XHOyBAIoZnwNZXUYdsGpszn\nbqGtkAXCmKwNPDLEp4TWz4hj/vv2/ttYoPb1C8404yRTNweJ0l+x4LiI4/n2\nPn4B9JMq34e0YajVTRarG1WnsiSPqblmMJxEXOB/iIqQptbWJdR4sMWnnRkl\ncxs7/+BCAQy0SMdeNbHZxdPi/UIh2+a0ezbH4iGBXa3VCsGpSpMHFwtMRPA+\ndF2MFAXmKbX/kk3XAsxb7Aezuz/XIAdG0dpyCxi9rUFcVPxchG35uJCdM9uD\nIZz2WcBAww8B5T9pUBBESs69JSkW5GtGa5thmJrAQelmC7LMBo4JlBVS3n88\nR1BBCjf+5E8iSiCCFc/ZPyF1TAYBt7jBlMbwOk5V5CToZ66vZ7sOjuLe5ZT3\n58HM\r\n=IJj9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCptqjz/cOGT0snKkCVrv78n5IVJk4AVBlBygnv0t1jngIhAJG6DciBoMZxICrOkSGGPgdUOknMFp7JpWmmq+F1x4LE"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_5.0.0_1578332858417_0.4343691096979403"},"_hasShrinkwrap":false},"6.0.0":{"name":"ng2-google-charts","version":"6.0.0","funding":"https://github.com/gmazzamuto/ng2-google-charts?sponsor=1","peerDependencies":{"@angular/common":"^9.0.7","@angular/core":"^9.0.7","tslib":"^1.10.0"},"main":"bundles/ng2-google-charts.umd.js","module":"fesm5/ng2-google-charts.js","es2015":"fesm2015/ng2-google-charts.js","esm5":"esm5/ng2-google-charts.js","esm2015":"esm2015/ng2-google-charts.js","fesm5":"fesm5/ng2-google-charts.js","fesm2015":"fesm2015/ng2-google-charts.js","typings":"ng2-google-charts.d.ts","metadata":"ng2-google-charts.metadata.json","sideEffects":false,"description":"> Google Charts module for Angular 2 and beyond.","_id":"ng2-google-charts@6.0.0","_nodeVersion":"10.15.1","_npmVersion":"6.14.4","dist":{"integrity":"sha512-yjKTfNSmjsrrM83FUFXQk1a9gNKPk76HvdVLVHus9vRpkdeFJLmxyQi4N3axkE0Lb0Eird5Q+AI1YsTxF8vaMA==","shasum":"2c6175fe67d1d1c75898c0b8ca6c378dc79df5ef","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-6.0.0.tgz","fileCount":58,"unpackedSize":596483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeic57CRA9TVsSAnZWagAA0fwQAJOsOt1QquX8ZhLJbtkR\nQW+Qw1y5Fe/sOgBUJ9SbPrMjO0svtJQ5qg80kZhT3xFOKBN/L7Kizt6QfRBy\nPr78sBxKW/acfct7eFpe24Ixc4ffswUU6ykyxo9Js4hxY0e1TQI/GZrvor4Z\nQQUfy0uFow2QWXJMGfDZxp2C36ipoqF16lYUb/fJERlBar356TJ+74h96IKG\ng72JXa6RjEj5xTrSkdtobEWasulr4VlYOSSMfYbPFyDhp2HwqeKox3UnFdJJ\n/ba0FJu0vVjW40ydvjHF4p9uFjXoSzqQmyeTuyPbvih6IgM7+1d/9h9AJinc\n/0rB/Hyfzo1wCass3LnSrejle1arM5D3LfD20kQ9pfx7THqSMpHx+qy8zZzz\n2NSwyL2VsOP4mKNTEX1xcayGKwSNbORY5D5cloehW4fDXpzZpxvicfwrN5lm\nATxXVA46/xFEV4/0TfJGzvwK3TZ+ObRcqoMj6xq1Ng9bB5p6XUyMhsCDWZCS\nXXPx0ACJKcHiVLfY9g3Lw4/bGGtcOg1a9lpBwtVe1tEnnz5qEIe764et4kYV\nvnUIp3nnSfk9KsLKa8skMKhl1CLak8zoEAN7K7xv+md0lOc9TODE0Ttw28xV\nUmfYyR/sFJH7HljryOsJzzjlel+21P69oLomvW7zAc+jOEIL+oi9MQO31EfA\nr/fN\r\n=7M2l\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2Ll0tqMUz3kfzlGFDFzgyL94UoR7RSaZqoI7OGdGEigIhAKCFSQGIeY7+wcvcsDPPQ+xN8jjNN34QLfBLXhXAFNnn"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_6.0.0_1586089594555_0.24636602984624134"},"_hasShrinkwrap":false},"6.0.1":{"name":"ng2-google-charts","version":"6.0.1","license":"MIT","description":"Google Charts module for Angular 2 and beyond","author":{"name":"Giacomo Mazzamuto","url":"https://www.devrandom.it/"},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"funding":"https://github.com/gmazzamuto/ng2-google-charts?sponsor=1","homepage":"https://www.devrandom.it/software/ng2-google-charts/","keywords":["angular","angular2","ng","ng2","Google","Charts"],"peerDependencies":{"@angular/common":"^8.0.0","@angular/core":"^8.0.0"},"dependencies":{"tslib":"^1.9.0"},"main":"bundles/ng2-google-charts.umd.js","module":"fesm2015/ng2-google-charts.js","es2015":"fesm2015/ng2-google-charts.js","esm2015":"esm2015/ng2-google-charts.js","fesm2015":"fesm2015/ng2-google-charts.js","typings":"ng2-google-charts.d.ts","metadata":"ng2-google-charts.metadata.json","sideEffects":false,"_id":"ng2-google-charts@6.0.1","_nodeVersion":"12.18.1","_npmVersion":"6.14.5","dist":{"integrity":"sha512-qgZ90CNkbodGkimCQ5+XqeXJBNINpImWp/W0JDPHpZYmn8jVjRIU96dnhqQDYQeye/3pUoO9/Mjw7/UfslGAMA==","shasum":"8e3ab75caa0c4329aff93c7e05e1a1c533893428","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-6.0.1.tgz","fileCount":41,"unpackedSize":404811,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe83paCRA9TVsSAnZWagAAlM8P/iYKeCN4nZL3WUYJ0zFl\no74Lz/xNmpDv293rJJ6n9yGS4jZwGLm1q5EXI/b0/CSujG7uuexRDzxi+avd\npSzNfrNM2PLCRQ1MfC0dGAxpKtEH4Nb5Yx/JkgHW2ZedfrO+vW9mqieoLi1s\n0MPaFr0vMzvcx1xWxgP7UXz1gzUEcPZtLdXLWphN6unNWFa9FkE+H+L6sVOW\nUYcUnTXNsHcHEwhMy120tPcCnsx3f4XwyOqeU0faC7WHLMH6e6C1/Z4U9VQ/\n3KKKasgoFucnt2KA1V+/kOp2MB5Rz5zUHrUvNncA9BskwHEdryViHbMVjX3X\n/DhovDd1+mdc8gNZ1OHdb7ubarwvwU9VvjQpzd+35N7I+dvA05XSmX3+vzGS\nfOUNhe/1rvS+K0F6PtacdxSCjAx0xEYmDTb4qiXCZVKQTKyr4Qoq3pJGwG19\nQiUR1TvJSZuiHcc1/lPU14l+fM5EedNO9ncjBPpb1TSY5w9T6DVMzs8uspKo\nPR0FXsbryQFS+sUC9ERYLEIt1E+FJCSRAdxHAoMuQHvzJksSQAuGeuUs0HVt\nyzFzAFa4Gj2ajdgdRsRqpJUSzwT6uEPGYg7Dhxk6Yg6TvA5RvVf/AVx81X+g\nNdIOJa2kxZYyJsEUVlp7uSF9cozqcK+0u8j/tp4CZhMecovQ36oaTRi5lOvp\nbJHr\r\n=KPep\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDFRWDFsw3KhsWnYFBo91gPpXXFvnVyFEfpXGxytLT4qgIhAOfqywusWZ0mxCd/qpKFnEaJlmF55GVh57vldqelIv1U"}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_6.0.1_1593014873593_0.8722344543420482"},"_hasShrinkwrap":false},"6.1.0":{"name":"ng2-google-charts","version":"6.1.0","license":"MIT","description":"Google Charts module for Angular 2 and beyond","author":{"name":"Giacomo Mazzamuto","url":"https://www.devrandom.it/"},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"funding":"https://github.com/gmazzamuto/ng2-google-charts?sponsor=1","homepage":"https://www.devrandom.it/software/ng2-google-charts/","keywords":["angular","angular2","ng","ng2","Google","Charts"],"peerDependencies":{"@angular/common":"^8.0.0","@angular/core":"^8.0.0"},"dependencies":{"tslib":"^1.9.0"},"main":"bundles/ng2-google-charts.umd.js","module":"fesm2015/ng2-google-charts.js","es2015":"fesm2015/ng2-google-charts.js","esm2015":"esm2015/ng2-google-charts.js","fesm2015":"fesm2015/ng2-google-charts.js","typings":"ng2-google-charts.d.ts","metadata":"ng2-google-charts.metadata.json","sideEffects":false,"_id":"ng2-google-charts@6.1.0","_nodeVersion":"10.15.1","_npmVersion":"6.14.4","dist":{"integrity":"sha512-nbxG4QdXVM8/ZsbMeMuETHYDQ8JfGDcNYBw8GjeAyZTykVjQykrjUgY+KRGIquhLJIoGMY7myCjlR4YZeKBNcQ==","shasum":"50a28d358d0e9cc5733f500f0ee325f67a213eda","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-6.1.0.tgz","fileCount":43,"unpackedSize":435199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDKBKCRA9TVsSAnZWagAATn8P/iaLugPdeVJr1TI3WKl5\nKBumhGoZpazv66Ynuh1a9ZNMafp1G2sDRfDnaddKl61gPxGdrNeG/Q8ZVzvK\n1gOuSMo+WpvCUw0ea8+Dg8Ld6r2L4JbGlAEy4E78wjZbHxz3MUN64XOp1V10\nSEW6EojICraSShpOhHU8+VXoNAV2ZYeearVefaF7sVZyMROZQ6F7thtGC3A0\nSLENFkXzHSkRGe9TIMBgAZFclMcsaOvvDtekCb0pTl8OmA4j4ZDKr1D0ayao\n2oGZBLnVKk6utWCyiAtzZqUdsj5Pj89FgCmO5OAD3zZ4GBa/Kfur0E5cLBff\nVWhutg2/9qgUU+W6VLNjhdKp25pQpjaABFO6xi5H1vcxkB2BuIsgwt6jSweB\nIJ8hnv6JLyhEHZl7qTnvyyTtO2zP7voFJLpl4bT2EnbHKRsj3vmMezzkjxgn\n2hUXJx54tj0x4G3V5Y/5N2ZISYrbOiBEHgQvw0fVtruG3j+H4DFyi6YaPMnf\n+QESUdH32pgt1d3ZQL5P8u0tZtVCAuIEBPQgsGhFChQKLQnl5ZUQQuMW2Sts\nbar766rvvtH6tTLqKKJ2TBODtrTUNxdTkK2Gu+wD2VD7y6jTmUEBjv474yhA\nUc4bKRLUS+CL9/dvGv7IYUYBIXie8IrbsgmLv3mRbSq/ql380WlmQ1mg+EBy\nddGd\r\n=TmkO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAQ/ZGb2hHyIZKcp2RvdbRpu7rFXpGpGqD6rWCEEPCt1AiEAmfDjJjQTjY4JTwwipYdAjTYNy6Aoom/UbAEks6ywtHs="}]},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_6.1.0_1594662985701_0.9137074089804262"},"_hasShrinkwrap":false},"6.2.0":{"name":"ng2-google-charts","version":"6.2.0","license":"MIT","description":"Google Charts module for Angular 2 and beyond","author":{"name":"Giacomo Mazzamuto","url":"https://www.devrandom.it/"},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"funding":"https://github.com/gmazzamuto/ng2-google-charts?sponsor=1","homepage":"https://www.devrandom.it/software/ng2-google-charts/","keywords":["angular","angular2","ng","ng2","Google","Charts"],"peerDependencies":{"@angular/common":"*","@angular/core":"*"},"dependencies":{"tslib":"^1.9.0"},"main":"bundles/ng2-google-charts.umd.js","module":"fesm2015/ng2-google-charts.js","es2015":"fesm2015/ng2-google-charts.js","esm2015":"esm2015/ng2-google-charts.js","fesm2015":"fesm2015/ng2-google-charts.js","typings":"ng2-google-charts.d.ts","metadata":"ng2-google-charts.metadata.json","sideEffects":false,"gitHead":"f93c594536949eb23825756e1473b5433595f1e4","_id":"ng2-google-charts@6.2.0","_nodeVersion":"16.13.1","_npmVersion":"8.2.0","dist":{"integrity":"sha512-dbG93G22hDcNNfdR3vL1GyT8ez0N2J5c8UHrI0MO8+AdFWJm6v4iODRbTGrcUGWYxKsC4V5gRrzfVBtOhMnlhA==","shasum":"c0b89e2b7bde0acbdca7489270e2bb8c91ba75bd","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-6.2.0.tgz","fileCount":43,"unpackedSize":451512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhs92RCRA9TVsSAnZWagAAOVEP/RMt4KLpkSOROXSuGR63\n/tofnolN9UsJbTCMLY+6UOVvFBOEoOAmSsnwuEmNsHVirnH91+It5RvfbxA3\nXnQk5d/s32IsKv55/2Y4UGPB4aISUbnd3NkBU4xQ4UZ9QrB/JOKjhqjeUK7c\n5NdU8q1wi8CM0zF4MtGR2lsRh+6/NEinX3SamHOEGZqt8RWYOsswNunigikV\nP0fe4nH4RvXf87aK/LIeC4PenjVL9yLGNal5PRKe0KdgwNw5BObDFD5sWqm/\nm95FeAQnvc7HZRpVE4Aljt8CMV9R0PZ+Q9vb9hNYGIEwOOZhU1Dee5g6OsWw\nOok1YmJw3eohFU4NTQjAHzRAaPNY97k6srAy6hvhWeVrRjKda874qd5nqT54\n1XrktsUTZM9fmXj1rEFa4QaVGrE2/KilDKyLilALwlx0TiZajvNWb6uey4e4\nMHUhgbLScFH6pOikZlwe9zLwE/GA/Gaa9RwYymoMtBc/K4b+uqJI42sQDnUL\nAV7o0YpHmdMozC0IH3BM/lJtbhcI8d+od4hPuNLGskSTsKx+jmwz8AFI0XcV\nBsWAunnA5AZb9cu+Pwx4cTmp4rNa9Eh14KP2lWME1JqMRfoTL/dYsJLRxyPe\nZnYdNN/TH4DzJqLvzIVtqsTRSp1673y9wsTLAuevm09pmbBBgDz55SH29cuy\n/dFJ\r\n=hOto\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDCPaa2T5CWzszkR7lKLYEAeI5GOp33NoDLbAmbSLjDJAiBK/U1pCCt2cZWmrdgEUH/TnM9OaTMqtqwpl8IL5ySEMQ=="}]},"_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"directories":{},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_6.2.0_1639177617190_0.33066885920423594"},"_hasShrinkwrap":false},"7.0.0":{"name":"ng2-google-charts","version":"7.0.0","license":"MIT","description":"Google Charts module for Angular 2 and beyond","author":{"name":"Giacomo Mazzamuto","url":"https://www.devrandom.it/"},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"funding":"https://github.com/gmazzamuto/ng2-google-charts?sponsor=1","homepage":"https://www.devrandom.it/software/ng2-google-charts/","keywords":["angular","angular2","ng","ng2","Google","Charts"],"peerDependencies":{"@angular/common":"*","@angular/core":"*"},"dependencies":{"tslib":"^2.3.0"},"main":"bundles/ng2-google-charts.umd.js","module":"fesm2015/ng2-google-charts.js","es2015":"fesm2015/ng2-google-charts.js","esm2015":"esm2015/ng2-google-charts.js","fesm2015":"fesm2015/ng2-google-charts.js","typings":"ng2-google-charts.d.ts","sideEffects":false,"gitHead":"5e8711790ae35e89e77027a3e53e4c50ff4b254c","_id":"ng2-google-charts@7.0.0","_nodeVersion":"16.13.1","_npmVersion":"8.2.0","dist":{"integrity":"sha512-MRc7oIDAvFVdvW2SQvE8xNjzL5NDdnB4GvJEBRW8PYsuNH1gj3RlQRdFRDdkzaRDy4y9jVI6x6yZZAYP3ZCVLw==","shasum":"1e601dad1d6f2f964d052a8f6eeb6d56efd04c1a","tarball":"https://registry.npmjs.org/ng2-google-charts/-/ng2-google-charts-7.0.0.tgz","fileCount":40,"unpackedSize":380994,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhs+twCRA9TVsSAnZWagAAdDkP+wSLfUBgil2/rZp0IY0N\nu2iXB725Efwgehu276fJpQxwsyVKDbtigsJboWXmc+gJxlLle1m3KVe7nh/w\njxSewHbIHa7Z3ApsInKYoF3ZMv6TVmWE2a+LQVB5OIuTaRmJvGNvpnam+Y39\nMzzzzjWCp5xKwCosqJemd6TgLazsptu9Na5v2yCFk4nAJuU3TQSyippWt+a5\n1GUvJPG+r5SEH6KHTGZ4E8bnlCDwUGVprFfJ1c5ULTAYd4h4LLLKD4uIuMQG\nwx+cSkUmX4PwVBN/Y2IjG2+87TmdySGsR4CqTVJF2CQL870T3VrYaHEPw+KO\nxz5FySSRObPPLA01DS6QoH83jobFf7UJdKCPvjYVRl0VWr5ethNdLktAju2A\nqgkiMDRWdVteGVcsC3uQwmCyZgdEB9AKVSc/wW4I0AMQGuf8BCu0Ml5HtFUP\nMCFo4LfAbBClnFf4iFFh69xIH3aSxsYYMzJGjb8lkyjCKYMHVfO7ctLdv5E3\nVRVGpIwrViRopfpvBI5uLbYsXEslgu0THg4i+fH1TNEG7K4wLP67g0epr/Hw\nMr1vjgJm1Z935ZKjq/PAqjqQtZ4waPjHhgwU2qtniEHNwSievvARZSoXUUIU\nrVpeDrJKu/Ah9QiGETmpvAqBYMzb3fzo/K4b+3fiKCRXEKLnh9Pru34ysq+d\n0+BA\r\n=9xhf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICSnsP0mTO2t7rx8qstukhdO7poI9XAcnldmAvggVdFgAiAKVRLY/cIN8mZHrzuVNLcpRUgYtBlSAibhb2QeP1rsIg=="}]},"_npmUser":{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"},"directories":{},"maintainers":[{"name":"gmazzamuto","email":"gmazzamuto+npm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-google-charts_7.0.0_1639181167900_0.7047707199736144"},"_hasShrinkwrap":false}},"readmeFilename":"README.md","users":{"rafszul":true,"piyush17291729":true,"esilva2902":true},"description":"Google Charts module for Angular 2 and beyond","homepage":"https://www.devrandom.it/software/ng2-google-charts/","keywords":["angular","angular2","ng","ng2","Google","Charts"],"repository":{"type":"git","url":"git+https://github.com/gmazzamuto/ng2-google-charts.git"},"author":{"name":"Giacomo Mazzamuto","url":"https://www.devrandom.it/"},"bugs":{"url":"https://github.com/gmazzamuto/ng2-google-charts/issues"},"license":"MIT"}