{"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dist-tags":{"latest":"0.2.4"},"author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"description":"Angular component for d3.js calendar heatmap graph.","readme":"# Angular component for D3.js Calendar Heatmap\n\nThis [d3.js](https://d3js.org/) heatmap representing time series data is used to visualize tracked time over the past year, showing details for each of the days on demand. Converted into an angular component for your convenience :)\n\nIncludes a global overview of multiple years and visualizations of year, month, week and day overview with zoom for details-on-demand.\n\nInspired by [Github's contribution graph](https://help.github.com/articles/viewing-contributions-on-your-profile/#contributions-calendar)\n\nBased on [Calendar View](https://bl.ocks.org/mbostock/4063318) by [Mike Bostock](https://github.com/mbostock)  \nAaand [D3.js Calendar Heatmap](https://github.com/DKirwan/calendar-heatmap) by [Darragh Kirwan](https://github.com/DKirwan)\n\n## Demo\nClick <a href=\"https://rawgit.com/g1eb/angular2-calendar-heatmap/master/\" target=\"_blank\">here</a> for a live demo.\n\n### Global overview\n[![Angular component for d3.js calendar heatmap - global overview](https://raw.githubusercontent.com/g1eb/angular2-calendar-heatmap/master/images/screenshot_global_overview.png)](https://rawgit.com/g1eb/angular2-calendar-heatmap/master/)\n\n### Year overview\n[![Angular component for d3.js calendar heatmap - year overview](https://raw.githubusercontent.com/g1eb/angular2-calendar-heatmap/master/images/screenshot_year_overview.png)](https://rawgit.com/g1eb/angular2-calendar-heatmap/master/)\n\n### Month overview\n[![Angular component for d3.js calendar heatmap - month overview](https://raw.githubusercontent.com/g1eb/angular2-calendar-heatmap/master/images/screenshot_month_overview.png)](https://rawgit.com/g1eb/angular2-calendar-heatmap/master/)\n\n### Week overview\n[![Angular component for d3.js calendar heatmap - week overview](https://raw.githubusercontent.com/g1eb/angular2-calendar-heatmap/master/images/screenshot_week_overview.png)](https://rawgit.com/g1eb/angular2-calendar-heatmap/master/)\n\n### Day overview\n[![Angular component for d3.js calendar heatmap - day overview](https://raw.githubusercontent.com/g1eb/angular2-calendar-heatmap/master/images/screenshot_day_overview.png)](https://rawgit.com/g1eb/angular2-calendar-heatmap/master/)\n\n## Installation\n\n1) Install 'angular2-calendar-heatmap' with npm\n\n```\nnpm install angular2-calendar-heatmap\n```\n\n2) Import CalendarHeatmap component in your angular module\n\n\n```javascript\nimport { CalendarHeatmap } from 'angular2-calendar-heatmap';\n\ndeclarations: [ ...... , CalendarHeatmap ],\n```\n\n3) Use 'calendar-heatmap' component inside a template\n\n```html\n<calendar-heatmap\n  [data]=\"data\"\n  [color]=\"color\"\n  [overview]=\"overview\"\n  (handler)=\"print($event)\">\n</calendar-heatmap>\n```\n\n### Attributes\n\n|Property        | Usage           | Default  | Required |\n|:------------- |:-------------|:-----:|:-----:|\n| data | Time series data from max a year back | none | yes |\n| color | Theme hex color | #45ff00 | no |\n| overview | Initial overview type (choices are: year, month, day) | year | no |\n| handler | Handler function is fired on click of a time entry in daily overview | none | no |\n| onChange | Handler function is fired on change of the overview | none | no |\n\n### Example data\n\nTime series data where each day has a total time tracked (in seconds).\nDetails, if provided, are shown in a tooltip on mouseover in different overviews.\n\n```\nvar data = [{\n  \"date\": \"2016-01-01\",\n  \"total\": 17164,\n  \"details\": [{\n    \"name\": \"Project 1\",\n    \"date\": \"2016-01-01 12:30:45\",\n    \"value\": 9192\n  }, {\n    \"name\": \"Project 2\",\n    \"date\": \"2016-01-01 13:37:00\",\n    \"value\": 6753\n  },\n  .....\n  {\n    \"name\": \"Project N\",\n    \"date\": \"2016-01-01 17:52:41\",\n    \"value\": 1219\n  }]\n}]\n```\n\n### Optimization\n\nIn some cases details array could be large and in order to fit the data into the tooltip a short summary is generated with distinct projects and their total tracked time for that date.\nIn terms of optimization, summary data can be computed server-side and passed in using the ```summary``` attribute.\nAnd in addition to the data structure described above this would result in a summary dictionary with distinct project names and total values of tracked time in seconds, e.g.:\n\n```\nvar data = [{\n  \"date\": \"2016-01-01\",\n  \"total\": 17164,\n  \"details\": [.....],\n  \"summary\": [{\n    \"name\": \"Project 1\",\n    \"value\": 9192\n  }, {\n    \"name\": \"Project 2\",\n    \"value\": 6753\n  },\n  .....\n  {\n    \"name\": \"Project N\",\n    \"value\": 1219\n  }]\n}]\n```\n\nSee [index.html](https://github.com/g1eb/angular2-calendar-heatmap/blob/master/index.html) for an example implementation with random data or click <a href=\"https://rawgit.com/g1eb/angular2-calendar-heatmap/master/\" target=\"_blank\">here</a> for a live demo.\n\n## Angular directive\n\nIf you want to use this heatmap as an AngularJS directive (version 1.x), see [angular-calendar-heatmap](https://github.com/g1eb/angular-calendar-heatmap)\n\n## React component\n\nIf you want to use this heatmap as a React component, see [reactjs-calendar-heatmap](https://github.com/g1eb/reactjs-calendar-heatmap)\n\n## Non-Angular version\n\nIf you are looking for a plain vanilla javascript version of the heatmap, check out [calendar-heatmap-graph](https://github.com/g1eb/calendar-heatmap)\n\n## Dependencies\n\n* [Angular](https://angular.io/)\n* [moment.js](https://momentjs.com/)\n* [d3.js](https://d3js.org/)\n","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"license":"MIT","versions":{"0.0.1":{"name":"angular2-calendar-heatmap","version":"0.0.1","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"author":"","license":"MIT","main":"index.js","bugs":{"url":"https://github.com/g1eb/angular-calendar-heatmap/issues"},"scripts":{"build":"npm run build:js && npm run build:css","build:js":"tsc && minify dist/calendar-heatmap.js --output dist/calendar-heatmap.min.js","build:css":"cssmin < src/calendar-heatmap.css > dist/calendar-heatmap.min.css","build:watch":"tsc -w","serve":"serve .","start":"concurrently \"npm run build:watch\" \"npm run serve\""},"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"@angular/core":"~2.4.0","@angular/common":"~2.4.0","@angular/compiler":"~2.4.0","@angular/platform-browser":"~2.4.0","@angular/platform-browser-dynamic":"~2.4.0","@angular/http":"~2.4.0","@angular/router":"~3.4.0","@angular/forms":"~2.4.0","systemjs":"0.19.40","core-js":"^2.4.1","zone.js":"^0.7.4","rxjs":"5.0.1","d3":"^3.5.16","moment":"^2.13.0"},"devDependencies":{"@types/d3":"^4.5.0","@types/node":"^6.0.46","concurrently":"^3.4.0","cssmin":"^0.4.3","minifier":"^0.8.1","typescript":"~2.2.0"},"gitHead":"e203a6e4602408c0d557c76373248d672a15d08e","_id":"angular2-calendar-heatmap@0.0.1","_shasum":"b4623cc95074b7562574a4aea131268f4bc2712a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"b4623cc95074b7562574a4aea131268f4bc2712a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.0.1.tgz","integrity":"sha512-V+kpOhJa3l7WDul/al3ZDWoOVOcRCtmsgR3/ecD6g+7pxJjWUA4A5G/DjVMAvaPCGCIekjdUOOBXOeuwN+2axw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeb/prYEUvk8D5e955O4uJAK1zIqIK6wCS63zrhflG0QIhAOeQOp+AfNVOkojFeTcwJslcoTMYc8c5ygVJTDGR/bP1"}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-calendar-heatmap-0.0.1.tgz_1488757777344_0.6966434514615685"},"directories":{}},"0.0.2":{"name":"angular2-calendar-heatmap","version":"0.0.2","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"author":"","license":"MIT","main":"index.js","bugs":{"url":"https://github.com/g1eb/angular-calendar-heatmap/issues"},"scripts":{"build":"npm run build:js","build:js":"tsc && minify dist/calendar-heatmap.js --output dist/calendar-heatmap.min.js","build:watch":"tsc -w","serve":"serve .","start":"concurrently \"npm run build:watch\" \"npm run serve\""},"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"@angular/core":"~2.4.0","d3":"^3.5.16","moment":"^2.13.0"},"devDependencies":{"systemjs":"0.19.40","core-js":"^2.4.1","zone.js":"^0.7.4","rxjs":"5.0.1","@types/d3":"^4.5.0","@types/node":"^6.0.46","concurrently":"^3.4.0","cssmin":"^0.4.3","minifier":"^0.8.1","typescript":"~2.2.0"},"gitHead":"de69a2f2f272cc1d619d46ec9cb1492e5d549f15","_id":"angular2-calendar-heatmap@0.0.2","_shasum":"ca3be8fc1bce81b3d4235c4bba9f114cb1e9dea5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"ca3be8fc1bce81b3d4235c4bba9f114cb1e9dea5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.0.2.tgz","integrity":"sha512-MCtIR0mGstIgXFebZekl7giDZROMuXBHukwqAs3sDnIk4hWhSW+ptx9Am+9zu84/7r48SIhCTLks2DcTBQk+7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwO8rKVsBwfSnhdAOFJ4EfURMt2B5PJAgxsm/0qKBmSwIhAODxLhkGseAEU4kPG6DfGPA3Cle3UG75SX+wcEv62nXC"}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-calendar-heatmap-0.0.2.tgz_1489159684929_0.7802124349400401"},"directories":{}},"0.0.3":{"name":"angular2-calendar-heatmap","version":"0.0.3","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"author":"","license":"MIT","main":"index.js","bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"build":"npm run build:js","build:js":"tsc && minify dist/calendar-heatmap.js --output dist/calendar-heatmap.min.js","build:watch":"tsc -w","serve":"serve .","start":"concurrently \"npm run build:watch\" \"npm run serve\""},"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"@angular/core":"~2.4.0","d3":"^3.5.16","moment":"^2.13.0"},"devDependencies":{"systemjs":"0.19.40","core-js":"^2.4.1","zone.js":"^0.7.4","rxjs":"5.0.1","@types/d3":"^4.5.0","@types/node":"^6.0.46","concurrently":"^3.4.0","cssmin":"^0.4.3","minifier":"^0.8.1","typescript":"~2.2.0"},"gitHead":"e36bd22c6bd2313fdb8c019165512f5c07cfc603","_id":"angular2-calendar-heatmap@0.0.3","_shasum":"cc185f24a74fa885993e88c8118f856c0ecfb1bd","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"cc185f24a74fa885993e88c8118f856c0ecfb1bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.0.3.tgz","integrity":"sha512-YgXcM8tt5o3C4zNAVPgo6h6Aln2zPfJppvCSVd7lFONtirlobDIyGwdTUSiyJ5zc97V8+4Zo3ClkGq4oad4Pmg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC8FVUegy2MqWVqiOt9Bxh4Fe8l5QvEDobJG7VnYiZBiAiA6SyyuNmbdQ1F1uItH7XxxKEfhK1cb5kN2hVoErkMkqw=="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-calendar-heatmap-0.0.3.tgz_1489195642729_0.5414108468685299"},"directories":{}},"0.0.4":{"name":"angular2-calendar-heatmap","version":"0.0.4","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":"","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"license":"MIT","main":"index.js","bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"build":"npm run build:js","build:js":"tsc && minify dist/calendar-heatmap.js --output dist/calendar-heatmap.min.js","build:watch":"tsc -w","serve":"serve .","start":"concurrently \"npm run build:watch\" \"npm run serve\""},"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"@angular/core":"~2.4.0","d3":"^3.5.16","moment":"^2.13.0"},"devDependencies":{"systemjs":"0.19.40","core-js":"^2.4.1","zone.js":"^0.7.4","rxjs":"5.0.1","@types/d3":"^4.5.0","@types/node":"^6.0.46","concurrently":"^3.4.0","cssmin":"^0.4.3","minifier":"^0.8.1","typescript":"~2.2.0"},"gitHead":"058a0bdc6e1a143756598646d77cccc30d448eca","_id":"angular2-calendar-heatmap@0.0.4","_shasum":"41032b0acc993daa52a7f0f2cfcb299bcfca7828","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"41032b0acc993daa52a7f0f2cfcb299bcfca7828","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.0.4.tgz","integrity":"sha512-j8puxWf85GSUk4SaVNWTPcflGodA8JNBMCsh0obS07vw2qb+KoZlPTlr9lE9UFnzt1UGEwSzip5RQLKPMEzmDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEL6rupyEUfEuNBYWtD5lZszg0NPksPt9l7AMrtR9oVWAiEAiAZkPlWPspgeta3fO/poffhLdpotG65XpWi/5HHSGUY="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-calendar-heatmap-0.0.4.tgz_1489198161613_0.062204474583268166"},"directories":{}},"0.0.5":{"name":"angular2-calendar-heatmap","version":"0.0.5","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":"","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"license":"MIT","main":"index.js","bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"build":"npm run build:js","build:js":"tsc && minify dist/calendar-heatmap.js --output dist/calendar-heatmap.min.js","build:watch":"tsc -w","serve":"serve .","start":"concurrently \"npm run build:watch\" \"npm run serve\""},"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"@angular/core":"~2.4.0","d3":"^3.5.16","moment":"^2.13.0"},"devDependencies":{"systemjs":"0.19.40","core-js":"^2.4.1","zone.js":"^0.7.4","rxjs":"5.0.1","@types/d3":"^4.5.0","@types/node":"^6.0.46","concurrently":"^3.4.0","cssmin":"^0.4.3","minifier":"^0.8.1","typescript":"~2.2.0"},"gitHead":"a4b9bf198682bfcf60463cbcc2b08976b964c19b","_id":"angular2-calendar-heatmap@0.0.5","_shasum":"9cdea1324a2d7f7ba12cca09624b6829a57e34c6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"9cdea1324a2d7f7ba12cca09624b6829a57e34c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.0.5.tgz","integrity":"sha512-wvU8ZjC9bmvqfC0QqGOSoqn5c9T62W30Ecypp1q5rSXq6cWto5/Y/5YuRYDl/1xliLpCCkFh0D1X/OFAxcYTpg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID/LtZoCNwTjqPjQgHJl2fnUZcR0DxFaq3hMShfYkAbTAiApabS+6Nde+I46kqnyZS/N6G143hX8HxZjHMpmW2o/cg=="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-calendar-heatmap-0.0.5.tgz_1491558311814_0.8440070147626102"},"directories":{}},"0.0.6":{"name":"angular2-calendar-heatmap","version":"0.0.6","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":"","repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"license":"MIT","main":"index.js","bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"build":"npm run build:js","build:js":"tsc && minify dist/calendar-heatmap.js --output dist/calendar-heatmap.min.js","build:watch":"tsc -w","serve":"serve .","start":"concurrently \"npm run build:watch\" \"npm run serve\""},"keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"@angular/core":"~2.4.0","d3":"^3.5.16","moment":"^2.13.0"},"devDependencies":{"systemjs":"0.19.40","core-js":"^2.4.1","zone.js":"^0.7.4","rxjs":"5.0.1","@types/d3":"^4.5.0","@types/node":"^6.0.46","concurrently":"^3.4.0","cssmin":"^0.4.3","minifier":"^0.8.1","typescript":"~2.2.0"},"gitHead":"cf7fb9106b4569c20b16c97c93deef56a85f4d24","_id":"angular2-calendar-heatmap@0.0.6","_shasum":"24e43ad663b15576cd83f98fcbe365f95a6db117","_from":".","_npmVersion":"3.10.10","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"24e43ad663b15576cd83f98fcbe365f95a6db117","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.0.6.tgz","integrity":"sha512-GAXUhgVZo87sng6+gCZZ5UFaZSTFZtreH7FhQ9jgSlc4iCrYEUigRrQII+51qKle0Dx5sh28Ekc/Rj2vJXr75Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBbenC9tOcS5+Wd62uLX2kGUf7LhZGLSpPc4EkFaREKHAiEAgNKufUuorsmIR70BwIkuasLsVV+jtpiQaVTDN3P4fCQ="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-calendar-heatmap-0.0.6.tgz_1492251313311_0.12336364365182817"},"directories":{}},"0.1.0":{"name":"angular2-calendar-heatmap","version":"0.1.0","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4","moment":"^2.13.0","d3":"^3.5.16"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.9.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"gitHead":"5bfb663ee0b311bec7d934336569a707db62c4bd","_id":"angular2-calendar-heatmap@0.1.0","_shasum":"a687235f82444b46fcc16753dbaf9d078bfcc2b5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"shasum":"a687235f82444b46fcc16753dbaf9d078bfcc2b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.0.tgz","integrity":"sha512-ScFLV67JhPHDkTbfM9bxnCILkwciGVUTxUixvWZXU8QklGfVlvNYIcP2XX6hskueFQg0AUPgyD0kuCVhl+M9Pw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfV/9HeRz9RKxfsN0uEz53xMh4H77x54Gvi221jCp0wwIgGJVUjS8XnrnNXq/IinT42xQnQ9c9cwC41jd3KCIF8xE="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.0.tgz_1496753171548_0.8252125235740095"},"directories":{}},"0.1.1":{"name":"angular2-calendar-heatmap","version":"0.1.1","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4","moment":"^2.18.1","d3":"^4.10.2"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.9.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"gitHead":"5681653fd3b09ca46a0cd7deb4b2361d5d05361b","_id":"angular2-calendar-heatmap@0.1.1","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-PpTIf3WEJagGj9y7AdUnDGLj0De+xrhfW7egJx5wnQDKUHtL6l4pCVPH/wOSVMxp35aW3btgeB2/L9Z8NH1QQA==","shasum":"c4143f829db3f85790186ea0be96eb0fd43c9461","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCZW99Xu9F8iRJOSVdBs92uFXjPI3JrZPlegfF3Us6AVAIgURD2dYjbn1KtYB7ORfJqy0VlsZiqZVEvxnjzf4e6g7w="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.1.tgz_1507717505917_0.5875673927366734"},"directories":{}},"0.1.2":{"name":"angular2-calendar-heatmap","version":"0.1.2","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.10.2","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","d3":"^4.11.0","minifier":"^0.8.1","moment":"^2.19.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"5cae56e501e565f2bb9e409e16e05452ed027479","_id":"angular2-calendar-heatmap@0.1.2","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-+6DOboam/SnE6PDlv/CLf7IcfH4yG+1uvissHQEP29WAaW+hww4e9f5s65dQ+KSU9MyyldGDIs1aqVyrzBmrXg==","shasum":"24dbb62953e88f3bbb1c59b7c35ae94bd989cc92","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE4BQe3t/3qEVGiZsoOn63qrbSdfaWn5XdH8k1rxKR+TAiAj0E1pPUZ9JQABf9dvOnbDgvFjQjR4YxER+vadi2zXRg=="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.2.tgz_1507834440802_0.24149569496512413"},"directories":{}},"0.1.3":{"name":"angular2-calendar-heatmap","version":"0.1.3","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.10.2","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","d3":"^4.11.0","minifier":"^0.8.1","moment":"^2.19.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"76c6273cb3ee37cfed5d58b45c6436cf43529e41","_id":"angular2-calendar-heatmap@0.1.3","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-/gZJKLpLW5N+xi4YI9AVykNvLnLW3aG2xuBmYcyY7o7gyAMBhEiWWOzZZgRNv1u2ZD2y6FrVpNmbwc7zB0WYXQ==","shasum":"0d0be54362e5ae229ac1306f8e635ce8a67041c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGOM2+uSI1pCjEPfoqNEiSboGS12SMKJbndrrw/y1B7wAiAvcWxHEx0fGE6CVaND6uMm8Un6MW39PH8pA99eaDOWIw=="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.3.tgz_1507904257235_0.11221778066828847"},"directories":{}},"0.1.4":{"name":"angular2-calendar-heatmap","version":"0.1.4","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"e632cd47fe06d32d7cf23e2f3ff5acd8f49b5404","_id":"angular2-calendar-heatmap@0.1.4","_npmVersion":"5.5.1","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-1ZnHDitlxeKaT5bJekZ7pgl/7ciyehJzJul9TKa+/Uot/cz+XdVFTLlgXGa2C0sC7rNBgCmPfR/3DrWEA9qrdA==","shasum":"4ebf384183ebfd41a7d8b23b3593eac520456164","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBNAplYSSWc65OZjBfNEURTKbkdyyp8WH2D/bJvoZljLAiEA9/Is7O+fF6Vw+rC69F6xdhYE7abO7fBwMclSSUVeHfM="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.4.tgz_1509661525556_0.07565655512735248"},"directories":{}},"0.1.5":{"name":"angular2-calendar-heatmap","version":"0.1.5","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"5516556cc1dc2846ad2dd5415d5b8ba1d4f390af","_id":"angular2-calendar-heatmap@0.1.5","_npmVersion":"5.5.1","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-Bin6ETcQgI5npu/KfClBRvbLsw46YYWWo21kHFLdCT0pUYh8ks24132aY8BjitxKm7YUiXjXoVM+086xHZ12BA==","shasum":"3a7eabfae2f78566d97599f0fa2d7dc62c209ef4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDKcqcA0pwRq/P71FnQsmwCSjCTlK2EJwCaYKU1Hz3xSAiAcaPIYwgDLvkNeHp2mdBNYhPv+m6V76x5zjL1lU5Hznw=="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.5.tgz_1513174224765_0.20835364144295454"},"directories":{}},"0.1.6":{"name":"angular2-calendar-heatmap","version":"0.1.6","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"ed42854dd96a70280701d9aeec4fc0d5d12ec80a","_id":"angular2-calendar-heatmap@0.1.6","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-FWH+IYOjzhWjDt6HIHvdzZg0RWjf+kvQQRigXZtdnVjKEWaju6rW4M6Y64BigaaWsfeDcGe+maNieKRp492CEA==","shasum":"0c97f39bded1ce4954a241e31a962832a04b3842","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNuJFD2ClXlTP+qTnsUyH/SLvh8WiCaPbGeqx59Hfr6QIgIYrWqFUFLXlGhfF+s0TUqwD/79MDp/VIFltEcuuOCKA="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.6.tgz_1515768666492_0.009753268910571933"},"directories":{}},"0.1.7":{"name":"angular2-calendar-heatmap","version":"0.1.7","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"9500747aeebbec96c875eb56ea646e8f94c9524b","_id":"angular2-calendar-heatmap@0.1.7","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-v1zs7R8RzK+qf+NhagYOCgMaLuRd4M1lu1B6YAIS+FRKRo/Uqh4FjmKyimbCpMV/sX8dPvLZYaF0xWVrHSiJJA==","shasum":"9183124d6246c65d6c246f3d406ca1deb0984252","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.7.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC6jcN0UfvCy/MA+qWcYrFbMMKvQ2EogjdBcIuEuZC6hAiEAqBJvKWbtEyo1ABveZpIT9cgokAn6Y9QBHVeopZz5UNM="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.7.tgz_1516014768601_0.399956488981843"},"directories":{}},"0.1.8":{"name":"angular2-calendar-heatmap","version":"0.1.8","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.1","rxjs":"^5.1.0","zone.js":"^0.8.4"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"7bffef4211cc9f1cfa2536269f3bf4b64479e8cb","_id":"angular2-calendar-heatmap@0.1.8","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-RgDM0IyVmHmv+3gKrzpcyeQLQEX08IX+b4ClkCUe/K2aS2hfWs3StbszHKoQ5S61CQfaCjoxtmjG7ohJdaVodw==","shasum":"ce24a12228cfae6d53130d00dfa74d80c565d517","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJvGGuFw/cBOxQBMgJp9ar0UUT2VplAumbLZxT4JR2+AiBF2i4vuRKkQU72Pp8eNgYaBwqnWpoyPpYs8ErD259bhg=="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap-0.1.8.tgz_1516296957247_0.5799730222206563"},"directories":{}},"0.1.9":{"name":"angular2-calendar-heatmap","version":"0.1.9","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.5"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","rxjs":"5.1.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{},"gitHead":"baf38b82751df51e69a88296d59390215097d7a4","_id":"angular2-calendar-heatmap@0.1.9","_npmVersion":"5.6.0","_nodeVersion":"9.10.0","_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"dist":{"integrity":"sha512-k3sI2Vl6WRSLNCVeMNEE0c1CXucQbQ9dksjdzwRYN3a/au1ZxMcNPVgXbH/+r3raSGB9I2xEss9AK5Q8QsYGZg==","shasum":"1db3f47c862111b0d988c75153b4a8fb53c2901f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.9.tgz","fileCount":24,"unpackedSize":1052206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHR8ACRA9TVsSAnZWagAAX14P/RQ87VJ7tassInLuJeTc\nXbcpaDbxre/k39pZB7RTDamp36TKJM9aiV6zKox1S3cCmXY6QBE5YJz+G0Z1\nK9g8pb6Kiglf28YpPsB+F/EZkPN6Km/WYO1BxQamjU6d6Ia6OAyafNXBU/Ae\noGfy4DYcANZuvrdGKFjWe3T8oomd2PwZbAXkO53Bo8h6+g0zbBxbjpj2yxWS\ntmok9m/GCNmSDWHRi8jfByaq1WgpFGBldOV1KouFzDhdqO+LOEZMWtM15GPa\nS/Tau7kxg1mQ8WjJGQbeJ4s3J47I00ABzWu4BUw1HaGcSIKI1Lf399Pir5KB\ngN2+J44Y3BVy1zh/2u3fnkNWDqQRZYuZgtK58cFsrlnrMhMxwmAD3IlMPyJ2\nslv8Hsq7JvL+Ye950HjzRyckZfFztVkaTtH9CIQP1bEiYH6ugVihBVLFRxvd\nsXOdPNs3VHmCyQe7eMJ5N3+Ca0HYP1o02pdf7Q5o6rZnEoMzuH8RNtsiVSRP\nApMcP15tPcXH6PghhxUhC+Rwljz4l3Qf51NZoRdZu8xV6NodTTy4HwynveKR\nBmnmJ+8jBcyVZVaN/XFv4b8ea63AtIIf9e+MjwI9wB4T07gmW6GHedXMq4Gh\nKKI3s+vvuQDLR2XeK6ykBGex7wz9rLSAZ61edPkKyVE/ZVHcj7RS1DPtB/tl\nlxJ7\r\n=Z5RH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDt6MTdz5drc2VGRec2F39789sKrMRg1RMRxBgJsSCIUwIgbGKwVR02HGM5A+EybAJcS19MFhYm41PlXRn2jgJio3s="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.1.9_1562189565104_0.9524447846341482"},"_hasShrinkwrap":false},"0.1.10":{"name":"angular2-calendar-heatmap","version":"0.1.10","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.5"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.4.7","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.29"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"d3":"^4.13.0","lodash":"^4.17.14","moment":"^2.24.0","rxjs":"^5.5.12","rxjs-compat":"^6.5.2"},"gitHead":"94af43480f3819b0098a30493cbebe11105a6136","_id":"angular2-calendar-heatmap@0.1.10","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-BAi3u8PQPOUoGAUrvo4870Zb1cm6hSAe1aws6iKHn/FXd7PEwiD7Xai7ETkye89zZF53qt3F66K9Fqzu04fXtw==","shasum":"0ad78f7df6b39d9753292a162c12705ada7634a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.1.10.tgz","fileCount":23,"unpackedSize":1032107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ95FCRA9TVsSAnZWagAAyMIP/1MfIjoO4pTwPWNG4x7i\nGaFMAmYlKhzV9d6TyjuYMXOY3nUITaFbLiT7CUKVonb8IFPZgiJ8N31frr6r\nuRyPTTB80DwK9yD3NPIntg9r29+O8eCUdgj6RvQqNayF/2arTgyPqyQoXPLd\nF4Bf6VrbK09Fz+BoGKOH8hbeDpQe88GcV6zIMytlT9v3MWrnQ3xGOUhr6lFt\nlsIkgbPB8JZvM/uULI7qJvriRT3lESPv+pD+/5xEIk7njpEhG5rlfDjKaqRy\n2Pl+af9nPLOGCAFHUujyyK4W+haHhdPM/wgGHdcvgIlVnmHbuj1O44pZvVXT\nmrklnyyK/070umx8H+6JMHWa/gYL+0LVwauvxUy6dNs1kgnqrQLXGkb+CaKq\nBFRbF9KWiw2hCu4tjS0WgnzEvjUmghwr+moPyhAJZ0c4uQLShjemJ065pQQo\n0fgx4zon5IaGmc+wmn8e0yW+CYa78WkyilJ3KpVgxTojhvaPfgmZRYApculf\nED4wyYsqKJHMgGa1OPCaElJzxSA7xVar8CqvEyQ4fEozb3ZMznCZj/3+Mjn/\nl6VzBVEGbWrczfh2du12dY0lOXLGIWY782YunOkzigUAfDvqb8Bqzh+5Jyrc\n6/JqmF5re1+L/3WgHW2eZ4/hYRMQ/zUSXKfYnKkm98MlA/T+wNGb+XO2Wqts\nVGd4\r\n=wTIk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGBMo+3ICtnYCaWkyaN7tt0K3GB8xMGh5XhhIz76dXrfAiEA+F86uw7Kn4u1Mo4ZAKVEfBakYpNl+ArMRmqYjjkCdmY="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.1.10_1562893892290_0.7526516157343355"},"_hasShrinkwrap":false},"0.2.0":{"name":"angular2-calendar-heatmap","version":"0.2.0","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.5"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.4.7","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.29"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"d3":"^4.13.0","lodash":"^4.17.14","moment":"^2.24.0","rxjs":"^5.5.12","rxjs-compat":"^6.5.2"},"gitHead":"0af46c362789751a4d77bbc187e7bad322b15bd5","_id":"angular2-calendar-heatmap@0.2.0","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-MurSdqs3O7hjBu+6jpRNlqNLbXEMf1ZlvozpufPGic9tHNUPOWRaOV/RCzuk23qguckXJqbOea8x12WyYvOCvA==","shasum":"4810a4c04b4b63eac565793fa7d7f1b82abb7943","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.2.0.tgz","fileCount":23,"unpackedSize":1052979,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaAnoCRA9TVsSAnZWagAAyC4P/3cgCjnK39sXejcu8eAT\nRYMWUo1t5SpeXf8/t6mLdf0Q8UPnxmkwivstvmxsphGuBYecOOB8lteM39CR\noBjhOMWk7Zci2VIHTi/6XSs1H3YHcQE3TXFCh+7kTRSc+9HjA/3z/Q4YFoE3\n9HZ5iUJwJF9CKE32lhN/dneXrZjlWlyQeJzndVtx+LhyQwmgPIt46NqR1css\nklyS7vfldZY1uyR2fj/fQ1BO+VL0pyC0n9G1u9AiYsVYkYrEu5YEE1e+m4Ug\na2+Hm/T/+rLomsTwWnjHLW2nLLXNM183YZP/ZaxyxZ1tN7kbBKwM0iOmHXS4\nmfJhiVdHNsqL7mVJSfBXGXclP6qOlZdNhGOJA0C7m7VgvYrJ3TZGMRueZX9V\nHMUb5ALmSWJydNjcyX5K0Eclg+gMCz845s+6xcMr0RIJkMpT4vriNYfa6Pc+\nf3oFGwp6lt6x/LAXBagJQcSm1zCxfB/reuCdDJH/ZjYvX1M5SF2jkreobdUh\nJuLMrVibmM8zIX9SnC9qxE1TlOKjYfC9vQSzduijbvHmF1ZBZcLJAdjCbYyx\ns0eHS/fyUJefXAaaZRZBuvBZu/4e4XlznrUEMdzhPfXp+QoiPQzWkX+ulzQ9\nJmPYUzYuMBxc0ui9Y43JcZ9zicP3npLqanZ/GWOmGguaacUayrt3hufC3+Wt\ntCcB\r\n=Gm3x\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCR/SRmK1j3P4ytrloWFygHa8HKJBrKPQQTgYiOdVfVJAIhANN6iVRtYg22ylXkbbn+H571J1hGCd+G6Zxq8weeeEeA"}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.2.0_1567099367933_0.6724367965362841"},"_hasShrinkwrap":false},"0.2.1":{"name":"angular2-calendar-heatmap","version":"0.2.1","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.5"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.4.7","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.29"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"d3":"^4.13.0","lodash":"^4.17.14","moment":"^2.24.0","rxjs":"^5.5.12","rxjs-compat":"^6.5.2"},"gitHead":"fc01fd4da6d570a161d0ec0cd8387b07fb42fb35","_id":"angular2-calendar-heatmap@0.2.1","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-oA3yVFYDS95xD4Hs09dwbN/zVSHP6lmq4Tyiw11pz+yzncfGXHSacYwkz0NEQ0Im/isVprz/Fsw2iPEjVHDJNA==","shasum":"f90c16f752e95fdc54456badbcbf2cc7cec6bafb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.2.1.tgz","fileCount":23,"unpackedSize":1052995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbWzkCRA9TVsSAnZWagAAh1AP/iqkwS4+A17FLmwVFssA\nsLaZH3duUzLC7G7dgHo2PNpzVAZQcFI3VncIvNoHwoj8YOGHt5Qn1QDfVHPa\nGvhBfZjyzAZK79ievZ6nzes222JBuXdQqgC33Ojct41jKVl++oJh2P6OfCuZ\n8Cr/FNvj3lSCiSwN6Yn1BkLia5wek0532FcqveeqD/+0CS7xE06W/e8AH4jT\nlLcb5I7Evvnhwq9lTZ2n2YfpoqWM5xJwv6wEfU2qpmzN+PPjDopPoD1NwLSC\nDguVLsrU5SufXp6mBzcVV+3M7WrdlVQGcbqRorHMl8Upxx63rqQolhkPLtps\nuRADTxigARlUenuL4KP0PqrZlSFwgXAGtlmNHpGh+pVPT5NPk9ZdUsusrdvf\niMcdEi/Q3YxTJgR+rJ1fyxa+c17cSMU4POWlX2e7NMFqhAmlL6Ru5pUqukoh\n7pMw1XKNdph7LSxnEMIrXGLUb/ZDBaZUWtm6Kor/rEGqw1/vDBxZujth3ec5\nP7cVTcPY/Ml0LoPfnsW1y50mKYpUfDZwqbWvzIevv+OJYjZ60OACWd80SfsZ\n+kr4Vt+Lcq7h9QVaJgtwxGub5AcsjtiXrxOjt//mKZHP6lnURNVRPrfZg403\nJ3YUym/AKK+ja1etKMl/x7VDSiZZgU7i0Jkixf5eqyD1cQ5pM3k/o6v14mtt\nMhjV\r\n=D/zn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+Fxniggsn2ZfCsDrrR8EUPaAlYU4PANlctWXoHcDImAIgdRWR6Sru7GNxrMQMu2GmUXRA3I+bdF/OwgaRrAlUAFY="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.2.1_1567452388219_0.17495213485828898"},"_hasShrinkwrap":false},"0.2.2":{"name":"angular2-calendar-heatmap","version":"0.2.2","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.14"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.4.7","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.29"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"d3":"^4.13.0","lodash":"^4.17.14","moment":"^2.24.0","rxjs":"^5.5.12","rxjs-compat":"^6.5.2"},"gitHead":"0971143748c3e877f72e4dd064697a7c6dd932aa","_id":"angular2-calendar-heatmap@0.2.2","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-sqtCDwf5I5qA77mReA0OHeeAsUvvjw8/D9afVXG3RVRkdx+s8UBrJjtZlmYcT6+o9Tj2my3SfsjZE7yKkfQtqw==","shasum":"c954d957d60f3c8c69d45103a50ccad01e958461","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.2.2.tgz","fileCount":23,"unpackedSize":1053079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbW6mCRA9TVsSAnZWagAAO38QAIEN0cp4USNMBhF3hTmd\n7K+Or7pR2CHdL1mKxZ17zqXOlt0GIpC6aTtNu/hRDvc/v22fl9CBJi4EZk7X\n41b9R0kk9KIRadQoLEK/Dp/gvEdYnlsoUWQ0+MnSRQO275ujujGDkPdkgPJx\nd6V3SHgrFiXCD7sxsUfV3Sytr+GMOQDYqIiLJ+CtAflwNz0s5dGtLzxk5xpM\n2GlpAXsSjVilsmvaKpIjg6Czlbl1GImBsck3hlbzI0XBvV58TgrsdW8fcPTQ\nuS5fDNC7gyDlzLKs+5u24FUw2aPviumXqBpre3pAH4YZVNIjTLFC83yPC4FJ\nCvcn5Ph1jgdEd4voSclu7dFlvxxaMGHcrkIxFyaOFfQV01nLMdB02GJpy5Fr\nUw9+Ib0pEYoftpMMCyBTuX5gJT5hfwFLuDXjAHzY2SjNbrBpYVspfT48fMzM\n1j/4VKQhFppZpL8fclxPhzdqWIrAuiSyuAEB+4BJ+8yEFnBD8Cfg7OBHSGQH\nxVyCGn7yTqkqkd1++aLTxH7SZXQwngePNOVYS6sGizM2gPMrE6QJXrnT2tfQ\n9+UN9pdZL9RznPP3lZZ3FI67Do52TpROmQh+Acjn2yCYmUBMrpRauUNxTEwo\nOr9KE1h/KwhcSMbhAwy9K9VpZOu3HDq6M15tr6Pj3iKELxfOh4SS/zEZMdPF\nGDQl\r\n=3Msb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDinm/znHjb8bOUp1u8D4Cl+xmrXrn/mVdJicwZEpOVJAiEAuOM3Jj3n3xdStmubBF2eynchto1c8VkbcdQn08hTiz8="}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.2.2_1567452837579_0.706588803047574"},"_hasShrinkwrap":false},"0.2.3":{"name":"angular2-calendar-heatmap","version":"0.2.3","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.14"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.4.7","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.29"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"d3":"^4.13.0","lodash":"^4.17.14","moment":"^2.24.0","rxjs":"^5.5.12","rxjs-compat":"^6.5.2"},"gitHead":"cf3537c0759739160302fd73a8f7a1ed445abee5","_id":"angular2-calendar-heatmap@0.2.3","_nodeVersion":"13.12.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-HaabI2F3Gn9MzjmqdfX0ejccpSVaOVeuDZDQDKV87jyrNxYTe/ndPo1gXv0SKPktK6MvlYDUMtAfROfz23FZbQ==","shasum":"a9d847f4074d1c3c13b2142cd1bfb1d8e4464161","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.2.3.tgz","fileCount":23,"unpackedSize":1055846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerHXBCRA9TVsSAnZWagAAcqcP/0tlTdmlalKW1TGiLUey\nrmTfdh404OlGqvHCtIKQ4NQgRWTSe9Ska/a4RcROCZsEkXQHq0cT19TN6i03\naTfllvDQUrZAFB2yBT9/IXToeidVPJk5zqIbWJxqBvp3Xc9k/b/OwELzwVky\nZdJ6/R60lmAIpZYVRGTlLIOXZX613DAJ0KC2YqBmAHQKOSu6upLLzgRbRa7c\n95fnE6WtUPe3DZ7vK2ZMNyM3B1RKp8G+ALQJAP7hhPmsCxronsvL/atqvBof\nrM/NC+8dQ3qUaGr+eg/RGWcvgpkWvghS0VuwFdSGMO/7UFAxuAEoCg3LZgfX\nNIbd4zyULEy8UYmGPJ4JtzPpEfBeQMn/6MOYtOfuio4H6+7Db5Tq3JVzXYuD\nTAt6WxIOw3MTZgHPJGZS/ufxdmHBIijt+dqrafuX7YfLN0KujBamoXDNVKir\nRyGpQj2m29ZXThLFLvn7xxAl9RbVP1/vRWk6yNcxoiNERu9cX2rJh6K9SXeh\nHMSpEAxhF6nYbihfgvlIj3396xBdy6AI58KVjBIpBE3rarwgrc365xbH5A4B\naoSvZxx9KRn2nVeKR0y7h3G6QXwfSMe8qcw7bi7KRR0KMMTsOZKe3UWCNenu\nimwOe14HaUcGDxfb5eaLHvJHwqMk8SdiR7v53VjrPXJKBO96FiN+QBRaW1vC\nG/B3\r\n=Tnux\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDw+u7qtJChD3Xmm6XzXy0pWNW6MThlQp0k2dXa67tCRQIhANmw5kbilu6Hxd6jD4p3DkL6Xwgswpt5DQmktiwMdtL7"}]},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.2.3_1588360640882_0.991062308216198"},"_hasShrinkwrap":false},"0.2.4":{"name":"angular2-calendar-heatmap","version":"0.2.4","description":"Angular component for d3.js calendar heatmap graph.","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme","author":{"name":"g1eb","email":"mail@g1eb.com","url":"https://g1eb.com"},"repository":{"type":"git","url":"git+https://github.com/g1eb/angular2-calendar-heatmap.git"},"bugs":{"url":"https://github.com/g1eb/angular2-calendar-heatmap/issues"},"scripts":{"clean":"rm -rf dist/*","transpile":"ngc -p tsconfig.json","bundle:fesm":"rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js","bundle:umd":"rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js","build":"npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"},"main":"dist/calendar-heatmap.umd.js","module":"dist/calendar-heatmap.js","jsnext:main":"dist/calendar-heatmap.js","typings":"dist/calendar-heatmap.d.ts","peerDependencies":{"@angular/core":"^4.0.0","d3":"^4.11.0","moment":"^2.19.3","rxjs":"^5.1.0","zone.js":"^0.8.4","lodash":"^4.17.14"},"devDependencies":{"@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.4.7","@types/d3":"^4.11.0","@types/node":"^6.0.60","concurrently":"^3.4.0","core-js":"^2.4.1","cssmin":"^0.4.3","minifier":"^0.8.1","rollup":"^0.42.0","systemjs":"0.19.40","typescript":"^2.5.3","zone.js":"^0.8.29"},"engines":{"node":">=6.0.0"},"license":"MIT","keywords":["angular","angular2","angularjs","component","calendar","heatmap","graph","visualization","chart","time","d3js","d3"],"dependencies":{"d3":"^4.13.0","lodash":"^4.17.14","moment":"^2.24.0","rxjs":"^5.5.12","rxjs-compat":"^6.5.2"},"gitHead":"5744258398c9c804b750d0bee7e3048c49ac64e1","_id":"angular2-calendar-heatmap@0.2.4","_nodeVersion":"14.4.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-BC2CBOju4FL+P9bZsy4nBDvPGy5UiZAdT320CDNZpZD+/k/1z2Y+SC7kHYmZh5VgmR77XGXvqzimqOTMsgMQNQ==","shasum":"8a313b22fe94a1bbacb3731fd6101cd0a11b38b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-calendar-heatmap/-/angular2-calendar-heatmap-0.2.4.tgz","fileCount":23,"unpackedSize":1055846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmsWrCRA9TVsSAnZWagAAMs8P/1tcSpCg2/Q4ni8o6DIa\nFI+zI3k2KuaxTYIMThC8ywwzNH4B5L3eEsHKmQCiFX367qTdQNlhOp8nq+Oh\n+wqQrqU6g8WLiMrJ5GUKNxMbxQqmn+zqTMrpZJDzWdLd1MgutJqqv4dGpkAL\ngGGXSdInbiOO/0QAtNrxuDogqxTMHdU8nRMYeQBkhNzM7Lp+KSGVgBGnUoli\nTyLGjyNNCu8lG2ZySoC3UeYLBvYrJ2/9jJ8D7uo72SfOqs6/C0F3e/HFB2z6\n3g3JDmFC/8YA5glnhkaEVOx3Yc5FXv4REzxca/2Ehm233KRlNwbWpKM2Kuiz\nFQswD81YUYUm/N+S/Gl4ZykMNsfs64NH+XAweKbpLLiQPao7f7VeuzT/sZy9\nUltUGUJ8QKeom6P9Po5cL0Xkk6i9wFrGPUFG5SddRQFCT5vOPjg7FSfuBuK5\nD7jl/INT8PzU++bCfVX7n5sn4FAABmho8sBBUbpgw2VCZL7vlh73HgomUd+U\nB2qc2vcaxuLGpy5Y31QRq4kd7vP/eVNNwzphktDI1y53FebdWfVgNsvOelMb\nUOKhz65r930tdxP2eDtxQe+YPExu39iuFy7bE1yXUmv3lOxQ/GRe4C60DMdl\nL91BZ3viKKv44PRTZofEUo1m3FLUDVn/oRaWSFgbURGc/q1S5cFQhXSF+Epd\n4YG+\r\n=ywu8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbTSkvJERrLDl7QS5+jbSpyDAnLxgCsZpRmBWucBheYgIgMwSZkXX7kOBekGfE2Lw1OJznMTMhoNH6tX+tc39mBJY="}]},"_npmUser":{"name":"anonymous","email":"mail@g1eb.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"mail@g1eb.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-calendar-heatmap_0.2.4_1620755882961_0.7857426228265489"},"_hasShrinkwrap":false}},"name":"angular2-calendar-heatmap","time":{"modified":"2022-06-13T03:00:10.834Z","created":"2017-03-05T23:49:38.004Z","0.0.1":"2017-03-05T23:49:38.004Z","0.0.2":"2017-03-10T15:28:07.424Z","0.0.3":"2017-03-11T01:27:23.376Z","0.0.4":"2017-03-11T02:09:22.319Z","0.0.5":"2017-04-07T09:45:12.538Z","0.0.6":"2017-04-15T10:15:15.580Z","0.1.0":"2017-06-06T12:46:13.294Z","0.1.1":"2017-10-11T10:25:07.378Z","0.1.2":"2017-10-12T18:54:02.458Z","0.1.3":"2017-10-13T14:17:38.731Z","0.1.4":"2017-11-02T22:25:27.091Z","0.1.5":"2017-12-13T14:10:25.029Z","0.1.6":"2018-01-12T14:51:08.036Z","0.1.7":"2018-01-15T11:12:50.193Z","0.1.8":"2018-01-18T17:35:58.171Z","0.1.9":"2019-07-03T21:32:45.273Z","0.1.10":"2019-07-12T01:11:32.478Z","0.2.0":"2019-08-29T17:22:48.112Z","0.2.1":"2019-09-02T19:26:28.367Z","0.2.2":"2019-09-02T19:33:57.738Z","0.2.3":"2020-05-01T19:17:21.070Z","0.2.4":"2021-05-11T17:58:03.169Z"},"readmeFilename":"README.md","homepage":"https://github.com/g1eb/angular2-calendar-heatmap#readme"}