{"_attachments":{},"_id":"path2d-polyfill","_rev":"1784513-61f46d497c7df1841d28f1ee","author":{"name":"nilzona"},"description":"Polyfills Path2D api for canvas rendering","dist-tags":{"beta":"2.0.0-beta.0","latest":"3.2.1"},"license":"MIT","maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"name":"path2d-polyfill","readme":"# path2d-polyfill\n\n[![CI](https://github.com/nilzona/path2d-polyfill/actions/workflows/ci.yml/badge.svg)](https://github.com/nilzona/path2d-polyfill/actions/workflows/ci.yml)\n\nPolyfills `Path2D` api and `roundRect` for CanvasRenderingContext2D\n\n## Usage\n\nAdd this script tag to your page to enable the feature.\n\n```html\n<script lang=\"javascript\" src=\"https://cdn.jsdelivr.net/npm/path2d-polyfill/dist/path2d-polyfill.min.js\"></script>\n```\n\nThis will polyfill the browser's window object with Path2D features and it will also polyfill roundRect if they are missing in both CanvasRenderingContexst and Path2D.\n\nExample of usage\n\n```javascript\nctx.fill(new Path2D(\"M 80 80 A 45 45 0 0 0 125 125 L 125 80 Z\"));\nctx.stroke(new Path2D(\"M 80 80 A 45 45 0 0 0 125 125 L 125 80 Z\"));\n\n// or ...\nconst path = new Path2D();\npath.roundRect(10, 10, 100, 60, { x: 20, y: 10 }); // Elliptical corners\nctx.stroke(path);\n\n// Mixed corner types\nconst path2 = new Path2D();\npath2.roundRect(10, 10, 100, 60, [{ x: 15, y: 5 }, 10, { x: 5, y: 15 }, 8]);\nctx.stroke(path2);\n```\n\n## Support table\n\n| Method               | Supported |\n| -------------------- | :-------: |\n| constructor(SVGPath) |    Yes    |\n| addPath()            |    Yes    |\n| closePath()          |    Yes    |\n| moveTo()             |    Yes    |\n| lineTo()             |    Yes    |\n| bezierCurveTo()      |    Yes    |\n| quadraticCurveTo()   |    Yes    |\n| arc()                |    Yes    |\n| ellipse()            |    Yes    |\n| rect()               |    Yes    |\n| roundRect()          |    Yes    |\n\n## See it in action\n\nClone [path2d-polyfill](https://github.com/nilzona/path2d-polyfill)\n\n```shell\npnpm install\npnpm dev\n```\n\nopen <http://localhost:5173/> to see the example page.\n\n## Contributing\n\nRecommended to use vscode with the prettier extension to keep formatting intact.\n","time":{"created":"2022-01-28T22:25:13.300Z","modified":"2025-06-24T15:06:06.413Z","1.2.0":"2021-10-30T13:27:56.785Z","1.1.8":"2021-10-30T07:02:01.351Z","1.1.7":"2021-10-30T07:01:39.270Z","1.1.6":"2021-10-30T07:01:18.662Z","1.1.5":"2021-10-30T06:59:03.229Z","1.1.4":"2021-10-30T06:58:53.820Z","1.1.3":"2021-10-30T06:56:06.249Z","1.1.2":"2021-05-04T19:03:57.098Z","1.1.1":"2020-11-16T19:52:27.057Z","1.1.0":"2020-08-28T10:00:19.326Z","1.0.2":"2020-08-27T09:59:25.019Z","1.0.1":"2020-08-27T09:53:27.512Z","1.0.0":"2020-05-27T08:30:38.979Z","0.4.2":"2019-08-28T07:27:41.607Z","0.4.1":"2019-04-15T07:27:31.825Z","0.4.0":"2019-04-12T20:58:48.821Z","0.3.1":"2018-09-26T08:30:30.934Z","0.3.0":"2018-09-25T13:21:39.385Z","0.2.2":"2018-09-04T10:49:57.791Z","0.2.1":"2018-06-05T22:00:28.687Z","0.2.0":"2018-06-04T22:03:37.785Z","0.1.3":"2018-05-22T15:05:13.425Z","0.1.2":"2018-05-19T13:42:18.756Z","0.1.1":"2018-05-18T22:34:45.690Z","0.1.0":"2018-05-18T22:12:01.106Z","1.2.1":"2022-03-06T10:07:10.432Z","1.2.2":"2022-07-23T21:28:56.097Z","1.2.3":"2022-10-11T06:06:16.691Z","2.0.0-beta.0":"2023-01-09T17:31:22.880Z","2.0.0":"2023-01-22T15:08:06.000Z","2.0.1":"2023-01-22T20:01:19.237Z","2.1.1":"2024-03-16T23:15:26.838Z","3.0.0":"2024-03-17T07:33:31.729Z","3.0.1":"2024-03-17T19:25:53.764Z","3.1.0":"2024-04-04T12:29:51.525Z","3.1.1":"2024-06-06T10:24:15.744Z","3.1.2":"2024-06-29T12:49:37.389Z","3.1.3":"2024-11-07T12:26:53.678Z","3.2.0":"2025-06-24T14:35:48.959Z","3.2.1":"2025-06-24T15:04:58.049Z"},"versions":{"1.2.0":{"name":"path2d-polyfill","version":"1.2.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.16.0","@babel/preset-env":"^7.16.0","@commitlint/cli":"^13.2.1","@commitlint/config-conventional":"^13.2.0","@release-it/conventional-changelog":"^3.3.0","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^21.0.1","chai":"^4.3.4","eslint":"^8.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.4","lint-staged":"^11.2.6","mocha":"^9.1.3","nyc":"^15.0.1","prettier":"^2.4.1","release-it":"^14.11.5","rollup":"^2.58.3","rollup-plugin-livereload":"^2.0.5","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^11.1.2","sinon-chai":"^3.7.0"},"dependencies":{},"licenseText":"MIT License\n\nCopyright (c) 2018 Anders Nilsson\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 all\ncopies 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 THE\nSOFTWARE.\n","_id":"path2d-polyfill@1.2.0","dist":{"shasum":"5f3d4fc682eb59fc422e8666868f2415f0675ff5","integrity":"sha512-ziMDFXcKbvTAY/O87LisqGJFzT6UvT7iYft1wl/EL6f3grFFFpp/C+y5ZVxJVjziy9VNrvl8sa4zi+u9RlikZA==","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.2.0.tgz","fileCount":14,"unpackedSize":101138,"size":24817,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.2.0_1635600476603_0.6481209821462945"},"_hasShrinkwrap":false,"publish_time":1635600476785,"_cnpm_publish_time":1635600476785,"_cnpmcore_publish_time":"2021-12-17T22:33:58.686Z"},"1.1.8":{"name":"path2d-polyfill","version":"1.1.8","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"e9f46900db2e654fb651059cdbaa9ea0d2c47c8b","_id":"path2d-polyfill@1.1.8","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-j3lDuzSrcd7pAABlXqVxy1hV/nBUm6ntxOrQZHWVV2czqwe/I/0hB7dt+wTKq7H2n9V6vK31GheSPYptnSibRg==","shasum":"00abf70122da7ca3898451a242ed2c1d098e1507","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.8.tgz","fileCount":10,"unpackedSize":98378,"size":22569,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.8_1635577321224_0.8380026549843125"},"_hasShrinkwrap":false,"publish_time":1635577321351,"_cnpm_publish_time":1635577321351,"_cnpmcore_publish_time":"2021-12-17T22:33:58.841Z"},"1.1.7":{"name":"path2d-polyfill","version":"1.1.7","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"db4246ab1677879c53dd1bb751f6431256b81352","_id":"path2d-polyfill@1.1.7","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-grS1LKdW7FYONx0Hp/irdDLG3nf3oe81fUkl9o1pjZjX/wHiGHUUZRVjtU4FVmR0jp7q2TOK5FulrF0YMNiIEg==","shasum":"24b14e4bca885287203662bba37d019ba86a6f20","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.7.tgz","fileCount":10,"unpackedSize":98378,"size":22569,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.7_1635577299122_0.9220385674798635"},"_hasShrinkwrap":false,"publish_time":1635577299270,"_cnpm_publish_time":1635577299270,"_cnpmcore_publish_time":"2021-12-17T22:33:59.001Z"},"1.1.6":{"name":"path2d-polyfill","version":"1.1.6","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"194ef792be3689575c7b997befdbde4e2f645d00","_id":"path2d-polyfill@1.1.6","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-147WVss8lFq59ybZjlxTqtQIFa8K7L8gR7M6+AM113ZDDuRM4XUvIvk8l0F+JXETXVmTwt53Bcw9IITwDj1Wow==","shasum":"7f3d19ebefc8ef218cf8b39b619fc4d4adb0709e","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.6.tgz","fileCount":10,"unpackedSize":98378,"size":22569,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.6_1635577278495_0.5707990053554122"},"_hasShrinkwrap":false,"publish_time":1635577278662,"_cnpm_publish_time":1635577278662,"_cnpmcore_publish_time":"2021-12-17T22:33:59.159Z"},"1.1.5":{"name":"path2d-polyfill","version":"1.1.5","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"b9c5c1065e3bd15dc819f0754b78015477f77b21","_id":"path2d-polyfill@1.1.5","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-4O9EAo1UOMboIo3+SbrNHsT86wkk25lTKWOHDPhcLX6he0zfwZ2xC2t/957/hhWDtb+fcd68D+nUHcGIRhaftA==","shasum":"bbcab2ae14152b65f8f73465b66ffb4d74299884","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.5.tgz","fileCount":10,"unpackedSize":98378,"size":22569,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.5_1635577143060_0.41594111384763255"},"_hasShrinkwrap":false,"publish_time":1635577143229,"_cnpm_publish_time":1635577143229,"_cnpmcore_publish_time":"2021-12-17T22:33:59.319Z"},"1.1.4":{"name":"path2d-polyfill","version":"1.1.4","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"c80cb333c8702ac3048f71ea489c8b0602462be8","_id":"path2d-polyfill@1.1.4","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-7KSbN/1Cp0z7k4mIqvg0bnjpKX14bGCyJ1H+LLFJaNHv8YpPN+Zrl1vsCIxdnTF77QsgtMUD6eM+Gg25nOcZkA==","shasum":"ea705f7cca2f74b19d610f0bc4f7899e731e4f19","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.4.tgz","fileCount":10,"unpackedSize":98378,"size":22569,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.4_1635577133679_0.05781687028090787"},"_hasShrinkwrap":false,"publish_time":1635577133820,"_cnpm_publish_time":1635577133820,"_cnpmcore_publish_time":"2021-12-17T22:33:59.496Z"},"1.1.3":{"name":"path2d-polyfill","version":"1.1.3","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"6ae67fd64b4a5bc43f5597c21560ab3dc577dd3a","_id":"path2d-polyfill@1.1.3","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-KxETPnuOPmz0p3CqH7/7uom2K8ctE7pRGCCFDVSrcth9utGJvippKxR44GoGxHrFfefnPguKDJZ9c/g5SBqWLg==","shasum":"2bfcb367b5849416eec83191530f9de8b07a35f8","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.3.tgz","fileCount":10,"unpackedSize":98378,"size":22569,"noattachment":false},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.3_1635576966098_0.7238384862190312"},"_hasShrinkwrap":false,"publish_time":1635576966249,"_cnpm_publish_time":1635576966249,"_cnpmcore_publish_time":"2021-12-17T22:33:59.826Z"},"1.1.2":{"name":"path2d-polyfill","version":"1.1.2","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format":"prettier . --write"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.14.0","@babel/preset-env":"^7.14.1","@rollup/plugin-babel":"^5.3.0","@rollup/plugin-commonjs":"^18.1.0","chai":"^4.3.4","eslint":"^7.25.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","mocha":"^8.3.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.47.0","rollup-plugin-livereload":"^2.0.0","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^10.0.0","sinon-chai":"^3.6.0"},"gitHead":"a6cf9d6dbc54b6c4abab7ba8553b7817010f54d0","_id":"path2d-polyfill@1.1.2","_nodeVersion":"12.22.1","_npmVersion":"6.14.12","dist":{"shasum":"8d0e06b8c08c8408f1db65f9ab0ab1081194653b","size":22568,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.2.tgz","integrity":"sha512-rUiPojuR3oOVDf/yqtwPwJaadCLHA1g1m/sMoWosKENluxeZAJ/pvchfuwR9jD0akSvE57qCBAI+ETlDxg9qhQ=="},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.2_1620155036925_0.35528727818740036"},"_hasShrinkwrap":false,"publish_time":1620155037098,"_cnpm_publish_time":1620155037098,"_cnpmcore_publish_time":"2021-12-17T22:34:00.075Z"},"1.1.1":{"name":"path2d-polyfill","version":"1.1.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","@rollup/plugin-babel":"^5.0.2","@rollup/plugin-commonjs":"^15.0.0","chai":"^4.2.0","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","mocha":"^8.1.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.10.9","rollup-plugin-livereload":"^1.3.0","rollup-plugin-serve":"^1.0.1","rollup-plugin-terser":"7.0.0","sinon":"^9.0.2","sinon-chai":"^3.3.0"},"gitHead":"5a0abaab6976f10c57ac83e6f6481ed425ac940e","_id":"path2d-polyfill@1.1.1","_nodeVersion":"12.19.1","_npmVersion":"6.14.8","dist":{"shasum":"80ad3e09ddedd018b06ce183c1a36d0a70a8d609","size":22623,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.1.tgz","integrity":"sha512-gVcRCJDM8hmNIxHSd/g676C1w5kiBP83/ehzldSihVAyTGWlahPTmXyc2NnQfhfPu06MdOopGgBGcm6tALeRnw=="},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.1_1605556346910_0.6110280444784957"},"_hasShrinkwrap":false,"publish_time":1605556347057,"_cnpm_publish_time":1605556347057,"_cnpmcore_publish_time":"2021-12-17T22:34:00.288Z"},"1.1.0":{"name":"path2d-polyfill","version":"1.1.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","@rollup/plugin-babel":"^5.0.2","@rollup/plugin-commonjs":"^15.0.0","chai":"^4.2.0","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","mocha":"^8.1.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.10.9","rollup-plugin-livereload":"^1.3.0","rollup-plugin-serve":"^1.0.1","rollup-plugin-terser":"7.0.0","sinon":"^9.0.2","sinon-chai":"^3.3.0"},"gitHead":"394c50f552b458295221274aac637c33ada9acf1","_id":"path2d-polyfill@1.1.0","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"shasum":"7d51e7650a5f3404926e65e4bd4327e49be8d90d","size":22581,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.1.0.tgz","integrity":"sha512-/iZzhtX6NLnEQSgga/5cWNwkqQMS6MZ7axYDK80qtCL5JMHXFo2MSreLTsZwU7eFCxaxvYlJOa/IVO5iHvRVWQ=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.1.0_1598608819182_0.42212065366528284"},"_hasShrinkwrap":false,"publish_time":1598608819326,"_cnpm_publish_time":1598608819326,"_cnpmcore_publish_time":"2021-12-17T22:34:00.493Z"},"1.0.2":{"name":"path2d-polyfill","version":"1.0.2","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","@rollup/plugin-babel":"^5.0.2","@rollup/plugin-commonjs":"^15.0.0","chai":"^4.2.0","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","mocha":"^8.1.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.10.9","rollup-plugin-livereload":"^1.3.0","rollup-plugin-serve":"^1.0.1","rollup-plugin-terser":"7.0.0","sinon":"^9.0.2","sinon-chai":"^3.3.0"},"gitHead":"483afe2b3440083bbb0c3dae74510959055d0f86","_id":"path2d-polyfill@1.0.2","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"shasum":"15e2d46442fdb56e9c51ec25374649be046d8b84","size":21722,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.0.2.tgz","integrity":"sha512-PHnbk2YQ3QuD291vEsg4RsqQazF79yeTX5ciXwAk4vjHrwYkSda4zcz4MD4K2htyjNjL0LrHX+zASUlwaxw1sg=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.0.2_1598522364842_0.5294383366594639"},"_hasShrinkwrap":false,"publish_time":1598522365019,"_cnpm_publish_time":1598522365019,"_cnpmcore_publish_time":"2021-12-17T22:34:00.717Z"},"1.0.1":{"name":"path2d-polyfill","version":"1.0.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","@rollup/plugin-babel":"^5.0.2","@rollup/plugin-commonjs":"^15.0.0","chai":"^4.2.0","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","mocha":"^8.1.2","nyc":"^15.0.1","prettier":"^2.1.1","rollup":"^2.10.9","rollup-plugin-livereload":"^1.3.0","rollup-plugin-serve":"^1.0.1","rollup-plugin-terser":"7.0.0","sinon":"^9.0.2","sinon-chai":"^3.3.0"},"gitHead":"62d79c6b53567966c43ded10e3aba5cf268ae4d6","_id":"path2d-polyfill@1.0.1","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"shasum":"6f5059ee5633583af4a944d259610668a9d021ef","size":21743,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.0.1.tgz","integrity":"sha512-NgKM3YN+tRaHvprJQrnCq+0hbCwDI+I1Nxtlma8IveEQGtvmtx2/pTtBnZ9QQfbG5ot9K3Pt6/zubWFtB1izoA=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.0.1_1598522007400_0.13896715321663922"},"_hasShrinkwrap":false,"publish_time":1598522007512,"_cnpm_publish_time":1598522007512,"_cnpmcore_publish_time":"2021-12-17T22:34:00.925Z"},"1.0.0":{"name":"path2d-polyfill","version":"1.0.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","@rollup/plugin-babel":"^5.0.2","@rollup/plugin-commonjs":"^12.0.0","chai":"^4.2.0","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","mocha":"^7.2.0","nyc":"^15.0.1","prettier":"2.0.5","rollup":"^2.10.9","rollup-plugin-livereload":"^1.3.0","rollup-plugin-serve":"^1.0.1","rollup-plugin-terser":"6.1.0","sinon":"^9.0.2","sinon-chai":"^3.3.0"},"gitHead":"8a7e42a4f35fdde20fb645dc320e40a8e64e7190","_id":"path2d-polyfill@1.0.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.4","dist":{"shasum":"70434b511e2dde5a905c1c1f9dcf36616e45cd5d","size":21784,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.0.0.tgz","integrity":"sha512-DT3X1EcMTfXSbh619YsoKmXh/8+If3DIYALawcGnH+x9Gv+uUnnAoVR/TL3syAXtfLienQvw3sTcP+fI2bduOA=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.0.0_1590568238746_0.8789535639842241"},"_hasShrinkwrap":false,"publish_time":1590568238979,"_cnpm_publish_time":1590568238979,"_cnpmcore_publish_time":"2021-12-17T22:34:01.174Z"},"0.4.2":{"name":"path2d-polyfill","version":"0.4.2","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.5.5","@babel/preset-env":"^7.5.5","chai":"^4.2.0","eslint":"^5.16.0","mocha":"^6.2.0","nyc":"^14.1.1","rollup":"^1.20.2","rollup-plugin-babel":"^4.3.3","rollup-plugin-commonjs":"^9.3.4","rollup-plugin-live-server":"^1.0.3","rollup-plugin-uglify":"^6.0.2","sinon":"^7.4.1","sinon-chai":"^3.3.0"},"gitHead":"50b0f2253ef8b496008a20a8ff24336a948a40d9","_id":"path2d-polyfill@0.4.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"594d3103838ef6b9dd4a7fd498fe9a88f1f28531","size":21964,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.4.2.tgz","integrity":"sha512-JSeAnUfkFjl+Ml/EZL898ivMSbGHrOH63Mirx5EQ1ycJiryHDmj1Q7Are+uEPvenVGCUN9YbolfGfyUewJfJEg=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.4.2_1566977261412_0.02657858192008411"},"_hasShrinkwrap":false,"publish_time":1566977261607,"_cnpm_publish_time":1566977261607,"_cnpmcore_publish_time":"2021-12-17T22:34:01.400Z"},"0.4.1":{"name":"path2d-polyfill","version":"0.4.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.4.3","@babel/preset-env":"^7.4.3","chai":"^4.2.0","eslint":"^5.16.0","mocha":"^6.1.3","nyc":"^13.3.0","rollup":"^1.10.0","rollup-plugin-babel":"^4.3.2","rollup-plugin-commonjs":"^9.3.4","rollup-plugin-uglify":"^6.0.2","rollup-plugin-live-server":"^1.0.3","sinon":"^7.3.1","sinon-chai":"^3.3.0"},"gitHead":"e8cfb8d0d6bd6568865530fd39b0087099199919","_id":"path2d-polyfill@0.4.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"f8528909360ab73e839521a47babef339b8edd4c","size":21954,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.4.1.tgz","integrity":"sha512-r+jS7FQTmNkuw+AA4qXVntXP521BeUnWpHvgVSuuFZ6j1VaOHicva5bPksYfj8PJkn47HD/hZaEaw8fSHmrAsQ=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.4.1_1555313251614_0.5587366581485351"},"_hasShrinkwrap":false,"publish_time":1555313251825,"_cnpm_publish_time":1555313251825,"_cnpmcore_publish_time":"2021-12-17T22:34:01.600Z"},"0.4.0":{"name":"path2d-polyfill","version":"0.4.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c rollup.config.js","build:watch":"parcel src/index.js","lint":"eslint src test","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"parcel example/index.html"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.4.3","@babel/preset-env":"^7.4.3","@after-work.js/aw":"^6.0.3","babel-plugin-istanbul":"^5.1.1","eslint":"^5.16.0","eslint-config-airbnb-base":"^13.1.0","eslint-plugin-import":"^2.16.0","parcel-bundler":"^1.12.3","rollup":"^1.10.0","rollup-plugin-babel":"^4.3.2","rollup-plugin-uglify":"^6.0.2"},"gitHead":"f1ceae51093f984fb6ac79c312f65864f9070974","_id":"path2d-polyfill@0.4.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"1917973daaf935aabd408f4d27202efb27a584ce","size":21731,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.4.0.tgz","integrity":"sha512-w7p7/btHgVk2i43LKnMZTrbvsq08rPeyBRc6WI3POy/hBbblqou7HQYFRZjcz/7En9PvLx7K2v1Uk92u0mYM3w=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.4.0_1555102728700_0.3223343045256666"},"_hasShrinkwrap":false,"publish_time":1555102728821,"_cnpm_publish_time":1555102728821,"_cnpmcore_publish_time":"2021-12-17T22:34:01.798Z"},"0.3.1":{"name":"path2d-polyfill","version":"0.3.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c rollup.config.js","build:watch":"parcel src/index.js","lint":"eslint src test","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"parcel index.html"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.1.0","@babel/preset-env":"^7.1.0","after-work.js":"^4.3.2","babel-plugin-istanbul":"^4.1.6","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","parcel-bundler":"^1.8.1","rollup":"^0.66.2","rollup-plugin-babel":"^4.0.3","rollup-plugin-uglify":"^6.0.0"},"gitHead":"f1cb86e3c2ebf1584967f6e0490227ef50bf6f58","_id":"path2d-polyfill@0.3.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"255c247627171d21eeb5c82df91c3e036e46e5fd","size":19536,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.3.1.tgz","integrity":"sha512-V7XnFEtVBpyjA+iI7rfEag838Ie8a656B+/V10cIrGNh/QVVYR6I1a2ptXAKCV8ztkzYbYLzx0qhyrpM8OMVSw=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.3.1_1537950630756_0.9719789865741297"},"_hasShrinkwrap":false,"publish_time":1537950630934,"_cnpm_publish_time":1537950630934,"_cnpmcore_publish_time":"2021-12-17T22:34:02.023Z"},"0.3.0":{"name":"path2d-polyfill","version":"0.3.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c rollup.config.js","build:watch":"parcel src/index.js","lint":"eslint src test","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"parcel index.html"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.1.0","@babel/preset-env":"^7.1.0","after-work.js":"^4.3.2","babel-plugin-istanbul":"^4.1.6","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","parcel-bundler":"^1.8.1","rollup":"^0.66.2","rollup-plugin-babel":"^4.0.3","rollup-plugin-uglify":"^6.0.0"},"gitHead":"123a4b248c992571c519424d8a1166b4dd1a7cf5","_id":"path2d-polyfill@0.3.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"08d646529fdf2aec912fc281813248ee61b3b977","size":19482,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.3.0.tgz","integrity":"sha512-NzAVfJ74HA0BoQenFn0WuKvXnxXVSG0TmUVcjhZUdIlTjmrT+F0QPIp1nortxkM7wrYOlRgUboxwzfBoPTsuKQ=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.3.0_1537881699260_0.38395811572643956"},"_hasShrinkwrap":false,"publish_time":1537881699385,"_cnpm_publish_time":1537881699385,"_cnpmcore_publish_time":"2021-12-17T22:34:02.257Z"},"0.2.2":{"name":"path2d-polyfill","version":"0.2.2","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && parcel build src/index.js","build:watch":"parcel src/index.js","lint":"eslint src test","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"parcel index.html"},"main":"dist/index.js","module":"src/index.js","source":true,"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.3.2","babel-plugin-istanbul":"^4.1.6","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","parcel-bundler":"^1.8.1"},"gitHead":"bcc5fbef2c35fa9de404d9a7f370144cf4f2627e","_id":"path2d-polyfill@0.2.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"65e40db3f66b258d54fa5dc3ff538a087658a904","size":13072,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.2.2.tgz","integrity":"sha512-nQMGzwQG/1lS18AOtOYdxGM2gP6EgwoUj1g2gtU165VttEH5/84G93kHrtHJo49eDP1e4ukSeLpnrwI5I3dFrQ=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.2.2_1536058197677_0.08136242152152517"},"_hasShrinkwrap":false,"publish_time":1536058197791,"_cnpm_publish_time":1536058197791,"_cnpmcore_publish_time":"2021-12-17T22:34:02.476Z"},"0.2.1":{"name":"path2d-polyfill","version":"0.2.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && parcel build src/index.js","build:watch":"parcel src/index.js","lint":"eslint src test","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"parcel index.html"},"files":["/dist","/src"],"main":"dist/index.js","module":"src/index.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.3.2","babel-plugin-istanbul":"^4.1.6","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","parcel-bundler":"^1.8.1"},"gitHead":"5e6dac69a4bbf1aad3fef879c4e332d6b75beacf","_id":"path2d-polyfill@0.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"0382acf63feb134ecc75a28201be616353ba9e59","size":13066,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.2.1.tgz","integrity":"sha512-LLGYpHQJIr4x4j2R7VIcbSySkoVWMDUVf7SGz0X84AThGiD5IsIcMjyvBwTcjGuP4S+FnYLcQHDtgJaj9xPK6Q=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.2.1_1528236028623_0.6414095172119649"},"_hasShrinkwrap":false,"publish_time":1528236028687,"_cnpm_publish_time":1528236028687,"_cnpmcore_publish_time":"2021-12-17T22:34:02.677Z"},"0.2.0":{"name":"path2d-polyfill","version":"0.2.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"parcel build src/index.js","build:watch":"parcel src/index.js","lint":"eslint src test","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"npm run build -- --environment BUILD:debug && simple-server"},"files":["/dist","/src"],"main":"dist/path2d-polyfill.js","module":"src/index.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.3.2","babel-plugin-istanbul":"^4.1.6","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","parcel-bundler":"^1.8.1","simple-server":"^1.1.1"},"gitHead":"f30f653623078e101da215ba828fa5bed1d7db2b","_id":"path2d-polyfill@0.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"e4f3e77ced4f09c886c92ee4720e743598889070","size":13100,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.2.0.tgz","integrity":"sha512-EydmauY4B6/n6hy5pCvbTCIBc4djcSaABc7BwBng019BYa3QvPOk5kk5smzsPBl6jJ49p5lLY4EwlwYckoRLuA=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.2.0_1528149817714_0.3056796375757549"},"_hasShrinkwrap":false,"publish_time":1528149817785,"_cnpm_publish_time":1528149817785,"_cnpmcore_publish_time":"2021-12-17T22:34:02.872Z"},"0.1.3":{"name":"path2d-polyfill","version":"0.1.3","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rollup -c --environment BUILD:production","build:watch":"rollup -c -w","lint":"eslint src test rollup.config.js","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"npm run build -- --environment BUILD:debug && simple-server"},"files":["/dist"],"main":"dist/path2d-polyfill.js","module":"src/index.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.2.1","babel-core":"^6.26.3","babel-eslint":"^8.2.3","babel-plugin-istanbul":"^4.1.6","babel-preset-env":"^1.7.0","babel-register":"^6.26.0","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","rollup":"^0.59.1","rollup-plugin-babel":"^3.0.4","rollup-plugin-uglify":"^3.0.0","simple-server":"^1.1.1"},"gitHead":"1ebe3d7a7c7bc78487a287021ac4baeac4414846","_id":"path2d-polyfill@0.1.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"48177a96711885cdd671d6840c46dd66fa7081c2","size":8989,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.1.3.tgz","integrity":"sha512-ldso1uuS2A2QMyOSypAg3idiJs1/oFNPe6L+tYQlZr84l5ikHVZjI2OQoxLHN1dbIuF1UBO0A6C3lGNDFIyoyA=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.1.3_1527001513345_0.8937754960734301"},"_hasShrinkwrap":false,"publish_time":1527001513425,"_cnpm_publish_time":1527001513425,"_cnpmcore_publish_time":"2021-12-17T22:34:03.106Z"},"0.1.2":{"name":"path2d-polyfill","version":"0.1.2","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rollup -c --environment BUILD:production","build:watch":"rollup -c -w","lint":"eslint src test rollup.config.js","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage","example":"npm run build -- --environment BUILD:debug && simple-server"},"files":["/dist"],"main":"dist/path2d-polyfill.js","module":"src/index.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.2.1","babel-core":"^6.26.3","babel-eslint":"^8.2.3","babel-plugin-istanbul":"^4.1.6","babel-preset-env":"^1.7.0","babel-register":"^6.26.0","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","rollup":"^0.59.1","rollup-plugin-babel":"^3.0.4","rollup-plugin-uglify":"^3.0.0","simple-server":"^1.1.1"},"gitHead":"d0f40cd2d785451f54096a7345bf66c787f1c499","_id":"path2d-polyfill@0.1.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"7bf662e942a3883be2a4d010119adf10e32d194b","size":9097,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.1.2.tgz","integrity":"sha512-ldydgbdiGr7ZwnxtJLBdLl7tjNz7m4WtZDZ9ctRBj5PPVkejmPfWlo2RPVVWlAVJV4Z7Bf+7rSVmo2BRQNYEsw=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.1.2_1526737338632_0.21153435279642796"},"_hasShrinkwrap":false,"publish_time":1526737338756,"_cnpm_publish_time":1526737338756,"_cnpmcore_publish_time":"2021-12-17T22:34:03.372Z"},"0.1.1":{"name":"path2d-polyfill","version":"0.1.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rollup -c --environment BUILD:production","build:watch":"rollup -c -w","lint":"eslint src test rollup.config.js","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage --src \"src/!(index)*.js\"","example":"npm run build -- --environment BUILD:debug && simple-server"},"files":["/dist"],"main":"dist/path2d-polyfill.js","module":"src/index.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.2.1","babel-core":"^6.26.3","babel-eslint":"^8.2.3","babel-plugin-istanbul":"^4.1.6","babel-preset-env":"^1.7.0","babel-register":"^6.26.0","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","rollup":"^0.59.1","rollup-plugin-babel":"^3.0.4","rollup-plugin-uglify":"^3.0.0","simple-server":"^1.1.1"},"gitHead":"6f29a04b6d83e012569f781a48bfccdb878b0a22","_id":"path2d-polyfill@0.1.1","_npmVersion":"6.0.1","_nodeVersion":"9.5.0","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"f7c7d9f55a5bc7d185661de57b345c1896a1c563","size":9086,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.1.1.tgz","integrity":"sha512-fHOCJu+SVGcaGGUOQ1u74vqY9Yj4pr0yM7pzVjoJdl8bBmZdNPfUQ3xEgdOBFvDe4TvXfOVfXr7T4G7TMLn1CQ=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.1.1_1526682885520_0.4602523263143463"},"_hasShrinkwrap":false,"publish_time":1526682885690,"_cnpm_publish_time":1526682885690,"_cnpmcore_publish_time":"2021-12-17T22:34:03.595Z"},"0.1.0":{"name":"path2d-polyfill","version":"0.1.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rollup -c --environment BUILD:production","build:watch":"rollup -c -w","lint":"eslint src test rollup.config.js","test":"aw -c aw.config.js","test:coverage":"aw -c aw.config.js --coverage --src \"src/!(index)*.js\"","example":"npm run build -- --environment BUILD:debug && simple-server"},"files":["/dist"],"main":"dist/path2d-polyfill.js","module":"src/index.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"after-work.js":"^4.2.1","babel-core":"^6.26.3","babel-eslint":"^8.2.3","babel-plugin-istanbul":"^4.1.6","babel-preset-env":"^1.7.0","babel-register":"^6.26.0","eslint":"^4.19.1","eslint-config-airbnb-base":"^12.1.0","eslint-plugin-chai-expect":"^1.1.1","eslint-plugin-import":"^2.12.0","rollup":"^0.59.1","rollup-plugin-babel":"^3.0.4","rollup-plugin-uglify":"^3.0.0","simple-server":"^1.1.1"},"gitHead":"c8591cc4ba942ee935f281e03efeb04f136709bd","_id":"path2d-polyfill@0.1.0","_npmVersion":"6.0.1","_nodeVersion":"9.5.0","_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"dist":{"shasum":"2582ce6495fb91e4392acb9a9e088d81f34e5131","size":9103,"noattachment":false,"tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-0.1.0.tgz","integrity":"sha512-zIh8TWwZiNKE5HvGkvSSbnMYev0SAndyc4FpOtGmTtuaymp6/k4iy5uzA71u/CzpIhejr7Gs+jgiPii07Ralfw=="},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_0.1.0_1526681520978_0.19936832759888645"},"_hasShrinkwrap":false,"publish_time":1526681521106,"_cnpm_publish_time":1526681521106,"_cnpmcore_publish_time":"2021-12-17T22:34:03.833Z"},"1.2.1":{"name":"path2d-polyfill","version":"1.2.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.17.5","@babel/preset-env":"^7.16.11","@commitlint/cli":"^16.2.1","@commitlint/config-conventional":"^16.2.1","@release-it/conventional-changelog":"^4.2.0","@rollup/plugin-babel":"^5.3.1","@rollup/plugin-commonjs":"^21.0.2","chai":"^4.3.6","eslint":"^8.10.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.4","lint-staged":"^12.3.5","mocha":"^9.2.1","nyc":"^15.0.1","prettier":"^2.5.1","release-it":"^14.12.5","rollup":"^2.69.2","rollup-plugin-livereload":"^2.0.5","rollup-plugin-serve":"^1.1.0","rollup-plugin-terser":"7.0.2","sinon":"^13.0.1","sinon-chai":"^3.7.0"},"dependencies":{},"licenseText":"MIT License\n\nCopyright (c) 2018 Anders Nilsson\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 all\ncopies 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 THE\nSOFTWARE.\n","_id":"path2d-polyfill@1.2.1","dist":{"shasum":"5f1cee6d844e7cecdc25595062826c5bbfc3c805","integrity":"sha512-IYE8p4fKipFj1AcAqV5xGZHT6/ARCKO2+T6cbtV1UlLI2NkAiyMkU2WeNZOGU5DM1ThcwAjLQToxiyiLJ3ZS2A==","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.2.1.tgz","fileCount":14,"unpackedSize":106541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJIfOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqi0Q//cvbD4BMXSuC5tkcg+Bsp1FJI5eTpPUSaTmFDdbP+ThHNHRYk\r\nAwEpKQjbs+voGHhg6jC3zNoiVxPek8PxC4LmQJxVaH/ofQKae1Ic+Az/Goxm\r\np4RddQqYenkVCIzHscN3DencC1mZVdKzlc06EcOY4wBMDRv4z88jc0uyt4Ml\r\nkQFLYKuzBrvwMihWxnl+YoOXV7LW3rP6iBADgJTlHvlkzjdJUd+n9nVrr6mf\r\nRjyy1PzN5NCGj3uOw0qHC8hndYzeNih7nfBANlBg/ZjUPJI+iqNnVTLG4dF1\r\nLJ2P4gMWuEc92D5vFgZbHMzoYtvtursY5XGTplJY9qNVt1SUg71wpTAzs+ZG\r\nOwumw7ryx7mt/HXvk6Af51oQ0CHWVpvsO8/ONZIOYlAW3ZRWKGD+yX3PW70T\r\ngt4AUX/eUA8HJQ/ByhizDFqb/LQKzSESzhMGP5pZe9eSau+bngcnV8gSob/7\r\najgJ9uQz6jHqWZJNzIXrz3v8ORjnDQMS+1ZMzjKHomSa9siNPRDagx8o8J51\r\nc6UGBqD8gOZNBVc42CrS6VD+pxBzZpYFrtXvFpXxoSJAph6MbvAo2Vu0N4K1\r\nvEVfIU5RGVeM4LbYvi2JxRJkyvz7VQQfVkBK0Us61qqKgenWAa1kAawkxGJX\r\nMTYRUROD2/ghuErw51uvN/QKBZ2l0NuYfTo=\r\n=YrCS\r\n-----END PGP SIGNATURE-----\r\n","size":25792},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.2.1_1646561230237_0.6154498809262312"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-06T10:07:14.567Z"},"1.2.2":{"name":"path2d-polyfill","version":"1.2.2","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.18.9","@babel/preset-env":"^7.18.9","@commitlint/cli":"^17.0.3","@commitlint/config-conventional":"^17.0.3","@release-it/conventional-changelog":"^5.0.0","@rollup/plugin-babel":"^5.3.1","@rollup/plugin-commonjs":"^22.0.1","chai":"^4.3.6","eslint":"^8.20.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","husky":"^8.0.1","lint-staged":"^13.0.3","mocha":"^10.0.0","nyc":"^15.0.1","prettier":"^2.7.1","release-it":"^15.1.3","rollup":"^2.77.0","rollup-plugin-livereload":"^2.0.5","rollup-plugin-serve":"^2.0.0","rollup-plugin-terser":"7.0.2","sinon":"^14.0.0","sinon-chai":"^3.7.0"},"dependencies":{},"licenseText":"MIT License\n\nCopyright (c) 2018 Anders Nilsson\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 all\ncopies 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 THE\nSOFTWARE.\n","_id":"path2d-polyfill@1.2.2","dist":{"shasum":"08c884e3bfe87570a89b63a9bf400665cd966c5b","integrity":"sha512-ToBPvOQrW876CpNH2HYanjwc4td3oZDeqtElUlwf/EzvhxlBfiWpwcqWs2JgNoMITTceeW4diCTnzzxslG+D8w==","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.2.2.tgz","fileCount":14,"unpackedSize":106321,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsfwUdztaWoesp+V6JLqZpAcToedKTHrs56vo0BGf0wwIgC0ttt+9CONI2g3X3XuDaSy8oQUKJASH9kOCbOhf5tLs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3GgYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTERAAojEPPSbrYlX0Ix8Iff75qWyXqKeqthH4BUdjCK+kNmfm5+uM\r\npVBlS6HtK3iRHiHzctqrww68hP57LXlCzHz4vpE3tgetUzX2Hs68dK9Erfjs\r\njzxlTPjpFVsXtjad3wrg9YZGvxWkfIkvDIJQnkZzrqBTu83c9wZC1xPyMjxG\r\ns9dh/QXe/KOvuk3E2BSwajVWAP36kw3Vnyh/y8OxrZ14wjWX+BgD3r3QzdSF\r\nhLhRzM1VswpSGpQT55nNZW5YuVWaVDBgHpEXUBvTZQJimqwcz6tpTyj6cm0Y\r\nOZxDZJQDXTLFTbxbNKvM7wji/I127D03jUTQQwwOrUaU8Hkmj/YPjmlrZeQ6\r\nBRqPtJTHBCbiBrl5DispteIs1TE8DBieHAA8dlS51UFWqefg9PmC0O/Kq8Us\r\nEm2nMxd4GQcOP9efIle2mh1mA430U8ynPtin2dwby7yj7J/Ms9RygNsqrgoO\r\nD7bGjoAbDxBEqA7qbZmHPCNYQ7GA6WxFlC3199OXG5DXYkeE1LlQ8ZLc1ZiN\r\n4jKyv4LtVtTDizGR4uju6l53ZvUzoWgLnNLrjG9gQJVezOq3DCv3TVhyz4lt\r\nhsRFaTjZfVoVAybtkzFshhPAFdVYkAN0K3mJwpHEc9Xn0rfyzaAAQRqLth80\r\nEJbwq3aInPsNRXT+3jgK+HDgKHz2RlL4r0Y=\r\n=vfzm\r\n-----END PGP SIGNATURE-----\r\n","size":25849},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.2.2_1658611735951_0.2825940895419017"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-23T21:28:59.720Z"},"1.2.3":{"name":"path2d-polyfill","version":"1.2.3","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint src test","test":"nyc --reporter=html --reporter=text mocha","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"main":"dist/index.js","module":"dist/index.esm.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"^7.19.3","@babel/preset-env":"^7.19.4","@commitlint/cli":"^17.1.2","@commitlint/config-conventional":"^17.1.0","@release-it/conventional-changelog":"^5.1.1","@rollup/plugin-babel":"^6.0.0","@rollup/plugin-commonjs":"^23.0.0","chai":"^4.3.6","eslint":"^8.25.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","husky":"^8.0.1","lint-staged":"^13.0.3","mocha":"^10.0.0","nyc":"^15.1.0","prettier":"^2.7.1","release-it":"^15.5.0","rollup":"^2.79.1","rollup-plugin-livereload":"^2.0.5","rollup-plugin-serve":"^2.0.1","rollup-plugin-terser":"7.0.2","sinon":"^14.0.1","sinon-chai":"^3.7.0"},"dependencies":{},"licenseText":"MIT License\n\nCopyright (c) 2018 Anders Nilsson\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 all\ncopies 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 THE\nSOFTWARE.\n","_id":"path2d-polyfill@1.2.3","dist":{"shasum":"d8f3e64122df6725d2bc6deed1545c2c0ceb69a5","integrity":"sha512-ZfUll0QEl41nbTjgZ/NHx91daupW3KWO+/iou8uxD7x7r26YtL1PmEaoWTtXHFP+6Y0NqXpwqphW7igHsgsnnQ==","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-1.2.3.tgz","fileCount":14,"unpackedSize":105761,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3C0WQCf4BHgLu9CxcG8hhjRv5eQoEPuGWdH2cZk/KJQIgWnbe9CbrakQMG0GHAajRBmdk/IF39zwkxQCsngwzCEs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRQfYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrjAA/+OTYaWxSiHdcEaBIWKiz9gOZcddD8QI7PFfv+MHPLcowfaq+p\r\nocYZ3Vb/II9TGVBqFNm2YsUVMBh0LWFig4am31T1bC1VKphNBBKX/des1sz3\r\ncl+ebfmKe/9XyGdn7FPh/gyapeGqGntO1oCsLff4ehQPDRtM6eBVCoWVQUN8\r\nIiAZSuTQ8J4gZZi2hnOLQ4oILoH3/czLiTcXWRy/N+H1XQw7GGaeiGScrjZJ\r\nZKT2Kvbz4bYIOH1aGSfrOaGaZYPS2eOCibePG6471Cbd4fh9lkcBvx2O95Ff\r\nBloO+o/LE8/M1xQBKY8XXEiAfHp+5PmUzuQBXGVjg5lEXKMqd0jitYKmodRc\r\n9NlnfdQH6AHtJ9EhdGp5PHKY+NA85W8fubr7SfHtvUd/AEnFuImfMjjmmQPk\r\n+jkIqXtOfaEjAildhiDHW8CIqulJe80fG/8bbTT0O3kqptnV1uZhDnQMHPrl\r\nM5jIskV6HrH16rsTJhAg0TPRBc8aDJywxN4ncTUP6Blo2+N6ww2jVxbL+61F\r\n8+gBodBBpM7yVCjR9cby1NAkYgam0BCdZrO2fgSago7Rr8eFbQXewWHFd1wH\r\nSkHj+1KEGhzQP7GDgkVmEPLV3nOqgkMpAaLXXiRKdym3weY+NYOUZHkU/6Zp\r\nSViu7mDZDvPWymSUyX4NIa1wO7ju5IgckfI=\r\n=9jNj\r\n-----END PGP SIGNATURE-----\r\n","size":24718},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_1.2.3_1665468376489_0.657551789555556"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-11T06:16:41.131Z"},"2.0.0-beta.0":{"name":"path2d-polyfill","version":"2.0.0-beta.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint .","check-types":"tsc --noEmit","test":"ts-mocha test/*.spec.ts","test:watch":"ts-mocha --watch test/*.spec.ts","test:coverage":"nyc --reporter=html --reporter=text --reporter=text-summary yarn test","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"browser":"dist/path2d-polyfill.min.js","module":"dist/path2d-polyfill.esm.js","main":"dist/path2d-polyfill.cjs.js","repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@babel/core":"7.20.7","@babel/preset-env":"7.20.2","@commitlint/cli":"17.3.0","@commitlint/config-conventional":"17.3.0","@release-it/conventional-changelog":"5.1.1","@rollup/plugin-terser":"0.2.1","@rollup/plugin-typescript":"10.0.1","@types/chai":"^4.3.4","@types/mocha":"^10.0.1","@types/sinon":"^10.0.13","@types/sinon-chai":"^3.2.9","@typescript-eslint/eslint-plugin":"5.48.0","@typescript-eslint/parser":"5.48.0","chai":"4.3.7","eslint":"8.31.0","eslint-config-prettier":"8.6.0","husky":"8.0.2","lint-staged":"13.1.0","mocha":"10.2.0","nyc":"15.1.0","prettier":"2.8.1","release-it":"15.6.0","rollup":"3.9.1","rollup-plugin-livereload":"2.0.5","rollup-plugin-serve":"2.0.2","sinon":"15.0.1","sinon-chai":"3.7.0","ts-mocha":"^10.0.0","typescript":"^4.9.4"},"dependencies":{},"engines":{"node":">=8"},"readmeFilename":"README.md","gitHead":"fb95d3940675ec9945f8ff1a3d64e01e21cb64e5","_id":"path2d-polyfill@2.0.0-beta.0","_nodeVersion":"19.3.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-fnSFgjakSgmw4Q8eLSwqXOx+IPf6MP0Fcy9Szajyb9hOUkvVLVhPzFL0F77Gm/8QCV9EP03/rIWr99E6AdkTtw==","shasum":"da130e5468f0aa17496f129fd2b015529459ce8b","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-2.0.0-beta.0.tgz","fileCount":7,"unpackedSize":76834,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD03+0Q65EkjPHd33jtJEwRf8cyTBPCENwV3TtvtwN30gIgAfFOClGhfnVxLxvIDZ589tsYeL9E7yZAtViiQ9eMDQg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjvE9qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQnQ/+PYnABOWrKLpY1bgky/SWkmOAFjHDQhrlgzs9ZqMDQM7Afc4q\r\nTGUvGQR4Av8cPET4AvrW3l835LjIzP6SPrT6kbKy2wRqYH8KexvmtK38phpF\r\nw8ftaP7wbw4DIFl9OzD3D0nxMnBOsabR6l9yLoJSv5GqKwaG25vn2LISOQ9r\r\nfp2UQMaxyJjwp5hli9uh7Ug6gNmquQ8h2PZrLeF/sTXgAKT/Ao9zibNhQamL\r\nbqCX5fssIywlYxxnHJplqXAVsqNgaAyeBQBA+Sgq2rnDlekXp8vt7i5eO2wJ\r\nWHLxiqZtbaV1Lphl/ri80Z4BPXdW2cgVpeOli0NGcTO6CMjsWB64hlqp28lD\r\ncA+KyUAPQhmtEAPn5TgNnoB4kVmjjko5TuS3qpS/p93Q7/H86KSuJhdcsk2P\r\nftLSLY3ZLk1gWg9OLwBW24G11nvQr9XfY8onKsdm5drKa6qQngiTkg3fSMPS\r\n3PHd8sW7D5wz5BQ3zEq/wVX7b/LcV0v8T8LJhAq9CWm6MpUqzQkLDsNMfQeH\r\nVyFF+CstHw+M0zuQKLF/hOuu/PJN1BI+RrbpE5ImPa3RpkieiYJOVsVS+YB5\r\nLdM080j0WgqNjEKNMluW7mTEMuGgfDZkQNUk1W3Tq7+HFpXYspzz2MfSL9Eq\r\nlQaM4KUqvws4QaCTuH4Brzt7tgengstm+ME=\r\n=a3WP\r\n-----END PGP SIGNATURE-----\r\n","size":12945},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_2.0.0-beta.0_1673285482706_0.5369250271494337"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-09T17:31:22.880Z","publish_time":1673285482880},"2.0.0":{"name":"path2d-polyfill","version":"2.0.0","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint .","check-types":"tsc --noEmit","test":"ts-mocha test/*.spec.ts","test:watch":"ts-mocha --watch test/*.spec.ts","test:coverage":"nyc --reporter=html --reporter=text --reporter=text-summary yarn test","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"exports":{"node":{"import":"./dist/path2d-node.mjs","require":"./dist/path2d-node.cjs"},"development":"./dist/path2d-polyfill.dev.js","module":"./dist/path2d-polyfill.esm.js","default":"./dist/path2d-polyfill.min.js"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas","roundRect"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@commitlint/cli":"17.3.0","@commitlint/config-conventional":"17.3.0","@release-it/conventional-changelog":"5.1.1","@rollup/plugin-terser":"0.2.1","@rollup/plugin-typescript":"10.0.1","@types/chai":"^4.3.4","@types/mocha":"^10.0.1","@types/sinon":"^10.0.13","@types/sinon-chai":"^3.2.9","@typescript-eslint/eslint-plugin":"5.48.0","@typescript-eslint/parser":"5.48.0","chai":"4.3.7","eslint":"8.31.0","eslint-config-prettier":"8.6.0","husky":"8.0.2","lint-staged":"13.1.0","mocha":"10.2.0","nyc":"15.1.0","prettier":"2.8.1","release-it":"15.6.0","rollup":"3.9.1","rollup-plugin-livereload":"2.0.5","rollup-plugin-serve":"2.0.2","sinon":"15.0.1","sinon-chai":"3.7.0","ts-mocha":"^10.0.0","typescript":"^4.9.4"},"dependencies":{},"engines":{"node":">=8"},"licenseText":"MIT License\n\nCopyright (c) 2018 Anders Nilsson\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 all\ncopies 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 THE\nSOFTWARE.\n","_id":"path2d-polyfill@2.0.0","dist":{"shasum":"608196afac1f5ba3f5a21b9dfef6723ce01b3fde","integrity":"sha512-xGP5artoCnZjIZOwvdb8EffC/Bt+cVA9Net3xYJ5WC8FJqzJ+T2CLHkTnwcfguHa0p2/UaFmUWgD7MNFDlNAWQ==","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-2.0.0.tgz","fileCount":11,"unpackedSize":102090,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtJEqKPswMn+aRneBKD8HJ7U9oB1Ao5oKm5GvAbsjyxgIhAIfICXsYFYdqot12WaRVBkOcVAuKqY8yQx71wAKWo3g6"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzVFWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpuuQ//eFbJPZtEsy1pvgoyKL1yIRjwj6KhpesatG4Fy+cX3BeoYg3o\r\n8Y1/TivCo5L7SPdxHzJTjV5x94f6S5m/wy7Z4FkXYkOMoagFoq7f8iNWeStC\r\nsHmjxnoONg6y0DAhqX0QZhEJGPgoeb/zabN1CETR5j8WIBfLWj1HxSDvdi08\r\nVmSc+EdcmILEZOMD78AObbCMZ86jnn/rlv6HXptqgdbY2sQG/29+/nPhy8gv\r\ndetD9gCyKVG6RTDm3d7XuGeq6Vz9q99IWaHZWb0MjN5nN2vl2fYMAZE5TN5B\r\n+C6gBdobQeCpp/BRMACOljE+L6qGsd6/qx6fPdh5Lh6zJtNOonCwBrILiyoN\r\nzQqOQpjcEQIJ9HtlLZmK9zMWiHZH5XIDmRZatAN+bh4jjESCtOi4Lh2RPh6X\r\nOFuntPEe5GGG4rO2k02strf53JCypye4fuN5wukvyHOmLBvFjuW8NFuuStWM\r\nd5/XEtVcW48BaMKJeBiDU6H4X4Zt8tQV2fSXp89i7glyHEXGvqAUy+k3NgZ8\r\nnLzfmQO77ws7MycHMHvEFZ21IzTu80rQxtxcalTQeqW9wdVJ1PGpjFkkOxag\r\nnoYo0AdgBY/t3VEbvjF+cbMWXXFq/oeqo2zyMiMnfYo3zOQko7qGLCLvgpg4\r\nZ8JnmOvEO0kH+kN/ha2h+UYKTFV0uTw24SA=\r\n=7nAv\r\n-----END PGP SIGNATURE-----\r\n","size":14885},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_2.0.0_1674400085785_0.7861569436079978"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-22T15:08:06.000Z","publish_time":1674400086000},"2.0.1":{"name":"path2d-polyfill","version":"2.0.1","description":"Polyfills Path2D api for canvas rendering","scripts":{"build":"rm -rf dist/* && rollup -c","start":"rollup -c -w","lint":"eslint .","check-types":"tsc --noEmit","test":"ts-mocha test/*.spec.ts","test:watch":"ts-mocha --watch test/*.spec.ts","test:coverage":"nyc --reporter=html --reporter=text --reporter=text-summary yarn test","format:check":"prettier --check \"./**\"","format:write":"prettier --write \"./**\"","prepare":"husky install","release":"release-it"},"main":"dist/path2d-node.cjs","browser":"dist/path2d-polyfill.min.js","exports":{"node":{"import":"./dist/path2d-node.mjs","require":"./dist/path2d-node.cjs"},"development":"./dist/path2d-polyfill.dev.js","module":"./dist/path2d-polyfill.esm.js","default":"./dist/path2d-polyfill.min.js"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"keywords":["Path2D","polyfill","canvas","roundRect"],"author":{"name":"nilzona"},"license":"MIT","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","devDependencies":{"@commitlint/cli":"17.3.0","@commitlint/config-conventional":"17.3.0","@release-it/conventional-changelog":"5.1.1","@rollup/plugin-terser":"0.2.1","@rollup/plugin-typescript":"10.0.1","@types/chai":"^4.3.4","@types/mocha":"^10.0.1","@types/sinon":"^10.0.13","@types/sinon-chai":"^3.2.9","@typescript-eslint/eslint-plugin":"5.48.0","@typescript-eslint/parser":"5.48.0","chai":"4.3.7","eslint":"8.31.0","eslint-config-prettier":"8.6.0","husky":"8.0.2","lint-staged":"13.1.0","mocha":"10.2.0","nyc":"15.1.0","prettier":"2.8.1","release-it":"15.6.0","rollup":"3.9.1","rollup-plugin-livereload":"2.0.5","rollup-plugin-serve":"2.0.2","sinon":"15.0.1","sinon-chai":"3.7.0","ts-mocha":"^10.0.0","typescript":"^4.9.4"},"dependencies":{},"engines":{"node":">=8"},"licenseText":"MIT License\n\nCopyright (c) 2018 Anders Nilsson\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 all\ncopies 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 THE\nSOFTWARE.\n","_id":"path2d-polyfill@2.0.1","dist":{"shasum":"24c554a738f42700d6961992bf5f1049672f2391","integrity":"sha512-ad/3bsalbbWhmBo0D6FZ4RNMwsLsPpL6gnvhuSaU5Vm7b06Kr5ubSltQQ0T7YKsiJQO+g22zJ4dJKNTXIyOXtA==","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-2.0.1.tgz","fileCount":11,"unpackedSize":102466,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFbDG6p593JPjarHtKW1SgKV078uVL7J1Ajg9yKkvVPaAiEAmrDZbKvVzu+xnwk/3stOB80pvtYnzX77430Alln/Dt0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzZYPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpfKA//YoBbRZA7/XnaA+D1lxKCjbB1IIYj3FaLfgQo9FYwvvknpBA1\r\n6CDf8jao76/gwxSZ1CUZfQREbOzuvJZhnXOoPH0TQsAygOTYmgqa3yUOD3NY\r\nzDWwVrMFt/93TRe2VHmsac9//BbYTw1QZGIrkPj8gg7/eYE9ADIE/okbnd8E\r\n1va9U/DoJZzYa/2SJCAxJtdu/Qad5klRQKABNcJWVHiFM0NtiZIS0Cb4vww0\r\n4LFx+5qSLMeq4BK7HgVm9Bh2xGlL6kAmS669UI4r36upoCeNJzUlhEHb9+Ba\r\niSHvmrS5g04vt6IiVQ+tWf6/xQnCJUEgKYvPkrv2fPYSCE2Mt0gFXjk3RZgb\r\nIp/kupq/EFeDyJH8ikmeH0bHQP0rwuE9uPnOx7M11cFUs3uE4Djq7v6Ny1CU\r\nxnw69KZ9Qp0m8i0fYmEIF9xVk0YLr35HoBVeftpTWev0Qmjbi/aDl+4zCvdH\r\n1McXwl9OINdcOU2LmIV7b8FT5gZSfPVqLbHQitw++4nTNk0LMV8MOyEthFDi\r\nIX0k1lkjiIIwz2vLYvKhJ9qIO7VJldWmlWYOe66f+Ru35S0eV/T3h4Q3PKX+\r\ntEfRVdxo/MRR0zSa4nosokFRHfO/Gt2eZMlwwh21zIzjNyKeuOwEtbbA8+PU\r\n/kR1DKQKpZST8ESkoDd359AN+Np5T3GjjPg=\r\n=gh4s\r\n-----END PGP SIGNATURE-----\r\n","size":14978},"_npmUser":{"name":"nilzona","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_2.0.1_1674417679028_0.37054345277596057"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-22T20:01:19.237Z","publish_time":1674417679237},"2.1.1":{"name":"path2d-polyfill","version":"2.1.1","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"0.1.1"},"devDependencies":{"@babel/core":"7.24.0","@babel/preset-env":"7.24.0","@qlik/eslint-config":"0.7.13","@qlik/prettier-config":"0.4.11","@qlik/tsconfig":"0.2.4","@rollup/plugin-babel":"6.0.4","@vitest/coverage-v8":"1.4.0","eslint":"8.57.0","jsdom":"24.0.0","prettier":"3.2.5","typescript":"5.4.2","vite":"5.1.6","vitest":"1.4.0"},"engines":{"node":">=18"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@2.1.1","_integrity":"sha512-4Rka5lN+rY/p0CdD8+E+BFv51lFaFvJOrlOhyQ+zjzyQrzyh3ozmxd1vVGGDdIbUFSBtIZLSnspxTgPT0iJhvA==","_resolved":"/tmp/dba3b393abd5cff666fe94c646817f14/path2d-polyfill-2.1.1.tgz","_from":"file:path2d-polyfill-2.1.1.tgz","_nodeVersion":"18.19.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-4Rka5lN+rY/p0CdD8+E+BFv51lFaFvJOrlOhyQ+zjzyQrzyh3ozmxd1vVGGDdIbUFSBtIZLSnspxTgPT0iJhvA==","shasum":"6098b7bf2fc24c306c6377bcd558b17ba437ea27","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-2.1.1.tgz","fileCount":4,"unpackedSize":10685,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOjX0QanrbeSmePRPpZPj8f0ojsDACNIsw5Wb529t59QIhAIb04qCq3q+/L0SnGOInwngsBmPyo4923q3QS2fzAuIx"}],"size":4470},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_2.1.1_1710630926610_0.8027469019280069"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-16T23:15:26.838Z","publish_time":1710630926838,"_source_registry_name":"default","deprecated":"this package has been deprecated"},"3.0.0":{"name":"path2d-polyfill","version":"3.0.0","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"0.1.1"},"devDependencies":{"@babel/core":"7.24.0","@babel/preset-env":"7.24.0","@qlik/eslint-config":"0.7.13","@qlik/prettier-config":"0.4.11","@qlik/tsconfig":"0.2.4","@rollup/plugin-babel":"6.0.4","@vitest/coverage-v8":"1.4.0","eslint":"8.57.0","jsdom":"24.0.0","prettier":"3.2.5","typescript":"5.4.2","vite":"5.1.6","vitest":"1.4.0"},"engines":{"node":">=18"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.0.0","_integrity":"sha512-6ldxwtxkYqd4DwmP1a8vAcZyCK9EdqdiRAsXc+murt6JvPh7iq7NkPC6bVZiE6lsd2M1+hoxt3TVVlwZlsfavg==","_resolved":"/tmp/e2b244d4c22cc5d7a501e7a25612bae8/path2d-polyfill-3.0.0.tgz","_from":"file:path2d-polyfill-3.0.0.tgz","_nodeVersion":"18.19.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-6ldxwtxkYqd4DwmP1a8vAcZyCK9EdqdiRAsXc+murt6JvPh7iq7NkPC6bVZiE6lsd2M1+hoxt3TVVlwZlsfavg==","shasum":"4290b2537df650679a17f0512f76bb60cd040f10","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.0.0.tgz","fileCount":4,"unpackedSize":10685,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDjR6sxhxof6SPfEo6RdAJdcJgPn4mCAfR87plw79L2iAiAK+pEKCUTnejqR0Fm/YbQdOawf69g/QwTmX12nH+kJbg=="}],"size":4468},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_3.0.0_1710660811575_0.8332351062468855"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-17T07:33:31.729Z","publish_time":1710660811729,"_source_registry_name":"default"},"3.0.1":{"name":"path2d-polyfill","version":"3.0.1","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"0.1.2"},"devDependencies":{"@babel/core":"7.24.0","@babel/preset-env":"7.24.0","@qlik/eslint-config":"0.7.13","@qlik/prettier-config":"0.4.11","@qlik/tsconfig":"0.2.4","@rollup/plugin-babel":"6.0.4","@vitest/coverage-v8":"1.4.0","eslint":"8.57.0","jsdom":"24.0.0","prettier":"3.2.5","typescript":"5.4.2","vite":"5.1.6","vitest":"1.4.0"},"engines":{"node":">=18"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.0.1","_integrity":"sha512-mjkng+wI/BaMe+rcOqGntChdNRed4VbJYIZa1arqsCATuU1pr7sle3gns2Nkj0G79NIBEzqRpTQI/9px0sGBgw==","_resolved":"/tmp/cdd0577ae7ca11d26420b4129fd157a1/path2d-polyfill-3.0.1.tgz","_from":"file:path2d-polyfill-3.0.1.tgz","_nodeVersion":"18.19.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-mjkng+wI/BaMe+rcOqGntChdNRed4VbJYIZa1arqsCATuU1pr7sle3gns2Nkj0G79NIBEzqRpTQI/9px0sGBgw==","shasum":"24f0d9ca8f6e1b9bdfb28d1b1e47e59033177112","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.0.1.tgz","fileCount":4,"unpackedSize":10685,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEuUxEm2ER+Z+EzTdGEnkMdE/EPiDXWA4nHhNLjugl3wIhAPo7RYF99O1F1YFBJFdwv+apQn0v8Y4b3LD0S+XlRkmr"}],"size":4470},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_3.0.1_1710703553588_0.9961104316673004"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-17T19:25:53.764Z","publish_time":1710703553764,"_source_registry_name":"default"},"3.1.0":{"name":"path2d-polyfill","version":"3.1.0","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"0.2.0"},"devDependencies":{"@babel/core":"7.24.3","@babel/preset-env":"7.24.3","@qlik/eslint-config":"0.7.15","@qlik/prettier-config":"0.4.11","@qlik/tsconfig":"0.2.4","@rollup/plugin-babel":"6.0.4","@vitest/coverage-v8":"1.4.0","eslint":"8.57.0","jsdom":"24.0.0","prettier":"3.2.5","typescript":"5.4.3","vite":"5.2.7","vitest":"1.4.0"},"engines":{"node":">=18"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.1.0","_integrity":"sha512-9Lg30etRKikOEz1pKBEk1rQRAJ/Kv7WACvVVPJao7BSJvYzJpLwPwFaHpFtyrIJD0lh/deISU7GIM46vCK3I+g==","_resolved":"/tmp/f0136680a2131c32febc6cc182f231db/path2d-polyfill-3.1.0.tgz","_from":"file:path2d-polyfill-3.1.0.tgz","_nodeVersion":"18.19.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-9Lg30etRKikOEz1pKBEk1rQRAJ/Kv7WACvVVPJao7BSJvYzJpLwPwFaHpFtyrIJD0lh/deISU7GIM46vCK3I+g==","shasum":"0e15c2d45e90f0ca70950d4ecc52779ed9a7a482","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.1.0.tgz","fileCount":4,"unpackedSize":11004,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDl1nfaB+vuIlk0X9EjLpPKC96E0eGn9IbUuI5iudmHYAIhAIU8SNKbwM+r84lbQ7mqah0zABeOxD/7JxFQaPHKyY0k"}],"size":4491},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_3.1.0_1712233791369_0.47985398658327916"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-04-04T12:29:51.525Z","publish_time":1712233791525,"_source_registry_name":"default"},"3.1.1":{"name":"path2d-polyfill","version":"3.1.1","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"0.2.0"},"devDependencies":{"@babel/core":"7.24.6","@babel/preset-env":"7.24.6","@qlik/eslint-config":"0.7.23","@qlik/prettier-config":"0.4.13","@qlik/tsconfig":"0.2.5","@rollup/plugin-babel":"6.0.4","@vitest/coverage-v8":"1.6.0","eslint":"8.57.0","jsdom":"24.1.0","prettier":"3.2.5","typescript":"5.4.5","vite":"5.2.12","vitest":"1.6.0"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.1.1","_integrity":"sha512-Jtu7pFpct3qauvS1DsN/bH3YDXQivQVbjaIM27SoKtIpgRFCU4ckI7z0T2SMnEtY+nAPZMpNPERC4jAnUEL1FA==","_resolved":"/tmp/a1261bf6f868d321ec050fe190e5c303/path2d-polyfill-3.1.1.tgz","_from":"file:path2d-polyfill-3.1.1.tgz","_nodeVersion":"20.14.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-Jtu7pFpct3qauvS1DsN/bH3YDXQivQVbjaIM27SoKtIpgRFCU4ckI7z0T2SMnEtY+nAPZMpNPERC4jAnUEL1FA==","shasum":"9e71c1878798a7a75a23f4aef69b164b1dfc4153","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.1.1.tgz","fileCount":4,"unpackedSize":10966,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDD2jrq3uA6HLcezqpsVQOAo8PNJHugmQwudLIGdeQ9qwIgOnx9OXVq9hQVXTdlB91hPLgd9mIGN0M6fM+JI1D4Pm4="}],"size":4470},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_3.1.1_1717669455588_0.23541729643288734"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-06-06T10:24:15.744Z","publish_time":1717669455744,"_source_registry_name":"default"},"3.1.2":{"name":"path2d-polyfill","version":"3.1.2","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"^0.2.1"},"devDependencies":{"@babel/core":"^7.24.7","@babel/preset-env":"^7.24.7","@qlik/eslint-config":"^0.7.25","@qlik/prettier-config":"^0.4.15","@qlik/tsconfig":"^0.2.6","@rollup/plugin-babel":"^6.0.4","@vitest/coverage-v8":"^1.6.0","eslint":"^8.57.0","jsdom":"^24.1.0","prettier":"^3.3.2","typescript":"^5.5.2","vite":"^5.3.2","vitest":"^1.6.0"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.1.2","_integrity":"sha512-rmd/vZBtonqV3eOF+47cVEOyp6APiG7m4V0ue1+R79Fgqq2eNgScY/LCEAvTM86vTeMnrePpqrCIeZMLKJKAXw==","_resolved":"/tmp/32bc2f0b88547dc2ebc67815518661d8/path2d-polyfill-3.1.2.tgz","_from":"file:path2d-polyfill-3.1.2.tgz","_nodeVersion":"20.15.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-rmd/vZBtonqV3eOF+47cVEOyp6APiG7m4V0ue1+R79Fgqq2eNgScY/LCEAvTM86vTeMnrePpqrCIeZMLKJKAXw==","shasum":"da4b4e46d8c45f2ff070546e1693c50ea9659cc5","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.1.2.tgz","fileCount":4,"unpackedSize":10979,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAxOUiRvBDVG2zsfJNYWNj7/1T8Qtw3j7xBoRG4OMA4QIhANKKfF8uplE4z/lS7hsoWlJg/EnhyFbsYRnnEKTWzese"}],"size":4475},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_3.1.2_1719665377242_0.6101447201694894"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-06-29T12:49:37.389Z","publish_time":1719665377389,"_source_registry_name":"default"},"3.1.3":{"name":"path2d-polyfill","version":"3.1.3","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"prettier":"@qlik/prettier-config","dependencies":{"path2d":"^0.2.2"},"devDependencies":{"@babel/core":"^7.26.0","@babel/preset-env":"^7.26.0","@qlik/eslint-config":"^0.8.1","@qlik/prettier-config":"^0.4.18","@qlik/tsconfig":"^0.2.7","@rollup/plugin-babel":"^6.0.4","@vitest/coverage-v8":"^2.1.4","eslint":"^8.57.1","jsdom":"^25.0.1","prettier":"^3.3.3","typescript":"^5.6.3","vite":"^5.4.10","vitest":"^2.1.4"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"prettier --check '**' --ignore-unknown","format:write":"prettier --write '**' --ignore-unknown","lint":"eslint .","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.1.3","_integrity":"sha512-I/Kdsq0nCn6G2rqaDaQMtsunlT/sOsRjwPb3D0bb3ZIwNSp6iM5mnprcYMKGAYPPOTG4qOQmSBi77pq/s4PM2A==","_resolved":"/tmp/5a879b27f6d9d8333c0686fca2619677/path2d-polyfill-3.1.3.tgz","_from":"file:path2d-polyfill-3.1.3.tgz","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-I/Kdsq0nCn6G2rqaDaQMtsunlT/sOsRjwPb3D0bb3ZIwNSp6iM5mnprcYMKGAYPPOTG4qOQmSBi77pq/s4PM2A==","shasum":"cfda19136ef0747f9fbc2cf49d451666b1cff0fe","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.1.3.tgz","fileCount":4,"unpackedSize":10521,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHI0pkzPXjDnDMkDMPp7EHFvZaVWaRDpue2j8zZOFbAmAiEAxqbxHKD6UrJJwhHzyYWEo5+FFK3d3L/ZB7Hb1K8URwc="}],"size":4371},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/path2d-polyfill_3.1.3_1730982413521_0.1301975210055577"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-07T12:26:53.678Z","publish_time":1730982413678,"_source_registry_name":"default"},"3.2.0":{"name":"path2d-polyfill","version":"3.2.0","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"dependencies":{"path2d":"^0.3.0"},"devDependencies":{"@babel/core":"^7.27.4","@babel/preset-env":"^7.27.2","@qlik/tsconfig":"^0.3.1","@rollup/plugin-babel":"^6.0.4","@vitest/coverage-v8":"^3.2.4","jsdom":"^26.1.0","typescript":"^5.8.3","vite":"^6.3.5","vitest":"^3.2.4"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"cd ../.. && pnpm exec prettier --check 'packages/path2d-polyfill/**' --ignore-unknown","format:write":"cd ../.. && pnpm exec prettier --write 'packages/path2d-polyfill/**' --ignore-unknown","lint":"cd ../.. && pnpm exec eslint ./packages/path2d-polyfill","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.2.0","_integrity":"sha512-FWygUVJsEvlup88dGeyO8N60ryWuVc/aPhpEVms+2xVX6jzitkrtqyFxwnMm4hbto2qF96DOQO2z9Fu1nvCoag==","_resolved":"/tmp/93c2aeeaeec021020e991f7180733e95/path2d-polyfill-3.2.0.tgz","_from":"file:path2d-polyfill-3.2.0.tgz","_nodeVersion":"20.19.2","_npmVersion":"10.8.2","dist":{"integrity":"sha512-FWygUVJsEvlup88dGeyO8N60ryWuVc/aPhpEVms+2xVX6jzitkrtqyFxwnMm4hbto2qF96DOQO2z9Fu1nvCoag==","shasum":"d5887cbe468f36bb16a82d6549f6f801c66000ee","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.2.0.tgz","fileCount":4,"unpackedSize":12932,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGyBV0yqPOHViDF82mUEeZcvDyHWtXko5QGrz78oDZJsAiEAmAyf98euojABtlW6PYwAtlvVWr/xA/r8aIWIXEuGj9Q="}],"size":5118},"_npmUser":{"name":"nilzona_user","actor":{"name":"nilzona_user","type":"user","email":"nilssonanders79@gmail.com"},"email":"nilssonanders79@gmail.com"},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/path2d-polyfill_3.2.0_1750775748774_0.7771703783111767"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-24T14:35:48.959Z","publish_time":1750775748959,"_source_registry_name":"default"},"3.2.1":{"name":"path2d-polyfill","version":"3.2.1","description":"Polyfills Path2D api for canvas rendering","keywords":["Path2D","polyfill","canvas","roundRect"],"homepage":"https://github.com/nilzona/path2d-polyfill#readme","bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"license":"MIT","author":{"name":"nilzona"},"type":"module","exports":{"browser":"./dist/path2d-polyfill.min.js"},"browser":"dist/path2d-polyfill.min.js","browserslist":[">0.1%","ie >= 11","last 2 versions","not dead"],"dependencies":{"path2d":"^0.3.1"},"devDependencies":{"@babel/core":"^7.27.4","@babel/preset-env":"^7.27.2","@qlik/tsconfig":"^0.3.1","@rollup/plugin-babel":"^6.0.4","@vitest/coverage-v8":"^3.2.4","jsdom":"^26.1.0","typescript":"^5.8.3","vite":"^7.0.0","vitest":"^3.2.4"},"publishConfig":{"access":"public"},"scripts":{"build":"vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js","check-types":"tsc --noEmit","dev":"vite","format:check":"cd ../.. && pnpm exec prettier --check 'packages/path2d-polyfill/**' --ignore-unknown","format:write":"cd ../.. && pnpm exec prettier --write 'packages/path2d-polyfill/**' --ignore-unknown","lint":"cd ../.. && pnpm exec eslint ./packages/path2d-polyfill","preview":"vite preview","test":"vitest run","test:coverage":"vitest run --coverage","test:watch":"vitest"},"_id":"path2d-polyfill@3.2.1","_integrity":"sha512-9xmGqVGw8hJN+0GPPnwHa8QuvlrCGXHb/2IN0NtAZGGo+E/F+R8sbM2Yck3MpWLgaxyH1PWEvR7KrYiqeRk+dQ==","_resolved":"/tmp/5f5ffa5188b0185307457a6b2075929a/path2d-polyfill-3.2.1.tgz","_from":"file:path2d-polyfill-3.2.1.tgz","_nodeVersion":"20.19.2","_npmVersion":"10.8.2","dist":{"integrity":"sha512-9xmGqVGw8hJN+0GPPnwHa8QuvlrCGXHb/2IN0NtAZGGo+E/F+R8sbM2Yck3MpWLgaxyH1PWEvR7KrYiqeRk+dQ==","shasum":"4b2c621771657152af01ea57cf39647ce8d8ecaa","tarball":"https://registry.npmmirror.com/path2d-polyfill/-/path2d-polyfill-3.2.1.tgz","fileCount":4,"unpackedSize":12473,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCjCau6zX27LwZ0ZhnFLCKBMDmCTtLKR9OOdB2Z45/pCwIhAPp0JibDOKIXKzaft34RYhzzJw8C8tvB/3o+ChT0fXyI"}],"size":4898},"_npmUser":{"name":"nilzona_user","email":"nilssonanders79@gmail.com","actor":{"name":"nilzona_user","email":"nilssonanders79@gmail.com","type":"user"}},"directories":{},"maintainers":[{"name":"nilzona_user","email":"nilssonanders79@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/path2d-polyfill_3.2.1_1750777497876_0.717171523855265"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-24T15:04:58.049Z","publish_time":1750777498049,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/nilzona/path2d-polyfill/issues"},"homepage":"https://github.com/nilzona/path2d-polyfill#readme","keywords":["Path2D","polyfill","canvas","roundRect"],"repository":{"type":"git","url":"git+https://github.com/nilzona/path2d-polyfill.git"},"_source_registry_name":"default"}