{"maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"keywords":["angular","progress","circle","round","svg"],"dist-tags":{"latest":"15.0.0"},"author":{"name":"crisbeto"},"description":"Angular module that uses SVG to create a circular progressbar","readme":"# Angular SVG round progressbar\nAngular module that uses SVG to create a circular progressbar\n\n## [Demo](https://crisbeto.github.io/angular-svg-round-progressbar/)\n\n## [Click here for the Angular 1.x version](https://github.com/crisbeto/angular-svg-round-progressbar/tree/angular-1.x)\n\n## Install\nFirst you have to install the module through npm:\n\n```bash\nnpm install angular-svg-round-progressbar --save\n```\n\nAfterwards you need to import the `RoundProgressModule` in your module:\n\n```typescript\nimport {NgModule} from '@angular/core';\nimport {RoundProgressModule} from 'angular-svg-round-progressbar';\n\n@NgModule({\n  imports: [RoundProgressModule]\n})\nexport class YourModule {}\n```\n\nOr `RoundProgressComponent`, if you're using standalone:\n\n```typescript\nimport {Component} from '@angular/core';\nimport {RoundProgressComponent} from 'angular-svg-round-progressbar';\n\n@Component({\n  standalone: true,\n  imports: [RoundProgressComponent],\n  template: '...'\n})\nexport class YourComponent {}\n```\n\nIf you're using SystemJS as your module loader, there is also a UMD bundle at `./node_modules/angular-svg-round-progressbar/bundles/angular-svg-round-progressbar.umd.js`.\n\n## Options\n| Name           | Description                                                                                               | Required  | Default value     | Possible values   |\n| ---            | ---                                                                                                       | ---       | ---               | ---               |\n| `current`      | The current progress. Limited by the `max` option.                                                        | Yes       | `undefined`       | `number`          |\n| `max`          | The progress' maximum value.                                                                              | Yes       | `undefined`       | `number`          |\n| `radius`       | Radius of the circle.                                                                                     | No        | `125`             | `number`          |\n| `color`        | The color of the `current` value on the circle.                                                           | No        | `#45ccce`         | `string`          |\n| `background`   | Color of the circle's background.                                                                         | No        | `#eaeaea`         | `string`          |\n| `stroke`       | Specifies the circle's thickness.                                                                         | No        | `15`              | `number`          |\n| `semicircle`   | Whether the progressbar should be a full circle or a semicircle.                                          | No        | `false`           | `boolean`         |\n| `clockwise`    | Whether the progressbar should rotate clockwise or counter-clockwise.                                     | No        | `true`            | `boolean`         |\n| `responsive`   | Whether the progressbar should fit inside its parent container. **Note** Turning this option on will override the specified radius in order to make the circle fit in its parent. The radius to stroke ratio won't change.                                     | No        | `false`            | `boolean`           |\n| `rounded`      | Whether the current progress ending should be rounded or straight.                                        | No        | `false`           | `boolean`           |\n| `duration`     | The duration of the animation. Pass 0 for no animation.                                                   | No        | `800`             | `number`          |\n| `animationDelay` | Milliseconds to wait before starting an animation.                                                     | No         | `0`               | `number`          |\n| `onRender`     | Callback function that gets executed every time the circle is animated. The function gets called with the current progress as it is being animated.                                | No        | `undefined`       | `Function`         |\n| `animation`    | The easing function that will be used when animating.                                                     | No        | easeOutCubic      | linearEase <br> easeInQuad <br> easeOutQuad <br> easeInOutQuad <br> easeInCubic <br> easeOutCubic <br> easeInOutCubic <br> easeInQuart <br> easeOutQuart <br> easeInOutQuart <br> easeInQuint <br> easeOutQuint <br> easeInOutQuint <br> easeInSine <br> easeOutSine <br> easeInOutSine <br> easeInExpo <br> easeOutExpo <br> easeInOutExpo <br> easeInCirc <br> easeOutCirc <br> easeInOutCirc <br> easeInElastic <br> easeOutElastic <br> easeInOutElastic <br> easeInBack <br> easeOutBack <br> easeInOutBack <br> easeInBounce <br> easeOutBounce <br> easeInOutBounce <br> |\n| `innerCircleFill` | Color to use for the circular area inside the gauge.  Defaults to `none` which is transparent.         | No       | `none`        | `string` any value acceptable for the CSS `fill` property    |\n\n\n### Minimal example:\n```html\n<round-progress [current]=\"current\" [max]=\"max\"/>\n```\n\n### Full example:\n```html\n<round-progress\n    [current]=\"current\"\n    [max]=\"max\"\n    [color]=\"'#45ccce'\"\n    [background]=\"'#eaeaea'\"\n    [radius]=\"125\"\n    [stroke]=\"20\"\n    [semicircle]=\"true\"\n    [rounded]=\"true\"\n    [clockwise]=\"false\"\n    [responsive]=\"false\"\n    [duration]=\"800\"\n    [animation]=\"'easeInOutQuart'\"\n    [animationDelay]=\"0\"\n    [innerCircleFill]=\"transparent\"\n    (onRender)=\"doSomethingWithCurrentValue($event)\"/>\n```\n\n### Configuring the default values\nThe module comes with some pre-configured options for things like colors, size, stroke etc. If these\ndon't match your app's design, you can change the global defaults by providing a new value for the\n`ROUND_PROGRESS_DEFAULTS` injection token. Whenever an option isn't defined on a `round-progress`\nelement, it's value will be taken from the defaults.\n\n```typescript\nimport {NgModule} from '@angular/core';\nimport {\n  RoundProgressModule,\n  RoundProgressConfig,\n  ROUND_PROGRESS_DEFAULTS\n} from 'angular-svg-round-progressbar';\n\n@NgModule({\n  imports: [RoundProgressModule],\n  providers: [{\n    provide: ROUND_PROGRESS_DEFAULTS,\n    useValue: {\n      color: '#f00',\n      background: '#0f0'\n    }\n  }]\n})\nexport class YourModule {};\n```\n\n## Browser support\n* Internet Explorer 9+\n* Firefox 28.0+\n* Chrome 31+\n* Safari 5.1+\n* and pretty much any browser that supports SVG\n\n**Note:** Some older browsers may require (a [polyfill for `requestAnimationFrame`](https://gist.github.com/paulirish/1579671)).\n[Read more about the `requestAnimationFrame` browser support.](https://caniuse.com/#feat=requestanimationframe)\n\n\n## Development\nThe project uses `yarn` to manage dependencies to make sure that you [have it installed](https://yarnpkg.com/getting-started/install).\n\n*  `yarn` to install development dependencies.\n*  `yarn lint` to lint the source files.\n*  `yarn start` to run a development server. Go to `localhost:4200` to see the demo.\n*  `yarn build-lib` to build the library in production mode.\n*  `yarn build-demo` to build the demo in production mode.\n*  `yarn release-lib` to build the library and release it to npm.\n*  `yarn release-demo` to build the demo and deploy it to GitHub Pages.\n\n## Credits\n* [Modernizr](https://modernizr.com/) for the SVG support test\n* [Robert Penner](https://www.robertpenner.com/easing/) for the easing function\n* [opsb](https://stackoverflow.com/questions/5736398/how-to-calculate-the-svg-path-for-an-arc-of-a-circle) for some of the math\n","repository":{"type":"git","url":"git://github.com/crisbeto/angular-svg-round-progressbar.git"},"users":{"xhdhr10000":true,"mdedirudianto":true},"bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"license":"MIT","versions":{"0.3.4":{"name":"angular-svg-round-progressbar","version":"0.3.4","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.4","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"b0deed707c77bd3c40b56f3bd395020b5d79ed5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.4.tgz","integrity":"sha512-6NOay0MjkONxit5q9CpyEH45OTXR3ZrYpJFYxk9AMd+ncUmzZfR/MqjxIvAwJU0lrRtrhlE3z51tiJuVJ4PNsQ==","signatures":[{"sig":"MEUCIQDGw/ckJaUP1qjnCDtLFiC+greCnfdtKv7Xmbbc9EN7cQIgFoyjrNffkvQSq5M4480COXisqv3sRCLCdeHNQGUkNNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"b0deed707c77bd3c40b56f3bd395020b5d79ed5d","gitHead":"8f206912b2efbdc7ab228952ad61c86716a89537","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.11.2","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"0.12.5","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-bump":"^0.6.0","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.3.5":{"name":"angular-svg-round-progressbar","version":"0.3.5","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.5","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"ec6cf24926b5f17cc4f3cbb365f6b8f4cb61b31d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.5.tgz","integrity":"sha512-GVGdR1vrYhU7XcJfpdyVG/uAn/QFuP3GzLxbi2zNH3SvDzKHgsthnzPXDzL7vkmEQj5nqxpndfdtkTP/nmiEvg==","signatures":[{"sig":"MEUCIEV05ID5aRGk9urIrFVxFj3dO44uu01hTUBKEhz6NtbCAiEA/idRrKNLtjj/9d/vyM6/xlW3dhPbO8iCyCI5PjKH1Nw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"ec6cf24926b5f17cc4f3cbb365f6b8f4cb61b31d","gitHead":"0ae4addb8b140ef1d9eb90a15104b61832359854","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.11.2","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"0.12.5","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.3.6":{"name":"angular-svg-round-progressbar","version":"0.3.6","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.6","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"5c7d5879a3857d20c1bc8a3adfe175fb31f81940","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.6.tgz","integrity":"sha512-Na2bySB5rpikKzrlzEbE7ARLsw3cOg+c+9XyTr2DyzdxRJw8fioD6rxdP1o+BXP4TKzjU2T4gA4bGi2QX9f2rQ==","signatures":[{"sig":"MEUCIC9rsFlUurtfV0Zi07bAiXZ3lO/kU8RsBkgoX24VliCQAiEA5Usaf9VK25UyxYmQbFqrFJa9yoNP2FeDfP4XnNdIv30=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"5c7d5879a3857d20c1bc8a3adfe175fb31f81940","gitHead":"3c1261c0626a2d20226b0a6ac11320a5261817ee","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.11.2","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"0.12.5","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.3.7":{"name":"angular-svg-round-progressbar","version":"0.3.7","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.7","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"d4eea610115777a6c5aefc7ab88f8384176d3527","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.7.tgz","integrity":"sha512-GZ95r6iGEbmAvwIo6vfzVIHDlbuWb37DZKv7TzLgVl4bkYRe+ws5pRkd4XrvnMqlwrtVWkxU8VF4SI3uikDjXw==","signatures":[{"sig":"MEQCIC0HoEiI0BVUaicnrcY5E2nVZnbIjyu+4WpjuO85tyJSAiA11ySEq/2bL33HgSOJZb8mTbeBAYurHdTju1DqSQgMkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"d4eea610115777a6c5aefc7ab88f8384176d3527","gitHead":"445e8fcdeb722dec475fa1567bb8ea567ff127f4","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.11.2","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"0.12.5","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.3.8":{"name":"angular-svg-round-progressbar","version":"0.3.8","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.8","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"52b06c159cfaa9b9878fb89b6c11e591c6697bf8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.8.tgz","integrity":"sha512-LQBvnQq9zhr+/ZsfErXInzCMs0SZoAqRs4iiyr/YjMSmvMPnVSMJohlsf3lIzzWJmf7u4kmFWbI2b6LRBlQlow==","signatures":[{"sig":"MEYCIQDq/QoZ0pR1Okzgdo0Pj+MYxb3Wla7a97875IygLfc2ugIhAJKseSOfz6lslOQ4mg9xE2ZuuUGqqN8auBuXOUiS/EQn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"52b06c159cfaa9b9878fb89b6c11e591c6697bf8","gitHead":"ca9b7360b7c368e67b5110fa078f2298bf6c25da","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.11.2","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"0.12.5","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.3.9":{"name":"angular-svg-round-progressbar","version":"0.3.9","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.9","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"e14857133d521dc668d7af7cd76be8bdb62b719a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.9.tgz","integrity":"sha512-VEgmpoe8bfDm+2kmKbIesvF5T2EDFhgmCHW9Kcq3pYBH0erdf+WHzoObbI8ZF0+oh3RQuw7AtpwTcnCJhrLX3w==","signatures":[{"sig":"MEUCIQDIhRepK67/gC+Qo36bypBDDfIVpYpQlx3MFij1tzrDIwIgfhNn/XFTe+gEr1JgduUsur1eNCNZXEuFM4XdB3p+ujk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"e14857133d521dc668d7af7cd76be8bdb62b719a","gitHead":"8fa89bd3d06e344ae17da1e2f1b6bc8bd0d8fe87","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.9.0","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.3.10":{"name":"angular-svg-round-progressbar","version":"0.3.10","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.3.10","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"1a16d19649e02586725b76d35f999a0e99e01857","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.3.10.tgz","integrity":"sha512-WEzJPX1RCLmKONwEroEilSLGpB9ofCyn3WR5NOYGR4nzpYIDgjaEsu6M924wZ5cLPG5+QK+z2e6pg8JW32gClw==","signatures":[{"sig":"MEUCIDAGecNUy3HIT7qDa4r99mG1z9g+64jcwy6/WLYCxmIPAiEAkb0dkJ/RY+RiBJKYyggvrYtRdBusY1icPmNIDQiAIIs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"1a16d19649e02586725b76d35f999a0e99e01857","gitHead":"add16783166c99cb9b83992762073c820af86056","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.9.0","description":"AngularJS module that uses SVG to create a circular progressar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"}},"0.4.0":{"name":"angular-svg-round-progressbar","version":"0.4.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"7a55f1eb696c95d339880ba869da549dc533bf91","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.0.tgz","integrity":"sha512-HpwbGPqMvixkqr4YVVE3Z67TfEQkj5ukH5eC8B0cEwssV/kOsFWh0RiNP39reNfO4rSBO3yJTg9j2wu05NSbyw==","signatures":[{"sig":"MEUCIQCLpoO+kmkakiUzbUUqi6V9rqietE3VYmZevldZS6bqsgIgS6vUKAFAST/JROQZ62lpa1jVVbCc5sxM/ii3554CkL8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"7a55f1eb696c95d339880ba869da549dc533bf91","gitHead":"cdf36c362835cc9f1cdb1406f00e5c0fc18a9120","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.9.0","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.0.tgz_1458838630469_0.2721448107622564","host":"packages-13-west.internal.npmjs.com"}},"0.4.1":{"name":"angular-svg-round-progressbar","version":"0.4.1","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.1","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"ddd4b825e1160602f7b5feeaabbc08e5517d6501","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.1.tgz","integrity":"sha512-qHSFAaTJ//lIZqMyq+nDKejapFHK82sFLHzJqYRaOfQhYKW0Ic7J0f1y/gaTh5v4zlQ172Tpya+fcs1yZvcTKA==","signatures":[{"sig":"MEUCIQDQCkh4M+wCVBpbuRUSXF+plsZTEiBUN2l8X5PCb48S2wIgCbBQVWSKVi22oka2qkb8N7Gf5EiXmSIR6M9RtMxcork=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"ddd4b825e1160602f7b5feeaabbc08e5517d6501","gitHead":"2815a309b96c5b74ff8075efdbde2a7bdc372f0f","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.9.0","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.1.tgz_1458844351705_0.12513326108455658","host":"packages-13-west.internal.npmjs.com"}},"0.4.2":{"name":"angular-svg-round-progressbar","version":"0.4.2","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.2","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"c3e7603e133bf94f696446151c5dcae731f324dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.2.tgz","integrity":"sha512-t6P/YsJHPoJdmUtZA36XVk1cKVyZ5PPAbjeDKrATBA7p1an2F74njJtCjdVNJXRirxU/6N7LUdXhZx99YPmNqw==","signatures":[{"sig":"MEYCIQCIEzu3dKmz28Ua+nxqJcIZpBEydRIcB8UW90i+KDO+6gIhANgx2HJRjZ+rp7tmtwQlgi5VppCtk2YrnvZG5vtA1Eb2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"c3e7603e133bf94f696446151c5dcae731f324dd","gitHead":"5d185e53564c6c8a40edc1d1ac40d472b8e58bb4","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.9.0","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.2.tgz_1459371916261_0.8451483503449708","host":"packages-16-east.internal.npmjs.com"}},"0.4.3":{"name":"angular-svg-round-progressbar","version":"0.4.3","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.3","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"3b64f23245a07df576f2ac137bdc47ccbaa2c7eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.3.tgz","integrity":"sha512-gkmKaFWZ5yG+MJqFm5MfiSmMC9yc8G8IsqDL/O7eBBXeFDUvBvLyrXjyD1ODAWtpfMsCJ92IZ+FgXJdGpKluwg==","signatures":[{"sig":"MEYCIQDEF1ejgGU4yllEbgH9AJTrF06niCfzeQmZVezxbNb3bgIhAPXRFF86NWJeVg5dWu3+hYzqI/lSNAwk8Z6i8cH15/oc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"3b64f23245a07df576f2ac137bdc47ccbaa2c7eb","gitHead":"7d67fc36e39b451b4c64d4150be4d6f1c83ae7df","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.15.3","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.3.tgz_1462109659579_0.06606620107777417","host":"packages-12-west.internal.npmjs.com"}},"0.4.4":{"name":"angular-svg-round-progressbar","version":"0.4.4","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.4","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"f198c849ee992caad15205bfca220f8892d9f823","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.4.tgz","integrity":"sha512-CLypKMQ09JJ39PXNk7pgSMA7FRjOR9dFk2mmNkp1QDBvWrwv9J5WIU4hYOjEUOGbr+Ry5M5fXp6YQUY8DCVFGw==","signatures":[{"sig":"MEUCIQD0xOCzDSmbiU/qtrJUPIwzFTYbVEaAHeYrHCIA60RJXgIgdenyk43jEmBl9jixEmJHSfotfnJfyuy/x9je6JVGwwQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"f198c849ee992caad15205bfca220f8892d9f823","gitHead":"dd698284801943b28224d37b50b78f2b01a2a7e5","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.15.3","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^0.4.5","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.5.0","grunt-contrib-jshint":"^0.11.1","grunt-contrib-uglify":"^0.5.0","grunt-contrib-connect":"^0.11.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.4.tgz_1462556453903_0.19578197319060564","host":"packages-12-west.internal.npmjs.com"}},"0.4.5":{"name":"angular-svg-round-progressbar","version":"0.4.5","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.5","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"095bc78c6068d5e2cec3a0ecdbfb1367cb401f33","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.5.tgz","integrity":"sha512-X9f79/1lQM/9ksdhVJQ4z3++vXSD+k0SAMCCW/JbP5GgM4Sb82uNlAk1jVX3mJx2ZiONirfUgn8aFNT0tGNaGQ==","signatures":[{"sig":"MEYCIQDlH1UpcO+thEmPDUyLPBnA/WxyTWtwOy6ag9dmNi/DRwIhALXqSYfT6VlpmMEmseuD5wWWLy8vaXZsivBl8ZBT8T19","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"095bc78c6068d5e2cec3a0ecdbfb1367cb401f33","gitHead":"c401a60f2225149049186b1c2398276c8a810307","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.15.3","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^1.0.0","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.5.tgz_1467630766256_0.8426909972913563","host":"packages-16-east.internal.npmjs.com"}},"0.4.6":{"name":"angular-svg-round-progressbar","version":"0.4.6","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.6","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"d8470f15d0c9a27d073285cb0b845b65a0f543db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.6.tgz","integrity":"sha512-S8izLrO2CVk8dugq8B+kCNnFETB/LqSI/v338+nSPwZsZueiFvsK3PT1XohalzDIboKvxp7rQvaT58TwpFUkIw==","signatures":[{"sig":"MEUCID889qCZNN5qzAG1bBmoZYRCy1CV00HtuCPO59dkjXLdAiEA9tKhT5kNySxlLpU63gejafCkWNwiPr/tEpkYb185hg8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/roundProgress.min.js","_from":".","_shasum":"d8470f15d0c9a27d073285cb0b845b65a0f543db","gitHead":"ca0f2dd116d97a027f15877d258ff1b2e55cc7e6","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.15.3","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^1.0.0","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.6.tgz_1467837545630_0.11944459564983845","host":"packages-12-west.internal.npmjs.com"}},"0.4.7":{"name":"angular-svg-round-progressbar","version":"0.4.7","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.7","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"5833bd11253a6b3cfe15d966561630501768fb7f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.7.tgz","integrity":"sha512-jeAFdjJSasgS/CJ0xI2R0B+tqfEt5zm6nAsgsCGJej6z5XdSjUmIshTC3WrMsNUG96MPlVD10TtW8US9AgL2yA==","signatures":[{"sig":"MEYCIQCngOg+6LU9R3PbVXLa9tBK4z0yALWyI6DCJN1FRRpo9AIhAIQ31UbBbPdYicX2u8pWnxWkXkjMrV+wPkymgjbe5NRv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/index.js","_from":".","_shasum":"5833bd11253a6b3cfe15d966561630501768fb7f","gitHead":"ebefd8f19310b00b292c3e70d60857041c8f3fea","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.15.3","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^1.0.0","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.7.tgz_1471430935467_0.26405484904535115","host":"packages-16-east.internal.npmjs.com"}},"0.4.8":{"name":"angular-svg-round-progressbar","version":"0.4.8","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@0.4.8","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"903fde112747e3c0e7e6455275bdbb3d86c19bbd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-0.4.8.tgz","integrity":"sha512-JVEt6xy/Nf4CsRB6ll7teYwigzuMVIgKU92vl5cI3OeEJZj8v/hg1mpeRCxgzSkGgzeZ7HPFEKDH1I7U5idyeQ==","signatures":[{"sig":"MEYCIQCB5bKLZvNMiwHWJ080pcIDV15/L5T5+cmMRfUYtXHOcgIhAKKGbcsD5LrgvTMs17ECV2LkfnVV1oKaKoN3Ka60TtJP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/index.js","_from":".","_shasum":"903fde112747e3c0e7e6455275bdbb3d86c19bbd","gitHead":"a6600ac773a1528bd85ae4f278fc2bdfe1da6c93","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"2.15.10","description":"AngularJS module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"5.3.0","dependencies":{"angular":"^1.3.0"},"devDependencies":{"grunt":"^1.0.0","grunt-gh-pages":"^0.9.1","jshint-stylish":"^1.0.1","load-grunt-tasks":"^3.3.0","connect-livereload":"^0.5.3","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-0.4.8.tgz_1474224774156_0.24978191871196032","host":"packages-12-west.internal.npmjs.com"}},"1.0.3":{"name":"angular-svg-round-progressbar","version":"1.0.3","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.0.3","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"3fc068d78000caa92157ddb1e46942f9bd157627","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.0.3.tgz","integrity":"sha512-Ww2eu4HeszLcf2y58sMVOgJA1ZQNtz6ZO2Ogz1O8KzokXzy7kwxm0XxlPLOdHRMAN5i/xx6Q61JuV2QMhsl4rw==","signatures":[{"sig":"MEYCIQDAlzjUL3B7xcA6fj80Z4uC+cqjxyP4U2EXwxDxn950cAIhAKJtNfWZQUKg3xTdX8kB/vmTqeLnxIFSy9f4K1znpz6i","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/round-progress.js","_from":".","files":["dist/**/*"],"_shasum":"3fc068d78000caa92157ddb1e46942f9bd157627","gitHead":"eacf65ba3d7afce3b29f4196a2298f29d3658dca","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"3.10.8","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"6.7.0","dependencies":{"rxjs":"^5.0.0-beta.12","core-js":"^2.4.1","zone.js":"^0.6.23","@angular/core":"^2.0.0","@angular/common":"^2.0.0","@angular/compiler":"^2.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","ts-node":"^0.7.3","systemjs":"0.19.38","gulp-sass":"^2.3.2","node-sass":"^3.4.2","gulp-clean":"^0.3.2","typescript":"^2.0.2","@types/glob":"^5.0.29","@types/gulp":"^3.8.29","@types/node":"^6.0.34","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","gulp-sourcemaps":"^1.6.0","gulp-typescript":"^2.13.6","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.0.3.tgz_1482267152937_0.3696865253150463","host":"packages-18-east.internal.npmjs.com"}},"1.0.4":{"name":"angular-svg-round-progressbar","version":"1.0.4","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.0.4","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"8ff3581bbcace0d9c9848f4318bac4573b250c61","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.0.4.tgz","integrity":"sha512-qTVrvBv04Ff/FBufQLqWrZeYVySRlL+N9+8JhFbGPgnWu7+mB/UN6tyadFb9eVVHO5YHuRRI/urIToLOsWWx5w==","signatures":[{"sig":"MEYCIQDCHfmlzSFQzKil5qVStlH1f7Cpn36wI2pLj4nAmJ655QIhAL40Zuzasc/47sNSOL+nxyY+2MB8s+1v8rdZU8JSd2Ex","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/round-progress.js","_from":".","files":["dist/**/*"],"_shasum":"8ff3581bbcace0d9c9848f4318bac4573b250c61","gitHead":"e9a9472611725d652464ab41c3c0f500caeed6b8","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"3.10.8","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"6.7.0","dependencies":{"rxjs":"^5.0.0-beta.12","core-js":"^2.4.1","zone.js":"^0.6.23","@angular/core":"^2.0.0","@angular/common":"^2.0.0","@angular/compiler":"^2.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","ts-node":"^0.7.3","systemjs":"0.19.38","gulp-sass":"^2.3.2","node-sass":"^3.4.2","gulp-clean":"^0.3.2","typescript":"^2.0.2","@types/glob":"^5.0.29","@types/gulp":"^3.8.29","@types/node":"^6.0.34","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","gulp-sourcemaps":"^1.6.0","gulp-typescript":"^2.13.6","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.0.4.tgz_1483260325246_0.5404315374325961","host":"packages-12-west.internal.npmjs.com"}},"1.0.5":{"name":"angular-svg-round-progressbar","version":"1.0.5","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.0.5","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"373d411275374e29a2eef2d8fc8f147deaf2e983","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.0.5.tgz","integrity":"sha512-M3uTb5WtylDVrYVZlKZ83dECgsrI5mdNgex2pkL7612LqExHTzfbbN4yYnq0E7y6OrDROlTwleRgAP8P9iZbNw==","signatures":[{"sig":"MEUCIQDbSVr12dhjfdnR6URKT9mZdowuvpkZRoaLNmU83YFkgQIgboZCV/1S4qwS6UqAbfyc4Gd2Yw3LkTuPR09RhaQqXew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist/**/*"],"types":"dist/index.d.ts","_shasum":"373d411275374e29a2eef2d8fc8f147deaf2e983","gitHead":"ef59213c38d1ea3bce2cabe44ed8fc598cdd85d6","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"3.10.8","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"6.7.0","dependencies":{"rxjs":"^5.0.0-beta.12","core-js":"^2.4.1","zone.js":"^0.7.2","@angular/core":"^2.0.0","@angular/common":"^2.0.0","@angular/compiler":"^2.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","ts-node":"^2.0.0","systemjs":"0.19.38","gulp-sass":"^2.3.2","node-sass":"^3.4.2","gulp-clean":"^0.3.2","typescript":"~2.0.10","@types/glob":"^5.0.29","@types/gulp":"^3.8.29","@types/node":"^6.0.34","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^2.0.0","gulp-sourcemaps":"^1.6.0","gulp-typescript":"^3.1.5","@angular/compiler-cli":"^2.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.0.5.tgz_1488711411162_0.19824224361218512","host":"packages-18-east.internal.npmjs.com"}},"1.0.6":{"name":"angular-svg-round-progressbar","version":"1.0.6","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.0.6","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"c0b83e1cd310c61e267cfabc746984f2261bfcde","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.0.6.tgz","integrity":"sha512-nEghQ2+MrSK7WZYEMuDeySlLCmFDq0ajlB16Zmvpb9i/Wq3uo4UipecyTjTFLbkAKyewdWUcyzkspgpCjLpEPg==","signatures":[{"sig":"MEYCIQD9sZtRuAy3LAaOEeWahDt/BpQXYixMh+2ZBcLQWjNpeQIhAM8WDs3Dc4QdONMkQ59deuawoSixl+xXE1EiLSk689cY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist/**/*"],"types":"dist/index.d.ts","_shasum":"c0b83e1cd310c61e267cfabc746984f2261bfcde","gitHead":"d868d8176ed2fbb09023ed13f1030a3d1c66e4a0","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"3.10.8","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"6.7.0","dependencies":{"rxjs":"^5.0.0","core-js":"^2.4.1","zone.js":"^0.7.2","@angular/core":"^2.0.0","@angular/common":"^2.0.0","@angular/compiler":"^2.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~2.0.10","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^2.0.0","@angular/compiler-cli":"^2.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.0.6.tgz_1490484439598_0.2652098557446152","host":"packages-18-east.internal.npmjs.com"}},"1.0.7":{"name":"angular-svg-round-progressbar","version":"1.0.7","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.0.7","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"1583180be4b6d80e794111eedd9f9f5946131e3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.0.7.tgz","integrity":"sha512-/8S/wQzBVTREZ/YPrjd230vofg3SHg3u93J1cpi3aBhcrElhQt+/sM2dZ1Xr6wnmMuRTMGtBR2MJMflPkfi9zA==","signatures":[{"sig":"MEUCIQDgWeuW4wfsXCVxHkZnBO+nl+LZa6iWqp0htmOjqKW1ZAIgBQQfcSAav18IdlGetChpHBKGeNk5O+YVxGrU5YKbeBA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist/**/*"],"types":"dist/index.d.ts","_shasum":"1583180be4b6d80e794111eedd9f9f5946131e3f","gitHead":"bfdd59d293a8cf6de183801f807d6c37594b942c","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"3.10.10","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"6.9.4","dependencies":{"rxjs":"^5.0.0","core-js":"^2.4.1","zone.js":"^0.7.2","@angular/core":"^2.0.0","@angular/common":"^2.0.0","@angular/compiler":"^2.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~2.2.0","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^2.0.0","@angular/compiler-cli":"^2.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.0.7.tgz_1490697546024_0.15477636246941984","host":"packages-18-east.internal.npmjs.com"}},"1.1.0":{"name":"angular-svg-round-progressbar","version":"1.1.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.1.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"5a568353c74b93a50e8186d98d0fef864ba3d9dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.1.0.tgz","integrity":"sha512-fYV248Pxcww76bE7zl125fXTkAGwfVo8rw2mOSw6x6rIcDNG46dmO98l3i5HKurAp2JQxWcACSCUFsEVS2UIQQ==","signatures":[{"sig":"MEQCIElC4puqQbpRwqxMmya2jqz7jw0z+13uRnJ8Kh9lBF90AiBdyxu3I7LWzXb6pZitfXMcxfzfzvDDwPB/v0Ya/LLtmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist/**/*"],"types":"dist/index.d.ts","_shasum":"5a568353c74b93a50e8186d98d0fef864ba3d9dd","gitHead":"7b54ae07dcfc6349e597be48fc03302589d4917f","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"3.10.8","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"6.7.0","dependencies":{"rxjs":"^5.0.0","core-js":"^2.4.1","zone.js":"^0.8.4","@angular/core":"^4.0.0","@angular/common":"^4.0.0","@angular/compiler":"^4.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~2.2.0","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^4.0.0","@angular/compiler-cli":"^4.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.1.0.tgz_1491846720193_0.6637096065096557","host":"packages-18-east.internal.npmjs.com"}},"1.1.1":{"name":"angular-svg-round-progressbar","version":"1.1.1","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.1.1","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"01c16e8df43bba9f8701c6f913c9301545b15c67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.1.1.tgz","integrity":"sha512-PDenEwcgSp1UJ3qPdoLhSoo+4qcAGKNqbAT4A/ytNjvW7/we2ndi/5+6+6Hc6ZzVa125nVl/A46h2Qrcm9wN5A==","signatures":[{"sig":"MEUCIQCJ00SDIYjs8bzFoEbLYIpwXaYuf1tJ2Fg9xaE++vLQFQIgaECd5yjf6/FgQAHbooCViJ8j6yTXQRC2mvP1GzR/yvs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist/**/*"],"types":"dist/index.d.ts","gitHead":"6497d10308cd662c2da607bb82361bb6bd1e7e13","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"5.3.0","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"8.2.1","dependencies":{"rxjs":"^5.0.0","core-js":"^2.4.1","zone.js":"^0.8.4","@angular/core":"^4.0.0","@angular/common":"^4.0.0","@angular/compiler":"^4.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~2.2.0","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^4.0.0","@angular/compiler-cli":"^4.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.1.1.tgz_1507365246658_0.5533460169099271","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"angular-svg-round-progressbar","version":"1.2.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.2.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"ab6e37c7021e7d8bbb7c92c8bc3fd39f395e17f8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.2.0.tgz","integrity":"sha512-GGdbGcQsJwFk0eYL4Zn4rn7VH5cDFtoh3WMw2uST3OQ7aU49ALzxiJaTpbs58AmU56Mfc9mrQZnVIvJCvTHTbw==","signatures":[{"sig":"MEQCIDUYdIibkbgYwApRUjFH1+mrrlJ2eix5QYI8f/XGT0RpAiA+5ry7Bhp73yx9WamCzkJuCe7SWGAyHDXuHsrKHAhnzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist/**/*"],"types":"dist/index.d.ts","gitHead":"712bc9576154fd23717cbfa2f676821428af8bd0","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"5.3.0","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"8.1.2","dependencies":{"rxjs":"^5.5.0","core-js":"^2.4.1","zone.js":"^0.8.12","@angular/core":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"^2.4.2","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^5.0.0","@angular/compiler-cli":"^5.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.2.0.tgz_1509630235186_0.09110611188225448","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"angular-svg-round-progressbar","version":"1.2.1","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@1.2.1","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"67c013c697fe761c120e15b3046cc43c9238a572","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-1.2.1.tgz","integrity":"sha512-LCoP5FhZGETwTA4iI7VaOJMhKyJvkOmUgHklh2/6LrG0B7SF5OrDvfH/pEUc48CBPPvRF9amb6Ui5JJdvi7ZsQ==","signatures":[{"sig":"MEUCIQD8nhFcCZExYrDkLNEX0FBkj2VShjLu+BV4ByV67NCG2QIgMpYiRMU2c/uXXxvZdHaz6ATod2GH52Z2eZT+n/WoJXY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist/**/*"],"types":"dist/index.d.ts","gitHead":"3dcb508ea10668364302a75f5058bdca33eebb6e","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"5.3.0","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"8.2.1","dependencies":{"rxjs":"^5.5.0","core-js":"^2.4.1","zone.js":"^0.8.12","@angular/core":"^5.0.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0"},"devDependencies":{"gulp":"^3.9.1","merge2":"^1.0.2","tslint":"^3.13.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"2.4.2","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","gulp-gh-pages":"^0.5.4","@angular/forms":"^5.0.0","@angular/compiler-cli":"^5.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar-1.2.1.tgz_1512232628127_0.4706447727512568","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"angular-svg-round-progressbar","version":"2.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@2.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"39fbad9deea6bc10efe74d4e8d99f61561589461","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-2.0.0.tgz","fileCount":26,"integrity":"sha512-NYG8ryX/YvHomvpWd7/z+2aIuJhBu9wlRHpDD3jnkh4v+rLFY48D5lbICUNcYML9ptNUyzzkuhBBTLSgOyfRPw==","signatures":[{"sig":"MEUCIQDmvY6MrI/TNlbkGHMM8mrm7bEllkOuFI81TKYPpfluLwIgKJIm8HjresgXphouVEh3NbxiJ3gpZnwxNw7BTzofvMI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/ZDiCRA9TVsSAnZWagAAz1AP/2Dagh/BaYAm/zUbi3r5\npQ8t00NhAnYdgbY3PTPWbqQ6HxsDvDbaHPuihIBJji0iGQ0E0/1ZQvj85I3A\nIa9ehqU0x35pN8GoE1ZNmGavQXv3hkNTp6GGV68VAnimanXBd5KonFUejltP\nIJMYOsR5zDSgr+4kBsB3pjUI2Wy2CimFkzJarqQR/m43DPwqqEMh734M2PqA\nEwg7cwGtWvJOaZ3Ge1DyrWMJUllE/ZK4Ok/7TdwRqK3aK80iQ8n0XYp/4mxi\nvfHqetOOy6HvQHS+M4nSw4id1A+1zDsJAhfbK5rCYZ6d7EBA31fFSoxZFOJY\n9bXVG+XGWi9aUpwVWiDKVzVmwsnvo/g+uzh0LhmDYjEbHBKs7IX6GmSU50bc\n7uoiiT0D19QyNFP3wRkni+zOc0G+98psRMCVC+HKgxGCiGtWlqd7xcsl93BZ\ngG5ZC/dE2v+jwiPpUdVbd7LHkx/KTflzl5Gti7R5dMRx+iJAgyCXLv7mNnPC\nccPMuCRXOKCJ6oyjkkue/9sjORXoOfvX/vi39e9TQ7Kk/y9rNzETr0mVPhPH\nz1Hk/Nu5dD/keHC7PMPuKPkcbLL5ckuMD1sWiPxrm+dUUpDWhnNSyAVOwp8g\nCOG/BGliO5iui0on9J/odNpbE2iLf8HolSXqcApTzNFWVsFuPBztU/culuMf\n17z4\r\n=36kH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist/**/*"],"types":"dist/index.d.ts","gitHead":"258c3df47a1f0b3f2ec6e27c45d92a69178f7b17","scripts":{},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"5.8.0","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"8.1.2","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","rxjs":"^6.0.0","merge2":"^1.0.2","tslint":"^3.13.0","core-js":"^2.4.1","zone.js":"^0.8.26","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"2.7.x","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","@angular/core":"^6.0.0","gulp-gh-pages":"^0.5.4","@angular/forms":"^6.0.0","@angular/common":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^6.0.0","@angular/platform-browser-dynamic":"^6.0.0"},"peerDependencies":{"rxjs":"^6.0.0","core-js":"^2.4.1","zone.js":"^0.8.26","@angular/core":"^6.0.0","@angular/common":"^6.0.0","@angular/compiler":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_2.0.0_1526567137010_0.17747770738630653","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"angular-svg-round-progressbar","version":"3.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@3.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"a48e7641d45d69d82c4e61345ffe3a0cea9ed65e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-3.0.0.tgz","fileCount":26,"integrity":"sha512-OF/m45fMfiVgQ+ruaIg+rWwC1SFlR6Gc1SXAGEHSyqO0udCj3BB2Wu0se/uOyHO2VfimEXkjd7bEI5zKdWbeug==","signatures":[{"sig":"MEUCIQDu0Nka14MMX+sATLJew5oztcV8KZht5qSg8fzDMZmqKwIgHiMbEaC8w2AIV8OGn7Yfox+VlEna+YSYq8ov8aNzjrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135479,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc721OCRA9TVsSAnZWagAAUm4P/2+Epwo0S6Scm3zLE06Y\n3c0bDyr98ODiyALEKQZzxs0FoJ6wEFl5CJgbERHorEpjD6bwNChIPQr77V00\nhnwX8itgY9np2ejtW1n93+p/AmWivb/cWssVV7RKiljadX4n5dHqa7vTXjmi\nr+0oPJeYIjqNPCMfmsv2FvttD+Op7IugBykKNmMlfZqwt+25Lii5vO8ZRZZP\n33KCVaz7xjWMYv60tzsekd2SNt6lR7NaprLIIGUxGUmhozRgQFD5NiGjipbh\nX/VMQu9sKzr0d6kGn4G8isDVv7FH6qD0BfThEx91lDDIqYDOqNTLCIyUFC6E\nytITy9ohRONEOjCfIXyS6kJz073QyeSK/n3WNkcWIXycW7ECKg3/fG02KM2x\nU8KH2aOFLgoOdBuQ86+tZ0IEOw17TAfdTR+0sWK2MjvkIXgRPRiH5sEFvhiy\nExFNr9ugsv15/RylLmpTxjzGgypUSKMQ8Ws8Dgq9BQukfizhhb7faMQHLHdN\nlTZpvoxadXfHcP2juMSK+Ebb7S4DfFgrTmntLRB2EY+cC8Lyk7/jBMsAOVDf\n/t72jMMMUK4eA9/A/OFeNTgn12WfdndxklCsey07biP+7oEdh5BTixKyAXqY\nindVe+Yd6KKfS9CMiDFWKh4XiOQyACaXZHBpynuiYQLCNlNes0ABf6iMurKO\nmXE5\r\n=GXtP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","gitHead":"78a38afedf3e703e4f041e0fe66eb145f8a69bb7","scripts":{"lint":"tslint -p ./src/tsconfig.json"},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.2.0","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","rxjs":"^6.4.0","merge2":"^1.0.2","tslint":"^5.7.0","core-js":"^2.4.1","natives":"^1.1.3","zone.js":"^0.9.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~3.4.0","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","@angular/core":"^8.0.0","gulp-gh-pages":"^0.5.4","@angular/forms":"^8.0.0","@angular/common":"^8.0.0","@angular/compiler":"^8.0.0","@angular/compiler-cli":"^8.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^8.0.0","@angular/platform-browser-dynamic":"^8.0.0"},"peerDependencies":{"rxjs":"^6.4.0","core-js":"^2.4.1","zone.js":"^0.9.0","@angular/core":"^8.0.0","@angular/common":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_3.0.0_1559194957790_0.7343729971709061","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"angular-svg-round-progressbar","version":"3.0.1","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@3.0.1","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"c9488ace5d4c5bb9406219ddf0a23514435432f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-3.0.1.tgz","fileCount":26,"integrity":"sha512-sH9dW/VoPb4sWwPQyuj+N4HmLxn1okUPJmB1UG979vDS9zzMGpSc6Cg8W/ixWmws5J3KMBH1XTWa6Aj7h4hhng==","signatures":[{"sig":"MEYCIQD85xPzAKOUP/4ZLoQTCZK1iaw6LpuDh3ZiSTIpNAXzWwIhAJ3ps3jvuTOpSCxnKtydpK8VJqn8CvBA6t954wGEaL8a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8r8nCRA9TVsSAnZWagAAhyEP/RtVxspcYNyKynFIomCa\ncAr63/nvmWsISHYa8ru47nYsexQzilu5dP2Tk2bHeSfQLLcQXvWst5NuzCwc\naV7ZjwTurjUvf2KIrhCaTevPNk2ToaPEu9WcGdjIHXZOVJ/oMIMI5E6km9zx\nd3C0+cSaOZ4VQ0ev8a7F+O/J4PG4e47n2Oq2BKZECz+Og6Ail1vfOd9iZGXA\nz48pn9HTim8KeEdYZNXjSUUNXrv8t1MQges2JXzXRRstqUc7FgTNA3LaukiW\nERxLu+M+D1A7FB70dqCGKtpUjn2FERZ3+dhBsbfTWphJaNAU69H4GlAUeQpb\nKIaWy0ilcszkf5UraXmHrb86cXoQoJ48Fiyn/o4Azp5vgdfCVDhRZEePr132\nZdiq7jv5LljB41nq0FTHsSbQJnobcMYcsADtWpImkW4r0+FFeY7DEPldgNGr\nO58jD0HcQIwArD1b/gUWybjMtSbKPZAhgqW5CC7tafSoYIBzws3uRCXr3+rv\no+b97ZezV+gU0JkEjTgNwkQRFt++QVVMZnkSe66nI620MbYmHasxGVA5ix/m\nrKREAnh4Z1yIAy7w0YXAIwnD+ZyFTPSrJQR2KoacTJcTcQQiULXTkrONbLgE\nqOHuFze8skhKhJZY1Mn8WycbvkxtnRwfb31dry+SG+p6PlSvClMJB1qCVsS2\nxWLP\r\n=4Lk+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","gitHead":"b8324de5fd4d86e81c9ddc9d61f802c9db352370","scripts":{"lint":"tslint -p ./src/tsconfig.json"},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.2.0","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","rxjs":"^6.4.0","merge2":"^1.0.2","tslint":"^5.7.0","core-js":"^2.4.1","natives":"^1.1.3","zone.js":"^0.9.0","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~3.4.0","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","@angular/core":"^8.0.0","gulp-gh-pages":"^0.5.4","@angular/forms":"^8.0.0","@angular/common":"^8.0.0","@angular/compiler":"^8.0.0","@angular/compiler-cli":"^8.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^8.0.0","@angular/platform-browser-dynamic":"^8.0.0"},"peerDependencies":{"rxjs":"^6.4.0","core-js":"^2.4.1","zone.js":"^0.9.0","@angular/core":"^8.0.0","@angular/common":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_3.0.1_1559412518580_0.025744396572811468","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"angular-svg-round-progressbar","version":"4.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@4.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"cb78728ea4ce813e22bb6a75fc56f1a6d13674f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-4.0.0.tgz","fileCount":21,"integrity":"sha512-sdgbcKH4VNP0fkY5gCeLUdYzaC7DT0wSqkPzT2B6gVSop5beKEi9DTXpQnceL0mTm4UyRhCLTz0Po2sYLI7IxA==","signatures":[{"sig":"MEQCIHzBYaaZ3l/yAxX2IKE4hcgjOz6lvqj5W9N05WKXYKinAiB08jYHapkcEltsm96KeD/cLgnemYCUgEKkQSUiysC5Iw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGBs4CRA9TVsSAnZWagAAdbsP/1tJyt5pw++NcdbwxdCN\nYXmL1ob8vxL6gfdZluW9fwrL++pIh4WcIteDOiDkthKPxjk68MR0DFnq16Ev\nndSQz2yCva7xzNKwh353QvNgu/6UQzk8ad4ieVilEU0pbOFzwefkdwShmizb\nDZUsG2e2pkusJdxfr6mX6QpZQnPynfvZhL2etcz62NbOs8hjsUtmptyK4rZr\ntWtm7rYbJFuPahiE2Kn5GSEDxg+Xr5gyAT/UzBOYe1J1o1huMdG8Ja2hjhbZ\nbR1NSFuOp6lg3dK68hy2liLpLn8+YaRb+Vgw0koCQ/gaYvp2KCvWN/6kc43G\nJGHkuOOWtms0rWmiYhuG/pr0ifAncWmyfE6UzzRCj9oWXK5Ww9nD+Vi3CXol\nWJQEPvOduqcCZCVUNn9p6WFk8xbbcPlGpwbRlEd9GV1D4s05Hv6YL445dCmx\nADD3mFhuEKAZpZx2tPk5Lu5mbOvutrlmoGsEVBCs0IF9G/pyoQdAoRoXmq9f\nsgBErhgw8oOzWCSkHdnZrqEtyJYsTOSrgtnJVyNjAsamb5k22PMz9FXAuEwc\n18LfmeAiyn7EYNSMB4IgMV5Bv8Qmx6aihKt7AKzt7X802oxrU+S0bMc12PeQ\nO101EKLKHk5TP+O56Q5uoGklFOQfcIWzDyxsn2cc4nSsYV9tSKR6HUt4ZifN\nHlBL\r\n=a2a8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","gitHead":"b8324de5fd4d86e81c9ddc9d61f802c9db352370","scripts":{"gulp":"gulp","lint":"tslint -p ./src/tsconfig.json"},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"resolutions":{"**/graceful-fs":"4.2.2"},"_nodeVersion":"12.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","rxjs":"^6.5.3","merge2":"^1.0.2","tslint":"^5.7.0","core-js":"^2.4.1","natives":"^1.1.3","zone.js":"^0.10.3","fs-extra":"^9.0.1","systemjs":"0.19.38","gulp-clean":"^0.3.2","typescript":"~3.9.5","resolve-bin":"^0.4.0","run-sequence":"^1.2.2","@angular/core":"^10.0.0","gulp-gh-pages":"^0.5.4","@angular/forms":"^10.0.0","@angular/common":"^10.0.0","@angular/compiler":"^10.0.0","@angular/compiler-cli":"^10.0.0","gulp-server-livereload":"^1.8.2","@angular/platform-browser":"^10.0.0","@angular/platform-browser-dynamic":"^10.0.0"},"peerDependencies":{"rxjs":"^6.5.3","core-js":"^2.4.1","zone.js":"^0.10.3","@angular/core":"^10.0.0","@angular/common":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_4.0.0_1595415352583_0.35179674884754264","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"angular-svg-round-progressbar","version":"5.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@5.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"85e9b5522183b774798fc86b5a483f63e4470264","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-5.0.0.tgz","fileCount":4,"integrity":"sha512-q/bHYXwvoagUYakIgLhZzVcuya+oqaguFq/PdTlVHjeT1XmbAGbmZoU7yqhRGD7nwRbJO6fOJxBN+xbd1AWFxg==","signatures":[{"sig":"MEYCIQDR92SQdigFWVImrDCEvUYQOnp9JRvYrVTDaGBqMzMpsgIhANNDGzILoY15yherbGsDYiUpgz6q6hzUKOxgQy9ECjZx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgcoJCRA9TVsSAnZWagAABF8P/1/1jlXoarkVaYxGhOfk\n/qgUWTdupQv+C3mnkEXKBACW9J6FbzFQyl9H8KqhZbJlrRN+VbtPxPedTYL7\nM4dEjI/uszXHSfTDDf/tIaD/hEmAhSyY3LKEnVpsWtXu8rsmsDyF9fv7RmE2\nQ6gQHyLVbkgTPus21ezVs1GVf5AcG+IrTl8PqCMF4tRPt5ZNoykdD9qF4Ed/\n9jpIq5OPlwhRakaT9F8RvxWcloUvXLWELczjEH688jeNlXXzplDWxJQoPHtb\n69L1gjxGspF5v+rnBt72PpHnurZe+o4EXcVy590/Z5x/SH/WWQhZYO3AtWQA\nXmX/7uKxt5DaTvRFfJI1Jx2MVhMZqb33wazaMxinsClnxw/KPpR1r+e9bCge\nBaXJ0JJbD3iBgFw12im5O+AUdCj4fGYBmTJm8nHjtmFBKTT+4U5YER0fvjE3\nYKvuBE0ohder0dVzhcDi5hJgctyk3usz8rW+TWfXZeGRn08Nuk0oPVboIivH\n+cs9Cq21Xo0STyRpfZ6+CNSY1ysoEhM86gyH1fiHdr3l6ipHRwdeplOHKcNf\ngnRLv8MiPPhRwAViQzkhKx1MKgELHy3cB5AaFaV+XYUSjpLt963LCyaA3QUx\nppjsDu3Q5W290x2M+WZtoUjlKLI7L+E/X53Ofrv3jN/+nvK3We6jFe/4OVVB\nM+HN\r\n=r20v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/angular-svg-round-progressbar.umd.js","es2015":"fesm2015/angular-svg-round-progressbar.js","module":"fesm2015/angular-svg-round-progressbar.js","esm2015":"esm2015/angular-svg-round-progressbar.js","typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.js","metadata":"angular-svg-round-progressbar.metadata.json","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"sideEffects":false,"_nodeVersion":"12.13.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^10.0.0","@angular/common":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_5.0.0_1602341385305_0.7676839367749506","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"angular-svg-round-progressbar","version":"5.0.1","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@5.0.1","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"cdb4790a1a6be213511fa7d5cd3e8f2cdd44b6a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-5.0.1.tgz","fileCount":24,"integrity":"sha512-zglh8E0WFLSqfHHPZRreXNX8y0KM16p+hKRy57ROfFjCu4qmwTm8EOHJd62hHXIlyiRcq04r0oqY/mjsvU0BVg==","signatures":[{"sig":"MEQCIEq+znpo74TJaXtEUK8Za9D6bccaDj8DI6zQQNd4O6OxAiAiNQ7B3i38R1EnDE9x8bMFwNt5bZTb7rgwgBOkOLaZ/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":257517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgc5JCRA9TVsSAnZWagAAmDkQAJlnVtPS3TVV/nbfkZ2A\n9zqsux4fFjvEsL4048f2Zp8sfwIFCFZk2ClDFc2rCLh5E032ki+w1frtMcpz\nGbFosN4innBqLSnsPvdhxexa82uHKD0sng88cjn3ERUF3dT0aaqHdpJgOZSw\nVmTKZbFqbGDFzgIkxBUqXgNgGM6lQnpaNwSQs6rWFwL9WuKfisTo2IcnB7IH\nsWMRIQTsF6Ql5AeRWZrgQXVBYB2aPTSOValj8kOc5hFedRP7B46y04r6GpXA\nSigwHK0UPTItQIoYihVRri03omE/5SJVcfV+Qn67ol40vv9/YoC6cllxnIfk\nSbaag6Fl3Qu1uCJ86z515HeVdKwt8YOzfxgoz1iWE1bw9vsGhID3F+9vX7IQ\nr3RJ3GdmujtIqTeBwn7L5WLt9dyr96yrGyobwC9cLQBrVy2XTBvB5TeSJiwH\nhMxD85yBEBt6WCJD6GpjTqntVmWflHOI5pQi3Uq3NutBUwieSNqSiLnpNMCk\nuV8kHrT9toIIy+YsEaWpkDMfIf8gRE6OYfVf5jnoEMImbsNMn3jcu0hl0DrR\ncFTHifarTQsHxfpa4VeLJZd6l1EbYOTbY2ePzT2XltluTtZcknh05Iz/gztb\nemGjc/qs/gMk+X1IA84RqVYdnf7TEJjR/UIrR51pRU7Jxoue+4+KJQBxeiyi\nXCIF\r\n=jLsD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/angular-svg-round-progressbar.umd.js","es2015":"fesm2015/angular-svg-round-progressbar.js","module":"fesm2015/angular-svg-round-progressbar.js","esm2015":"esm2015/angular-svg-round-progressbar.js","typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.js","metadata":"angular-svg-round-progressbar.metadata.json","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"sideEffects":false,"_nodeVersion":"12.13.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^10.0.0","@angular/common":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_5.0.1_1602342473203_0.06777454099637059","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"angular-svg-round-progressbar","version":"5.0.2","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@5.0.2","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"59b9b23ecd0abe66d7d1ca2e575ae8c39a80a9dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-5.0.2.tgz","fileCount":24,"integrity":"sha512-fgHiGXb9iq7Dwd6MyCV7Tq9reMuYoX4G5xye0aChVXxdEWvqkKoKPdJn2iNLdu0ESJ4aXMv16yNdxki2jsCD0A==","signatures":[{"sig":"MEUCIQC4cMaqQmfKrVRuNwp6DFlNJTDw7IGFPHmNFdHysk9zSgIgJUmYwRbt+DoUnpH+HE1glq1ZeV5E2y579n4x3Vmw86w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258194,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhGNnCRA9TVsSAnZWagAACrwP/j9UxF6Qwhg9PR6HXoCV\nqqFmxmM2QVkwQi35i54+7ZuYtKRhky0W7OvLejwoG4RCP1DDRf8OC0uPyzlP\nMdlGVJPlw6sMq4ob9JYE/A+kxVguH+g1Y7bYvyBmUagCnfnVemdfuPIr0ViZ\nzKiP51qvFcnijEygkOloQYh5yg0FfBbEHF2TnU3YNEvV7g1Ssz5NcqSrL1wC\nhizsT1Da2IftR8tleqe7qRlAXukZX2hlL3EE8O35rJes8tnmfcM8hPAZelYo\n/t6XobDOBjUqt2YKif1DmZ8WUaP7vFGD50blf/KtOQNHSqSqvqPSP+mFK2iy\nzcajLyo9tJnjpSDD/qvQJwQUuFY4Y/K26M4IJqj+qs4qrT5+QVdxO01IHg6k\nM3/T4/soKghp3YwUhIZodE/lvaQdeeSTP7mWORoV42O7R9adNElBsJcGCffT\n7MbooejQT0sHWs9/vZBXCgb0CF/5wm75dSv0UJJq7qsqBlHk34D3pW/6Tzm5\n6keIGegK2afzwBNyfGBcRrVv1ZPTWu6mRIWFHaRN2ZovX/mAf8jOFZHZDIiZ\nGzi/uROWGuG82Pt6UxRzf2l/p+1GfXPPr/GaTc/EGdoHKG48aSzZmF0O9o7l\nyyYXUnrbWpHtSvMMBoCIwIALpIEB7x1vDbIQUcvnKl4q/XKl0k8JE3bZFQu4\nSvZL\r\n=nAFU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/angular-svg-round-progressbar.umd.js","es2015":"fesm2015/angular-svg-round-progressbar.js","module":"fesm2015/angular-svg-round-progressbar.js","esm2015":"esm2015/angular-svg-round-progressbar.js","typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.js","metadata":"angular-svg-round-progressbar.metadata.json","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"sideEffects":false,"_nodeVersion":"12.13.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^10.0.0","@angular/common":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_5.0.2_1602511718688_0.8852585839039817","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"angular-svg-round-progressbar","version":"6.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@6.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"e35016c9b885608ebbb942f7e7c65c8200f2de55","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-6.0.0.tgz","fileCount":24,"integrity":"sha512-sdDsYUn+efzwf2shbtXaytW60b1u9rONU7jKSFym5mU9bfdTqwDc6Ow87fXbMdFl1aydsaf5GbPMZAZoD++kOA==","signatures":[{"sig":"MEYCIQDz/I36iuPxDL2KTKb69a5inM9fCCmTixER2bziHt1uzwIhAMX94Dv65YmB9+V1PtkqXFXHXF7ShbAwHDbej0dCn0Yn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIWBtCRA9TVsSAnZWagAAX/wP+wfkSd9N8WWl6BxJDB2t\nwx7SX+cZNnYBHmjHPg1roS1K8PmGp8o0svHHVA16S0593QASMxmu3N9+q+cm\nvgCZpWF7Ps8AvrNyT/ZRFFQ7RMuDsK3kZDbtsxP8P7Kh+TRLkzc1VKOVP+2r\nTrBNpcPBw0vJlDwBAkdCcWgDUMlAme4urFmBcNs3VavMZQd38wndf1BZViMK\ny90ewdatQRH/NJB27Hh2NutGw6ILHNxQ4J08zCyx3XvM+5K3780QrNYQEYsr\njCt6yk236t2SqVYz9Zb634fTzxSE3ZiW7eoDIQp5LAYKOj1t+wDPB947P+J+\n3G0eYPbNS8VhL52CsKcz0n43x6hW/nL10Fk9aveEj2JaY4aAk9iJPu0ZCC/P\nww3EFyDBsEcQAyI11PORCcGPW7EMHuKUKxW5ZVLT9SVuDJJTrClcqkQRAtLf\nZNl1mQCD/vR7grp3I2DB3NKuNYZrNFNNU9YJ3ljJ4Xy+NLOaQhiuWtQuMhG7\nIXFzWV5AmoNb7K0m5Z5arl3HszQs/mJf9CPhY3lKPSeKaMNPrJ9UDCeP7A9v\nPuWB3XF9ZcXO5stH3hjCRc5XigT6w0Z9iylAze/qoSA9c9TB65aBdgpIsdXK\nV29AuHOkJ8t1aBaEURfhh5e1agTDzmuHzljbTNPqCYfqUMfn5y2lMgIqcIUY\nEDpc\r\n=vUd7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/angular-svg-round-progressbar.umd.js","es2015":"fesm2015/angular-svg-round-progressbar.js","module":"fesm2015/angular-svg-round-progressbar.js","esm2015":"esm2015/angular-svg-round-progressbar.js","typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.js","metadata":"angular-svg-round-progressbar.metadata.json","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"sideEffects":false,"_nodeVersion":"12.13.0","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^11.0.0","@angular/common":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_6.0.0_1612800108837_0.25281468675594376","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"angular-svg-round-progressbar","version":"6.0.1","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@6.0.1","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"a1bdce0bd98692cd8e41687ccb51126132048133","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-6.0.1.tgz","fileCount":24,"integrity":"sha512-uil3oQ2q9ZlbsxpqpTRWOx8UmvEUUcSn2+75nKNzggkOJuWhPsPRX4TJ5qVaRUqYwwNXERkSGn2gf3RPHP4nIQ==","signatures":[{"sig":"MEYCIQCWG/efn04mrOForm2MYRiMtbQoAnvAYSpvOkFtExOwzwIhALRyuYpzacaFbPokBX5q10E9S6aHiIRnaociekI09gwz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258776,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgiPYcCRA9TVsSAnZWagAAmvEQAJZN7M/bTeBUf2dBoEHB\nyEYF1xOCnIJZVhY+MUG8iF0KG5gF/YWFK17SNb1OGWf50c7bkxEpYpXp2TpW\nMuqCJ+SpjzdVWS2+YSd1PTlwCzY+5k6Bq1VHmFsbH5wXHrrX8IUHZUhQKVQI\nGN80/HxntpcbJigdkfgFsFTBqHcq6Kie+l060LZw+xnJNfG5h/UIosqt5NzD\nReU2DbiVgHaLRDX9+Cl/13EcyNvHmGQ9CYk8IyLinh8dWX5Sh4fl4djWUuG0\nKldtElIikebFZKEH7w+ejnnLEdEiV4xM17FizBC7f8/xrMMLroQTi9z5SRj+\nXBo1542URTcnZLe6ctDYOsQ9Qap5cim5//32SYCpxA+PUzFJ57ROkRVJjqvr\nwyFwbVV+jNze2XFWSmMe1RP11OGk78tFCODXJJeOub6TvnuKmHKMsjBxk9+e\npgpfe7WYT6xF6dggA5QRprhq4R5SH74eIpE9bR5Yju/YsMCuaeFJdsMFzLhT\nJcSgoyOuuDEWOSHoGnmS9ZABmRWX7lqh+0YGkd1Gqgp5wO2p/ipyWdAAUna0\nnjrGRj45Gk+YllRKPRMRZqSKk8lwaP2l5YqpMLQhoUI56dsOFGaiEXmonYEQ\n+2tcDRtN3Z8xKFPLiPLzzhjLs7eMmdo+41zdYuh0i/zA6wO+AiHeJ01Cdpuv\n/i5B\r\n=PGxf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/angular-svg-round-progressbar.umd.js","es2015":"fesm2015/angular-svg-round-progressbar.js","module":"fesm2015/angular-svg-round-progressbar.js","esm2015":"esm2015/angular-svg-round-progressbar.js","typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.js","metadata":"angular-svg-round-progressbar.metadata.json","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"sideEffects":false,"_nodeVersion":"14.16.1","dependencies":{"tslib":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^11.0.0","@angular/common":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_6.0.1_1619588636395_0.8076185854763482","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"angular-svg-round-progressbar","version":"7.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@7.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"29e5758e90eac4f1dddccadcddb3ce0c97d20751","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-7.0.0.tgz","fileCount":22,"integrity":"sha512-CUmopOLYizI+aQLb/YTi8nVTlBl+OEdLt4jndk9ROpX34e1kDubsaNbjfVGqjtUgm1fXdgrF7Xup+8bAAtQGtQ==","signatures":[{"sig":"MEQCIHPmeyCNG09yxvykFEqDW5tey9uhuXXGeicC0FhDj58LAiA4yBGt8yO7SdZQbnYRk6auM5gCWYjRkwpFA1ymVBgCeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":223788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyD2ECRA9TVsSAnZWagAANyUP/2DPKGGeL/2RAwOBqzEh\nR9NrTdY8Yoa2Dy3jjqJTrPaohRu8xsvSCwo5oJV9J8iC5VNFKUGMNx61v7Q9\nqXS+6ls4C4Iavd9pn70IiR3e61ezWpo82gOEEHAna97B1IrFjkugOmZiz4Td\nnqyTmak1mrWZQHpceSdnuCBZw9YFo1nNxeDq1TX39EKFDjRGUZ81RQt4IBzy\n3tMgqOtgKexfGjAJ6J0vc/NPB4GjxZ98aVjqn3rTanCLvljJC3TzbavbqXzX\nnjoWsR4o96ZvJ3yhocGKWqbYgxwTNb9OvFwuZ9/uXQFaEt1JXCDwT9xJRxZM\nGSfVspDAm5vhbLZAQK6ubzPbQ1HJrQ9MOI/1hZVbOMYvdhB0uFHHmk7hX2ja\nPtzNk8ehFXAm3zBYJTqJNJmJzCvUmq85w6FIvx9xBBytBjtdyM9Rgv5MjwK/\nGKYeh0OJe+/A8SDoqR6JzwBQnrwNoA+5QwmGJgzuE1/bB/EBJzeqCuR+7Mb6\naJUEruj6xI+WqXQ0n99uh5XYgk1hb6Q6AqrGSemL5XomzlXh/WZ1G6ZNh/XQ\nVSJ7oycflVErRN/ld7N9olorZmpQ6WKvoxvx1B+iTkJu7J/QTSLVeDdjBVmn\n0kWXNjUzEI6nKdFODaWvL/csIEryZ8CswqwRFcGYZ61R4jz1IYUVrmlVwME1\nv27M\r\n=kYSQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/angular-svg-round-progressbar.umd.js","es2015":"fesm2015/angular-svg-round-progressbar.js","module":"fesm2015/angular-svg-round-progressbar.js","esm2015":"esm2015/angular-svg-round-progressbar.js","typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.js","metadata":"angular-svg-round-progressbar.metadata.json","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"_npmVersion":"6.13.1","description":"Angular module that uses SVG to create a circular progressbar","directories":{},"sideEffects":false,"_nodeVersion":"14.16.1","dependencies":{"tslib":"^2.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^12.0.0","@angular/common":"^12.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_7.0.0_1623735684297_0.6543326590896477","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"angular-svg-round-progressbar","version":"8.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@8.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"9399a5575a50b791823d309b2cb355a719229106","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-8.0.0.tgz","fileCount":27,"integrity":"sha512-nCF6e28bBqopf76lYQp+AKBXWjgtfi3jOO/fLQotvjPlNPXTwKE68t+OmIrom9TkadgsPwVCuhh2PsdFO5wSxQ==","signatures":[{"sig":"MEUCIQDGnpcfPgK/fcSYvdhyS0e20jWwbZMlqL2B/Yet2ORz/AIgXAbaWNsLNW7flRAUbDg43zgYh94amWSj5O72BYQWmOE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":222260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2janCRA9TVsSAnZWagAAYPEP/Rs7NAZhLHlgqoWjggdF\nAU4Upgr5yOH8OvGNNN/67AB/KcpQBdNK0eRYY0pa+duCjaJI49CXXMSJXNqK\ndjfOKeQ6ukj+Fu12kwyu+gcc7UxwjGwdpdHlGO6VsT7AqgGO7obWRMryY2wp\nb+yj1pNzLdmhMrHOq3wDVINU1p6Ne/8/GX4Rk/hv5QMDpNg+kxaAkEsX8suv\n3VKTI86maHrGsfr1iPnBvjMysk/e6jptBFsepUjfYt7RW4NjDLeRFiz+0V7i\nRF66FBIZ3vMSu/TGOWdeUHdaz4PljLftwDaqI53syfW1YGo2npi5UatvyFuR\nhSVT+CBQUYZbUKNvY9ZGkC38LlVB7Q9P50jdOSRiySnDJRpoPYky8edTmZ0o\ngkrnbb05uYoiDLT/cEC0MtynjheyWBodqi3McufafgqHknMC2c65P2rt5eT3\nJdnfv74ceL/lI+fwCOfDUlVbg7OP7JineDYofbxNe/xTNgoKjbc3Y3lsd+MK\n/Mmni1p1mEzidBts8VdOQcSxkpevlWce4Ln/DtGZV7Sjnr4LUH6b4xCIqtzs\nEMlqvagkD7IYtZ9i/LKqicuOb1d4q1XMV5w32FbVK9JqZgPkRm8CP7/ujmGx\njuoNSuXXmFFVVrqJc7ENnOfwkrcuWvbchU/GtTanOSZBQRKpqqQcOhZPNvE8\nG0J0\r\n=jvOu\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/angular-svg-round-progressbar.mjs","module":"fesm2015/angular-svg-round-progressbar.mjs","esm2020":"esm2020/angular-svg-round-progressbar.mjs","exports":{".":{"node":"./fesm2015/angular-svg-round-progressbar.mjs","types":"./angular-svg-round-progressbar.d.ts","es2015":"./fesm2015/angular-svg-round-progressbar.mjs","es2020":"./fesm2020/angular-svg-round-progressbar.mjs","default":"./fesm2020/angular-svg-round-progressbar.mjs","esm2020":"./esm2020/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"angular-svg-round-progressbar.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.mjs","fesm2020":"fesm2020/angular-svg-round-progressbar.mjs","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^13.0.0","@angular/common":"^13.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_8.0.0_1636803976784_0.08472483382226814","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"angular-svg-round-progressbar","version":"9.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@9.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"7291c45ba5261345e666800794f04c6c370667d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-9.0.0.tgz","fileCount":27,"integrity":"sha512-q8d2AEG9u+GMAMrZY40NgejN5fHwR4iK+rRxtJ7NnMEvvuAMqt9UEtKe0SqVQHvZYE6W16L5J9yaO+TEtfRjpw==","signatures":[{"sig":"MEUCIQDdn37Vro+uPE0nxj5KXV/JoC9WmUx5R6osA1z+qPdblgIgGvSX2lhhTJW6lML7vB0qR6OLMa8EQagHU8e3C80dVJA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":228432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimxL1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqzqw/+NgltbhPEKPWPgjnHrM7gw0LFSqzcZPVeR6oa1PKjBBAvqrxy\r\nf0fX3wadIglG9REPUW186XBicy5huBfCRMBYPKgIplUCAv0CPdFk4lrvEWq7\r\nH2imnIKzzQImT5BrPJ91xB0nTk7dbbYkPgmQCI2Rkb45z9Ur1Pec/cLTy42M\r\nZpA7OpBxdj31IZvyXarhxRKjWRf+qmSWl6gtSgVrllHflgx5Y7k/8mjif0s6\r\ntlllj8onebPdRoGSNQ8kStLbL7Z2RSyLWGVrObqv9KcjR9CEYM8E3lvZJOGB\r\nKE70VMI9PTpl229cOnhSFJo65sHW0LuybSSfUB6rScKz9Vj+cVvazKdSyg0s\r\nSpOmB8LPLItZP7IKWG1kITA7yzZA0z5Ks1AtUhnyaMMiHje0oVyyy482t1l4\r\nLVax2WqIzF2GMakRk99p29pMA/rdCd2JvyglmYRTFi6xRNZd1sLQhYXYtEJ+\r\n9w3obtRSaV18ZKC8S8lrVVHxGz9nKIHm9xUqEWrFcybiY9aLraUUp2h6ZCrG\r\nuE7kTbLU0TWTZzP1lPrzYg9jjkUT7C62RmPW48FmROTKuD26rMWg/vf+wHPN\r\nYwdJFRsbCzQG59p81gLSUCZF7NRFngZn1tW3wjimXIpynDXyoTQUST5Mya+W\r\nAIQwq53+XE8tFahLl4HcSWpAFmD9LAyOBPE=\r\n=kZG+\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/angular-svg-round-progressbar.mjs","module":"fesm2015/angular-svg-round-progressbar.mjs","esm2020":"esm2020/angular-svg-round-progressbar.mjs","exports":{".":{"node":"./fesm2015/angular-svg-round-progressbar.mjs","types":"./index.d.ts","es2015":"./fesm2015/angular-svg-round-progressbar.mjs","es2020":"./fesm2020/angular-svg-round-progressbar.mjs","default":"./fesm2020/angular-svg-round-progressbar.mjs","esm2020":"./esm2020/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.mjs","fesm2020":"fesm2020/angular-svg-round-progressbar.mjs","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^14.0.0","@angular/common":"^14.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_9.0.0_1654330100780_0.576764999605097","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"angular-svg-round-progressbar","version":"10.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@10.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"fd13201839450ab589430b693358db416e27a850","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-10.0.0.tgz","fileCount":27,"integrity":"sha512-X7t7+P6dEMySJHPefjDnTUQ72iM/qGGmrtbsTBg8WYJQVj7woN5AiqiZazshrLhge2ksCbryAVULm8XMGR0uvA==","signatures":[{"sig":"MEYCIQDIHAtL5Skrd62mJBTt7eTVROJLzich4k9s+5Gqvb6N0AIhANyC0vTpdbPmFnpYSJFyMihPilq0XkcXf5SZRGbbSbIw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":230393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwCfRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeFg//Sb0yb6baUjcqqjgrRjvzvP6jEbr+aU+EbCLYbHLVcs5jKrBG\r\nctDWOCb7bKHsIcHi7QAQOxDOipTuLs3m0avhEBNXQbemxsSE6UYysAxcnujF\r\nniaKqrZYQJxUA7KBhfSu+gokNOkLmCqeYF8HC81dvro3V5xv5RWVE5cHkXZE\r\njjG2PDcGrxEulPBibJCqo8JwUvfgHQQBC1XTKBh/9+edb4zbmDDveMrYCb/Z\r\nr6YSQZHpdZSXoYC3Yn3uSnWV+8CaicKijvbka8YepR8lQraonBK2rUq/ldtx\r\np858PD++BUf1C2USK3upPPEyVmsQYlIQpDAdiSJuTB39hl9S80IFM7W+Mxs2\r\nCP1+K9B9XqJDF0pzyqbJTxQbbCrtzaeIkHSq99IT/yAHtEZt5Zny432dkShs\r\n+x4A/6lELLiZUixKrQc40jEEOPw3iXKbaWuqbEj0LQCArVAU4lzG54xQVtGQ\r\nz6q7lxRQ1rwb2fwKZJzZ5oVWt2Z86m1f6NglPoxuA7PNjFeNvW1LDddSc2dp\r\nG4wKb60TKXNxUc2nuOLVc8bcEtEhDsd448bdOdFpWZSouyAEd+ZzUGRHYrul\r\ni0AMmOWb7BKEAxaGPwd4lA6ZcQpiqK6wtEnkVFIDIFnB8vhyZwwa8Fu2xaNW\r\njAuPtZONscT0ZoN5zEFZP50CH2JaxVw7it0=\r\n=zeqn\r\n-----END PGP SIGNATURE-----\r\n"},"es2020":"fesm2020/angular-svg-round-progressbar.mjs","module":"fesm2015/angular-svg-round-progressbar.mjs","esm2020":"esm2020/angular-svg-round-progressbar.mjs","exports":{".":{"node":"./fesm2015/angular-svg-round-progressbar.mjs","types":"./index.d.ts","es2015":"./fesm2015/angular-svg-round-progressbar.mjs","es2020":"./fesm2020/angular-svg-round-progressbar.mjs","default":"./fesm2020/angular-svg-round-progressbar.mjs","esm2020":"./esm2020/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"fesm2015":"fesm2015/angular-svg-round-progressbar.mjs","fesm2020":"fesm2020/angular-svg-round-progressbar.mjs","repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^15.0.0","@angular/common":"^15.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_10.0.0_1673537488767_0.9259799332767977","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"angular-svg-round-progressbar","version":"11.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@11.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"6546b73f7e42c736a9820eebd608fd50126adac9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-11.0.0.tgz","fileCount":24,"integrity":"sha512-48coZKVfW0WIaGXWI/o7xFvVmp87Dg79yRqXnmH0lGhTSGvSkZZhFRVvK8p12RqglEcqFMK8M2PQddYXfJiEXQ==","signatures":[{"sig":"MEYCIQC49a7Glb+oKwAZ3DnuWFA0TfkoJtt+MACPqoY85Gd7hAIhANKm+09K3Ooc4rIb2PvRi5CcSKZ7MzncyrddpSDFOeNc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":163701},"module":"fesm2022/angular-svg-round-progressbar.mjs","exports":{".":{"esm":"./esm2022/angular-svg-round-progressbar.mjs","types":"./index.d.ts","default":"./fesm2022/angular-svg-round-progressbar.mjs","esm2022":"./esm2022/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^16.0.0","@angular/common":"^16.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_11.0.0_1686169612735_0.26542128251578","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"angular-svg-round-progressbar","version":"12.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@12.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"5b8379747a179cddb9cca9343106c778c32604d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-12.0.0.tgz","fileCount":24,"integrity":"sha512-zf5TLC0goQZgirSp6g72SdN8Vz7a3VuKVqdSnIuAf0Q7Nx55crmlwLWIEYIxrKe5A1wea8fnOF8oFK5v8mCAsA==","signatures":[{"sig":"MEQCIE1cvMDlU3tG8yHgq3FLQoV6equ0lvszhbsE6uJs9RoPAiAs23bO7Ps15VqAt3iJFAxRKr1bYQ7KNDpRG5IahuIIew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":164360},"module":"fesm2022/angular-svg-round-progressbar.mjs","exports":{".":{"esm":"./esm2022/angular-svg-round-progressbar.mjs","types":"./index.d.ts","default":"./fesm2022/angular-svg-round-progressbar.mjs","esm2022":"./esm2022/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^17.0.0","@angular/common":"^17.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_12.0.0_1701665263901_0.6587012890730302","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"angular-svg-round-progressbar","version":"13.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@13.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"61d00e1889d01529379c636c049029e16d59c44b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-13.0.0.tgz","fileCount":24,"integrity":"sha512-zAQCIpCWFeK8t8x6FieA0t1qP7V4zNH7jn4ocXpqkKjPZeXZpGVaoV1quBaN89pAze3h7CKONlV7mAZR0MgPmA==","signatures":[{"sig":"MEYCIQDMCJyxQraHW6B13TRPTIrYK6xbOB7vwYpl3aSjv5e4iwIhALa9XuKU7WWrzR0JtgaiETDkpbWPO3DVzWX+8VwSg2Kc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":164707},"module":"fesm2022/angular-svg-round-progressbar.mjs","exports":{".":{"esm":"./esm2022/angular-svg-round-progressbar.mjs","types":"./index.d.ts","default":"./fesm2022/angular-svg-round-progressbar.mjs","esm2022":"./esm2022/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"@angular/core":"^18.0.0","@angular/common":"^18.0.0"},"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_13.0.0_1717568994961_0.21053145522735917","host":"s3://npm-registry-packages"}},"14.0.0":{"name":"angular-svg-round-progressbar","version":"14.0.0","keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","_id":"angular-svg-round-progressbar@14.0.0","maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"dist":{"shasum":"2d95768efdf9080c3bb97a9f52c8f5af8725db82","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-14.0.0.tgz","fileCount":15,"integrity":"sha512-atsU0KzCUyibX0LqEDZi5NvDqthf5/6Zbd6X4rNgE0JZcGJfjIzZ6WL1ziH5HQT9IIYQs/twb+rxsIc4RpXKzg==","signatures":[{"sig":"MEQCIDmBxwL0eeYVquoKPhnHz287jUM3wtPIRK1/n6wnodHmAiAS2h7MnaZfRza6v1njGayUEmbxOhCMJkpK4axB2DKOlg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81927},"module":"fesm2022/angular-svg-round-progressbar.mjs","exports":{".":{"types":"./index.d.ts","default":"./fesm2022/angular-svg-round-progressbar.mjs"},"./package.json":{"default":"./package.json"}},"typings":"index.d.ts","_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"repository":{"url":"git://github.com/crisbeto/angular-svg-round-progressbar.git","type":"git"},"description":"Angular module that uses SVG to create a circular progressbar","directories":{},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/angular-svg-round-progressbar_14.0.0_1734524333008_0.6457437858396553","host":"s3://npm-registry-packages-npm-production"}},"15.0.0":{"name":"angular-svg-round-progressbar","version":"15.0.0","description":"Angular module that uses SVG to create a circular progressbar","repository":{"type":"git","url":"git://github.com/crisbeto/angular-svg-round-progressbar.git"},"keywords":["angular","progress","circle","round","svg"],"author":{"name":"crisbeto"},"license":"MIT","bugs":{"url":"https://github.com/crisbeto/angular-svg-round-progressbar/issues"},"homepage":"https://github.com/crisbeto/angular-svg-round-progressbar","module":"fesm2022/angular-svg-round-progressbar.mjs","typings":"index.d.ts","exports":{"./package.json":{"default":"./package.json"},".":{"types":"./index.d.ts","default":"./fesm2022/angular-svg-round-progressbar.mjs"}},"sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"licenseText":"The MIT License\n\nCopyright (c) 2014 crisbeto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n","_id":"angular-svg-round-progressbar@15.0.0","dist":{"shasum":"c6e006a4f407eb96bef5e1ce1b5ee72aa708921d","integrity":"sha512-zC4mINRTJEDDcGcbIkxUAj+yneiG98eO+10083Hs9nvehnEAylA+rlWOJigbdmfjx0qJvj5/X8E3NuMaiEQfBQ==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/angular-svg-round-progressbar/-/angular-svg-round-progressbar-15.0.0.tgz","fileCount":8,"unpackedSize":82216,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIE2jHYfKVachljxofkmOPNI/P3X0BV2L3U4Je8mE0muVAiA5w6cQjolf3eYaJmDNsiiQ0uXrFU72K3G+HEUQwUlfGQ=="}]},"_npmUser":{"name":"anonymous","email":"crisbeto@abv.bg"},"directories":{},"maintainers":[{"name":"anonymous","email":"crisbeto@abv.bg"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/angular-svg-round-progressbar_15.0.0_1755878506724_0.9917318412331899"},"_hasShrinkwrap":false}},"name":"angular-svg-round-progressbar","time":{"created":"2015-10-01T13:03:23.072Z","modified":"2025-08-22T16:01:47.086Z","0.3.4":"2015-10-01T13:03:23.072Z","0.3.5":"2015-10-03T14:27:48.570Z","0.3.6":"2015-10-12T17:49:38.353Z","0.3.7":"2015-10-13T04:59:21.109Z","0.3.8":"2015-10-21T18:04:50.954Z","0.3.9":"2015-12-27T15:30:37.122Z","0.3.10":"2016-01-23T09:32:58.393Z","0.4.0":"2016-03-24T16:57:13.023Z","0.4.1":"2016-03-24T18:32:33.892Z","0.4.2":"2016-03-30T21:05:17.289Z","0.4.3":"2016-05-01T13:34:22.111Z","0.4.4":"2016-05-06T17:40:56.500Z","0.4.5":"2016-07-04T11:12:48.384Z","0.4.6":"2016-07-06T20:39:08.236Z","0.4.7":"2016-08-17T10:48:56.121Z","0.4.8":"2016-09-18T18:52:56.386Z","1.0.0":"2016-12-20T20:25:29.078Z","1.0.1":"2016-12-20T20:35:32.795Z","1.0.2":"2016-12-20T20:40:48.355Z","1.0.3":"2016-12-20T20:52:33.729Z","1.0.4":"2017-01-01T08:45:27.366Z","1.0.5":"2017-03-05T10:56:51.876Z","1.0.6":"2017-03-25T23:27:20.247Z","1.0.7":"2017-03-28T10:39:06.813Z","1.1.0":"2017-04-10T17:52:02.218Z","1.1.1":"2017-10-07T08:34:07.691Z","1.2.0":"2017-11-02T13:43:56.334Z","1.2.1":"2017-12-02T16:37:09.205Z","2.0.0":"2018-05-17T14:25:37.114Z","3.0.0":"2019-05-30T05:42:37.916Z","3.0.1":"2019-06-01T18:08:38.779Z","4.0.0":"2020-07-22T10:55:52.678Z","5.0.0":"2020-10-10T14:49:45.422Z","5.0.1":"2020-10-10T15:07:53.326Z","5.0.2":"2020-10-12T14:08:38.801Z","6.0.0":"2021-02-08T16:01:48.971Z","6.0.1":"2021-04-28T05:43:56.595Z","7.0.0":"2021-06-15T05:41:24.510Z","8.0.0":"2021-11-13T11:46:16.986Z","9.0.0":"2022-06-04T08:08:20.987Z","10.0.0":"2023-01-12T15:31:29.018Z","11.0.0":"2023-06-07T20:26:52.982Z","12.0.0":"2023-12-04T04:47:44.066Z","13.0.0":"2024-06-05T06:29:55.166Z","14.0.0":"2024-12-18T12:18:53.172Z","15.0.0":"2025-08-22T16:01:46.907Z"},"readmeFilename":"README.md","homepage":"https://github.com/crisbeto/angular-svg-round-progressbar"}