{"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"dist-tags":{"latest":"1.0.3"},"author":{"name":"thednp"},"description":"ES6+ shim for DOMMatrix","readme":"# DOMMatrix\r\n[![Coverage Status](https://coveralls.io/repos/github/thednp/dommatrix/badge.svg)](https://coveralls.io/github/thednp/dommatrix) \r\n![cypress version](https://img.shields.io/badge/cypress-9.6.0-brightgreen)\r\n![esbuild version](https://img.shields.io/badge/esbuild-0.14.30-brightgreen)\r\n[![ci](https://github.com/thednp/dommatrix/actions/workflows/ci.yml/badge.svg)](https://github.com/thednp/dommatrix/actions/workflows/ci.yml)\r\n\r\nAn ES6+ sourced [DOMMatrix](https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix) shim for **Node.js** apps and legacy browsers. Since this source is modernized, legacy browsers might need some additional shims.\r\n\r\n[![NPM Version](https://img.shields.io/npm/v/dommatrix.svg?style=flat-square)](https://www.npmjs.com/package/dommatrix)\r\n[![NPM Downloads](https://img.shields.io/npm/dm/dommatrix.svg?style=flat-square)](http://npm-stat.com/charts.html?dommatrix)\r\n[![jsDeliver](https://data.jsdelivr.com/v1/package/npm/dommatrix/badge)](https://www.jsdelivr.com/package/npm/dommatrix)\r\n\r\nThe constructor is close to the **DOMMatrix Interface** in many respects, but tries to keep a sense of simplicity. In that note, we haven't implemented [DOMMatrixReadOnly](https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrixReadOnly) methods like `flipX()` or `inverse()` or aliases for the main methods like `translateSelf` or the old `rotate3d`.\r\n\r\nDOMMatrix shim is meant to be a light pocket tool for [many things](http://thednp.github.io/svg-path-commander), for a complete polyfill you might want to also consider more  [geometry-interfaces](https://github.com/trusktr/geometry-interfaces)\r\nand [geometry-polyfill](https://github.com/jarek-foksa/geometry-polyfill).\r\n\r\nThis library implements a full transform string parsing via the static method `.fromString()`, which produce results inline with the DOMMatrix Interface as well as a very [elegant method](https://github.com/jsidea/jsidea/blob/2b4486c131d5cca2334293936fa13454b34fcdef/ts/jsidea/geom/Matrix3D.ts#L788) to determine `is2D`. Before moving to the [technical details](#More-info) of this script, have a look at the demo.\r\n\r\n\r\n# Demo\r\nSee DOMMatrix shim in action, [click me](https://thednp.github.io/dommatrix) and start transforming.\r\n\r\n\r\n# Installation\r\n```js\r\nnpm install dommatrix\r\n```\r\nDownload the latest version and copy the `dist/dommatrix.min.js` file to your project assets folder, then load the file in your front-end:\r\n```html\r\n<script src=\"./assets/js/dommatrix.min.js\">\r\n```\r\n\r\nAlternativelly you can load from CDN:\r\n```html\r\n<script src=\"https://cdn.jsdelivr.net/npm/dommatrix/dist/dommatrix.min.js\">\r\n```\r\n\r\n# Usage\r\nIn your regular day to day usage, you will find yourself writing something like this:\r\n```js\r\nimport CSSMatrix from 'dommatrix';\r\n\r\n// init\r\nlet myMatrix = new CSSMatrix('matrix(1,0.25,-0.25,1,0,0)');\r\n\r\n// apply methods\r\nmyMatrix.translate(15);\r\nmyMatrix.rotate(15);\r\n\r\n// apply to styling to target\r\nelement.style.transform = myMatrix.toString();\r\n```\r\nFor the complete JavaScript API, check the [JavaScript API](https://github.com/thednp/DOMMatrix/wiki/JavaScript-API) section in our wiki.\r\n\r\n# WIKI\r\nFor more indepth guides, head over to the [wiki pages](https://github.com/thednp/DOMMatrix/wiki) for developer guidelines.\r\n\r\n# More Info\r\nIn contrast with the [original source](https://github.com/arian/CSSMatrix/) there have been a series of changes to the prototype for consistency, performance as well as requirements to better accomodate the **DOMMatrix** interface:\r\n\r\n* **changed** how the constructor determines if the matrix is 2D, based on a [more accurate method](https://github.com/jsidea/jsidea/blob/2b4486c131d5cca2334293936fa13454b34fcdef/ts/jsidea/geom/Matrix3D.ts#L788) which is actually checking the designated values of the 3D space; in contrast, the old *CSSMatrix* constructor sets `afine` property at initialization only and based on the number of arguments or the type of the input CSS transform syntax; \r\n* **fixed** the `translate()`, `scale()` and `rotate()` instance methods to work with one axis transformation, also inline with **DOMMatrix**;\r\n* **changed** `toString()` instance method to utilize the new method `toArray()` described below;\r\n* **changed** `setMatrixValue()` instance method to do all the heavy duty work with parameters;\r\n* **added** `is2D` (*getter* and *setter*) property;\r\n* **added** `isIdentity` (*getter* and *setter*) property;\r\n* **added** `skew()` public method to work in line with native DOMMatrix;\r\n* **added** `Skew()` static method to work with the above `skew()` instance method;\r\n* **added** `fromMatrix` static method, not present in the constructor prototype;\r\n* **added** `fromString` static method, not present in the constructor prototype;\r\n* **added** `fromArray()` static method, not present in the constructor prototype, should also process *Float32Array* / *Float64Array* via `Array.from()`;\r\n* **added** `toFloat64Array()` and `toFloat32Array()` instance methods, the updated `toString()` method makes use of them alongside `toArray`;\r\n* **added** `toArray()` instance method, normalizes values and is used by the `toString()` instance method;\r\n* **added** `toJSON()` instance method will generate a standard *Object* which includes `{a,b,c,d,e,f}` and `{m11,m12,m13,..m44}` properties and excludes `is2D` & `isIdentity` properties;\r\n* **added** `transformPoint()` instance method which works like the original.\r\n* *removed* `afine` property, it's a very old *WebKitCSSMatrix* defined property;\r\n* *removed* `inverse()` instance method, will be re-added later for other implementations (probably going to be accompanied by `determinant()`, `transpose()` and others);\r\n* *removed* `transform` instance method, not present in the native **DOMMatrix** prototype;\r\n* *removed* `setIdentity()` instance method due to code rework for enabling better TypeScript definitions;\r\n* *removed* `toFullString()` instance method, probably something also from *WebKitCSSMatrix*;\r\n* *removed* `feedFromArray` static method, not present in the constructor prototype, `fromArray()` will cover that;\r\n* *not supported* `fromFloat64Array()` and `fromFloat32Array()` static methods are not supported, our `fromArray()` should handle them just as well;\r\n* *not supported* `flipX()` or `flipY()` instance methods of the *DOMMatrixReadOnly* prototype are not supported,\r\n* *not supported* `translateSelf()` or `rotateSelf()` instance methods of the *DOMMatrix* prototype are not supported, instead we only implemented the most used *DOMMatrixReadOnly* instance methods.\r\n* *not supported* `scaleNonUniformSelf()` or `rotate3d()` with `{x, y, z}` transform origin parameters are not implemented.\r\n\r\n\r\n# Thanks\r\n* Joe Pea for his [geometry-interfaces](https://github.com/trusktr/geometry-interfaces)\r\n* Jarek Foksa for his [geometry-polyfill](https://github.com/jarek-foksa/geometry-polyfill)\r\n* Arian Stolwijk for his [CSSMatrix](https://github.com/arian/CSSMatrix/)\r\n\r\n# License\r\nDOMMatrix shim is [MIT Licensed](https://github.com/thednp/DOMMatrix/blob/master/LICENSE).\r\n","repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"license":"MIT","versions":{"0.0.1":{"name":"dommatrix","version":"0.0.1","description":"ES6/ES7 shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.1","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"b97bdcdc741169946fc0e307925700b5d01225bc","size":9214,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.1.tgz","integrity":"sha512-YjO+oveIGlX3XIOAATIPzIHy62aJ1T/gBuqdZ6mRSW23YKeLuxM0MjwoZjSpnFYmUimZusWR3qnKXRUH8knv8Q=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.1_1599774918119_0.562243138993805"},"_hasShrinkwrap":false,"publish_time":1599774918277,"_cnpm_publish_time":1599774918277,"_cnpmcore_publish_time":"2021-12-17T09:37:45.424Z"},"0.0.2":{"name":"dommatrix","version":"0.0.2","description":"ES6/ES7 shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.2","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"5430f205223fe2e9b7bdbb8f407bcde4ca7f4a9c","size":9249,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.2.tgz","integrity":"sha512-+iW5dPBGn15j6bdXn2DujRV9QAh/Vs2xchMlmsI1NmLGke4ygHasrUld3RwazgZBj/Lf2ZuwuLPzpIC3TUIDdw=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.2_1599802681472_0.2251663595000455"},"_hasShrinkwrap":false,"publish_time":1599802681683,"_cnpm_publish_time":1599802681683,"_cnpmcore_publish_time":"2021-12-17T09:37:44.860Z"},"0.0.3":{"name":"dommatrix","version":"0.0.3","description":"ES6/ES7 shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.3","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"4425e38f84e714587d36b0e7367cde5428ff07dd","size":9147,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.3.tgz","integrity":"sha512-Q7IstoHel02AIHy5q1zogMJiwC9ukwXVzRvWo8xjCrqDVmBHgYbvF+9UpeXTPL7ROne6nf70W+owZmnDmV4h5A=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.3_1599803886391_0.8272468796107038"},"_hasShrinkwrap":false,"publish_time":1599803886533,"_cnpm_publish_time":1599803886533,"_cnpmcore_publish_time":"2021-12-17T09:37:44.674Z"},"0.0.3-a":{"name":"dommatrix","version":"0.0.3-a","description":"ES6/ES7 shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.3-a","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"f49c5d78a8db0a3161ff1fd14d81f5e36f077b8d","size":9202,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.3-a.tgz","integrity":"sha512-4yM6IGQUKG05jCBuLq7ZFwkq50XVEp6eEs/P4y5IYvqtV+FWQSmzYtnuXEUK/wA9oB7eCKcCP2JB4LlrNQI8Cg=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.3-a_1599887269020_0.6073690202006896"},"_hasShrinkwrap":false,"publish_time":1599887269217,"_cnpm_publish_time":1599887269217,"_cnpmcore_publish_time":"2021-12-17T09:37:44.475Z"},"0.0.3-b":{"name":"dommatrix","version":"0.0.3-b","description":"ES6/ES7 shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.3-b","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"162c128a151bba3205b87b1474f8bb7a2a2aa127","size":9378,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.3-b.tgz","integrity":"sha512-06YNA22j5ZiZP9vCkcx1Zj6wuKq4tpcBm81xxuqrs2U794pATG+Mo4+XDox/9ZQusVx5dZh8yDFwVPllDV1lyw=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.3-b_1600340182140_0.8470320224452221"},"_hasShrinkwrap":false,"publish_time":1600340182237,"_cnpm_publish_time":1600340182237,"_cnpmcore_publish_time":"2021-12-17T09:37:44.224Z"},"0.0.3-e":{"name":"dommatrix","version":"0.0.3-e","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.3-e","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"6b0671e17fbcb9f0c153c48601df6d8ee07f440f","size":13201,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.3-e.tgz","integrity":"sha512-9Vwb4maLtSqneuc5+1gDG5JLwESquW1kT5Uj+galoP4GB6hZjkkdgzgOcfjrW/P8Cb3mhpWuP5jyoW4H30MVUQ=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.3-e_1600637869703_0.3196386485658915"},"_hasShrinkwrap":false,"publish_time":1600637869855,"_cnpm_publish_time":1600637869855,"_cnpmcore_publish_time":"2021-12-17T09:37:44.022Z"},"0.0.3-f":{"name":"dommatrix","version":"0.0.3-f","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.3-f","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"5aeab107137841bd6a41d32e6c92b87fb40c41c4","size":10984,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.3-f.tgz","integrity":"sha512-yfzZ4o6+Sx72pRLhtGtgqLoo3vHFeGutXHm9r1gJWiXixAJh/Gqi42awKl1x/yGd2hcBEZ8GB2z44QKxNAOuFQ=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.3-f_1600671139433_0.6992961193218288"},"_hasShrinkwrap":false,"publish_time":1600671139577,"_cnpm_publish_time":1600671139577,"_cnpmcore_publish_time":"2021-12-17T09:37:43.781Z"},"0.0.4":{"name":"dommatrix","version":"0.0.4","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.26.3","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"b28ea82868e1fff4f29f334b97bd00f7de48b88c","size":13962,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4.tgz","integrity":"sha512-+d1uY+xDJRBUyttYGkqIKzHEi7bvNcrbXFt+7ZFrq8LSJpdFLSWac417cm680k2NIiAN1XEZj8X9gelMviAMhw=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4_1600691056536_0.07975452029759111"},"_hasShrinkwrap":false,"publish_time":1600691056671,"_cnpm_publish_time":1600691056671,"_cnpmcore_publish_time":"2021-12-17T09:37:43.559Z"},"0.0.4-a":{"name":"dommatrix","version":"0.0.4-a","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4-a","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"143b4cfc819a6ad2dddd09e362e3f1fb4f02b341","size":13985,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4-a.tgz","integrity":"sha512-Q9DPwUyFv58+6A90HAIKEfAEssZhNU6F0EcSW88fYw0bgI6VExB4hvEE52OveAWJj/OyYWlSSSeGkqyek/itaA=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4-a_1600742936156_0.7149933488280371"},"_hasShrinkwrap":false,"publish_time":1600742936279,"_cnpm_publish_time":1600742936279,"_cnpmcore_publish_time":"2021-12-17T09:37:43.318Z"},"0.0.4-b":{"name":"dommatrix","version":"0.0.4-b","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4-b","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"1131b257e2daec73a116b3b03efe402da29ea0af","size":14110,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4-b.tgz","integrity":"sha512-NHkVD+JK9RihkpDZbUd/7Nzqvm1u5OpCfDPq+unpgMsSSPeke3Yof/m9e0q8CD+jUIB2nToybBqTKFX0ZOX4Ww=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4-b_1600743641742_0.5428379668886667"},"_hasShrinkwrap":false,"publish_time":1600743641870,"_cnpm_publish_time":1600743641870,"_cnpmcore_publish_time":"2021-12-17T09:37:43.110Z"},"0.0.4-c":{"name":"dommatrix","version":"0.0.4-c","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4-c","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"9c23db25aa1bad7d716e96fbb2f7d051f51f4ede","size":14037,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4-c.tgz","integrity":"sha512-pFz7VP7qsI4RsyJtUH8lF7W2F7oVflPfC0LkAn1Bi/yMQVybYYSroJlfFypuH7yYfwiE7x35NJ2MtycmvpY9SA=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4-c_1600768848773_0.6504870498694686"},"_hasShrinkwrap":false,"publish_time":1600768848879,"_cnpm_publish_time":1600768848879,"_cnpmcore_publish_time":"2021-12-17T09:37:42.846Z"},"0.0.4-d":{"name":"dommatrix","version":"0.0.4-d","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4-d","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"63ceb679d21040761e68eed64b2529d5781b13e0","size":14858,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4-d.tgz","integrity":"sha512-YWggAFCzRd6ax0sTGCHCH5fwryOzJPCzNYfgvACreNEC8RT1AjY49TLzATHwKpgJmOB0wpSUSPqYFe7QnHVwNA=="},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4-d_1600806677303_0.26860878092205565"},"_hasShrinkwrap":false,"publish_time":1600806677447,"_cnpm_publish_time":1600806677447,"_cnpmcore_publish_time":"2021-12-17T09:37:42.571Z"},"0.0.4-e":{"name":"dommatrix","version":"0.0.4-e","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4-e","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"07e6f53c9584d7d33c8dc7e463c9bf534165af90","size":12990,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4-e.tgz","integrity":"sha512-X2mn0eD0X52we9ueKOuDEQx/+StaMF1A9tdvT9ZP02dSYwVKNFuMV5p2/M0BOpXR2qQL1JYkKhxU+SfuZpigRQ=="},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4-e_1610427286157_0.9010178838964746"},"_hasShrinkwrap":false,"publish_time":1610427286314,"_cnpm_publish_time":1610427286314,"_cnpmcore_publish_time":"2021-12-17T09:37:42.309Z"},"0.0.4-f":{"name":"dommatrix","version":"0.0.4-f","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm-run-all --parallel build-*","custom-build":"rollup -c --environment","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","devDependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-cleanup":"^3.1.1","rollup-plugin-terser":"^5.3.0"},"dependencies":{},"_id":"dommatrix@0.0.4-f","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"shasum":"843105010fc0f83adcbafb317b1ba073f00e8131","size":14275,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.4-f.tgz","integrity":"sha512-JqnazuCuhYWFr0I90W0bNyyMOO+6dqhgmxxe+ggmkivV0SrgqLbACuuJjjfkplE/mXQzD3JntLKc2abwlUMHqw=="},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.4-f_1612295708007_0.5654741459410304"},"_hasShrinkwrap":false,"publish_time":1612295708160,"_cnpm_publish_time":1612295708160,"_cnpmcore_publish_time":"2021-12-17T09:37:42.071Z"},"0.0.5-alpha1":{"name":"dommatrix","version":"0.0.5-alpha1","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1"},"_id":"dommatrix@0.0.5-alpha1","_nodeVersion":"14.4.0","_npmVersion":"7.5.4","dist":{"shasum":"6593ede7539d12ec50c74a9ea81ab6aa3881b7e7","size":15701,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.5-alpha1.tgz","integrity":"sha512-Z3YZ7FHTsMS9dVNz+Kkt8OYr8nrAEETFF1CmBbgYZZ6rYJ2ny3kvz1uxw1BUtwWgBYPXksB7F/3l++d30HyrGA=="},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.5-alpha1_1616695502105_0.76466526180567"},"_hasShrinkwrap":false,"publish_time":1616695502813,"_cnpm_publish_time":1616695502813,"_cnpmcore_publish_time":"2021-12-17T09:37:41.848Z"},"0.0.5-alpha2":{"name":"dommatrix","version":"0.0.5-alpha2","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1"},"_id":"dommatrix@0.0.5-alpha2","_nodeVersion":"14.4.0","_npmVersion":"7.5.4","dist":{"shasum":"92e078c200c08a3ed8528a5030486a247b02ba2d","size":15732,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.5-alpha2.tgz","integrity":"sha512-EVGrE7cfra4MzrRVnBOkhkyet8HKJ1/uESjiPXFhAGLBgPjRpjtZLGjZMke1yEWGhiCJ240L31mLeBoj+qRVyg=="},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.5-alpha2_1616824637586_0.6919566216442865"},"_hasShrinkwrap":false,"publish_time":1616824637751,"_cnpm_publish_time":1616824637751,"_cnpmcore_publish_time":"2021-12-17T09:37:41.581Z"},"0.0.6":{"name":"dommatrix","version":"0.0.6","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1"},"_id":"dommatrix@0.0.6","_nodeVersion":"14.4.0","_npmVersion":"7.13.0","dist":{"shasum":"f962d1fe19af04c078dd6f2748e66bf8eef2c9a8","size":15898,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.6.tgz","integrity":"sha512-arWsB8xJsMDU/oSaz8W/ha8W65CJSNJGdFbIYJIuI3pUxT+wtb4vcr8OxNMU+R+Cz6Ad4j+BfwBjzC74AZkytQ=="},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.6_1622446580269_0.13268314490245214"},"_hasShrinkwrap":false,"publish_time":1622446580417,"_cnpm_publish_time":1622446580417,"_cnpmcore_publish_time":"2021-12-17T09:37:41.327Z"},"0.0.7":{"name":"dommatrix","version":"0.0.7","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"d94a8c27639902dd98a83f422b256d8692f6e81a","_id":"dommatrix@0.0.7","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-qnMEwFg3wnqUMi/h4ao2Ap1KkCn+AcsUjGkYK5iOPrLRBI5og+8QOKTkjx9NlZjZQ54yzG4AN4t0KHkuUWdGSg==","shasum":"82cca1902e61810d8515826ecbdf47cab789ffa3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.7.tgz","fileCount":9,"unpackedSize":93737,"size":16600,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.7_1636804396519_0.758596670498241"},"_hasShrinkwrap":false,"publish_time":1636804396713,"_cnpm_publish_time":1636804396713,"_cnpmcore_publish_time":"2021-12-17T09:37:41.089Z"},"0.0.8":{"name":"dommatrix","version":"0.0.8","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://github.com/thednp/dommatrix","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"55f7d78d1f6f727a90e818ddb0dfa3ce2408a086","_id":"dommatrix@0.0.8","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-yac0gE+HqiXznHip03UYYc6sVWl22rVuDzH9GCKkn3jMadEDELHb5sv6XndyVclTEDiPngZhWt4xFLpZXYYE2A==","shasum":"c1692183c5b23d529f6a23406a2b51bd6f942f5b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.8.tgz","fileCount":11,"unpackedSize":93278,"size":18355,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.8_1636819202635_0.18818590456032358"},"_hasShrinkwrap":false,"publish_time":1636819202981,"_cnpm_publish_time":1636819202981,"_cnpmcore_publish_time":"2021-12-17T09:37:40.776Z"},"0.0.9":{"name":"dommatrix","version":"0.0.9","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"3726bc0a130d3705eadd1aa4b2536587295d6ad2","_id":"dommatrix@0.0.9","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-4zy0exy06YDL0oq2UZbdXNn4Rk/n+ur8piQ5cUNMD1WKBuYTWeV//trGqt2/L+gLATpBjdeYHr026P9BftMGSA==","shasum":"569f60d453a8c82d00177d5a4ded8e995c28d1a7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.9.tgz","fileCount":11,"unpackedSize":107708,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlrNUCRA9TVsSAnZWagAAVhUP+wX2gPneKEAyYZj4B/Rk\ns075yS4UAkwHNQbJYx5dfTi25sklnQNksNS9pQMeCwMe65yGvOvimfzWB3Ew\nZk35iB8AR/Nt3/rLew06icLrHlCnsp5uVAQtL6eUTUwaK3xL1O+VzS46QCZH\nhirsx9UWbTQkvfzBat4N0wbfEkWS704P9fR7LMKoJA5lpK0WRD/+ZtCVAlrq\ntgv12yPH21/WfbYOa2xS4i7keB6z+90nHjDrrO729hNWFzNaioSbE5gfp1BE\nl/4mVQ+y1XO0Xdhg4aLhCGJqcTrn/tHOK2g0TnlwcxuCsXZquAo7/pLS8iKV\nuDZosY+lnu2CqqfVtWSeU8thDn+LWE+t9kCy4k072EciHgL0THQN+l6OG8kV\nu4IZdU2+p+txKccvuSBk6ctS96GXyEwj18OJl/jW2X6csHm6rnip+L4P5yVS\n8LwoyuSAeSUxkoGEo0U9HbBC95iOxhj0IyRkOaqeFJjl4HZbsOsDllfPBmNx\nU4uw2RITFcRuR9kOADOt5hFdlS4vfaQrz4U21iG2xLb3S6z4XEwTwQcpFjkI\naJXON0+MV4/oT0yKINXRRuEF5FweTM28aRGJ6O87aMiSKsYrGd4uJsaWa62b\nJ1l3GigjPRMO14vgoiAXbyucyNk3YslB9rlsNujA3py93rkRZS14n10Yv43l\nkp2i\r\n=nfzv\r\n-----END PGP SIGNATURE-----\r\n","size":22050,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.9_1637266260428_0.6557237190683536"},"_hasShrinkwrap":false,"publish_time":1637266260593,"_cnpm_publish_time":1637266260593,"_cnpmcore_publish_time":"2021-12-17T09:37:40.402Z"},"0.0.10":{"name":"dommatrix","version":"0.0.10","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"32bbc456ff974157392f295f1f8c3b83476fbffa","_id":"dommatrix@0.0.10","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-LP/98Us9tyQC94JGQ3gzesTt/xcKSd+EzKsP8GC7QFByXOzVeUs8aRY2S0kcDpTBllWumCbW9TJwNVHa3VW8hg==","shasum":"6d5c5cb66664b6df4adc9bbfd66a5a48bf8afe8b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.10.tgz","fileCount":11,"unpackedSize":108539,"size":21550,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.10_1637350387547_0.8971314642761608"},"_hasShrinkwrap":false,"publish_time":1637350387745,"_cnpm_publish_time":1637350387745,"_cnpmcore_publish_time":"2021-12-17T09:37:39.666Z"},"0.0.12":{"name":"dommatrix","version":"0.0.12","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{"@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0"},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"30101b6d5d982308415d59c102851979ba740baa","_id":"dommatrix@0.0.12","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-5sb89wgUldFBzkK2wPsvmY1/SMGqnvS6bXpZqlrASA0vKSBt4/bV6ngquB2vwTU69v0e8+m579WoFxhh5qyLMw==","shasum":"63f3e8dc5df49597f29aa772f7876b55c1758b52","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.12.tgz","fileCount":11,"unpackedSize":107775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmn+ECRA9TVsSAnZWagAAy70P/iOB9bcnA57u0jLwoEbF\nx0J67WB9MMFASFhy1BYHFrBD9n7FWSXqROswG2hgkL6XF+Y1odUC7NFGJQC2\nFWmw61kyGXJTqhlMMaVKR0lYqDccrWUlhbDK/HVp7qF4iEeSe9mecc0/PJJX\nILqYXhoJH0IHKy9m7HnOxMBje+HBggjJl2aQK8Yu0A77HbEjhIRFNpGUqwZj\nSKhg/++XztdE+72c2qOOs0W3nW85njbmr2poJPb7ZR0r3P1lmf4aQ4kv/fU+\nNFpiKZlc93LYMXM/F2552GfGjP93CgZqlETojn2t/jKk3jsIT1THzIB90ABX\n/2IoTx0G5n6qkhqacnMqif7vxXiIxskMKtRtJJW2spLlVAF+q4SUYk2iOu1K\nZjESYaimn/9K/HnASoMCJEocDHR1PVWlUrj1wezb96IKBVz3M2Ygl1Lfqi8D\nt/uydjcTUBoWAhESrDpcwcbNZAGSwZK18+4fxgaZ+ww+36AUSn6yOFcSGDJ4\nAZMTcY9PAtpgsROe5qzvgG8m9r/kSw1g2I4eabPkb/uGTpx3+tzibGlcM4Tr\n9D2BYui6vG+q8RZ93zRfUp08sVS0WssofRbz0b+rf5UPQx8PJKoqlVAAy03T\nHqSLWxjB896QF4d8hWnqj9QQM+Dl7+vDyYCuoJeK7j3l7dvByX5Do/20FbfZ\nIPbw\r\n=Rr4w\r\n-----END PGP SIGNATURE-----\r\n","size":21735,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.12_1637515140013_0.20387707169737124"},"_hasShrinkwrap":false,"publish_time":1637515140226,"_cnpm_publish_time":1637515140226,"_cnpmcore_publish_time":"2021-12-17T09:37:39.393Z"},"0.0.13":{"name":"dommatrix","version":"0.0.13","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"069ce17f75acf4d83ab2176c74844959e48d32f5","_id":"dommatrix@0.0.13","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-CMVztkIdXZQZOLVOoKn3f1FevjSyQDxdAdNbtwT1YND5lCJbJ2otEx2/K7o8eIugD9MbAVY5Dwxy9lTAXOe0iw==","shasum":"644340d7e3c2e90c5f61bd206f6b5e04c8473d0f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.13.tgz","fileCount":11,"unpackedSize":108919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmzAnCRA9TVsSAnZWagAAKt0P/jN/qt5FqWcra5gpELMN\n4M1Pkf2erzhuTOmFZ4m60ARyqKKP7idlCsUyyFQFi+xHTDwL/9ze1ETDCxym\nEIVYbFbjawEyhOdik/S2tvh6F87DTVNfIqi4Xc6YI0OwaXnfseNLIO53pvjW\niexr3Wbo6xY7n61ZGX7cYhil/QNEvrHh4y+EsN7m7VoDVHjEItiy2OMmNy2I\nDK1esUM7LZmIdGVr+uIfQcsV5dwPBJkwOL45aKkkalCpKGY1NDWZmlUEXNWI\njRhTkXBE2JxpatINLZ5VatKDs0ErQM08CMxu9Z9o4r86kvpOPO5Z8lQPeKCS\nwNJULintfaSGDUsdTfoSzARoYGbCEk2RPfGs9rdKmAermPSCfm48jUfLSwUu\nfgT1SXPWM7mhoTN8HHjsdx/DyZ304KCRYuTAO3HhgOsrUGKw19hxD1U0DKXC\n6OA8fNfbJDxB96bG0TN07EWWE0uJ4YqrLWot80n0GDdAhFokfPfdkjEOLUmb\ngw2rV06WJSboy22IQYGKGOa3ymKqHiAbNNYqPcKkZV3OxpzQ5VbHQGyO/Ygb\nXhsmhzlOPL6+mP59AguWMboHr8D72aMFOR3UyD+34zfjGkxR0o6PUFHe5ctG\nodekus750t3fOuXfF5QRyTwlqQgXcvwBqu/ojTC9XSn4wcspc9x/vQnTg+zW\nmY4G\r\n=KE0U\r\n-----END PGP SIGNATURE-----\r\n","size":21757,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.13_1637560359565_0.6742697753057354"},"_hasShrinkwrap":false,"publish_time":1637560359702,"_cnpm_publish_time":1637560359702,"_cnpmcore_publish_time":"2021-12-17T09:37:39.172Z"},"0.0.14":{"name":"dommatrix","version":"0.0.14","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.min.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"5f9ee4bf4c5d192be6cea36f7ba6a4dae9dc8d61","_id":"dommatrix@0.0.14","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-ixa2CaQNNguDpZ9yjf9XWsybt5/XEP7rGljw8rW5Seru7GhVh9hEKbIFozdvEf8kFsNmiIBmkV+Q8zs3geZr+g==","shasum":"a6aafc4765f8a006d2fc5bb9ba1f58549b6eec87","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.14.tgz","fileCount":10,"unpackedSize":114975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnIhVCRA9TVsSAnZWagAAdmcP+QH9ieYXBxeh3tgbwbtV\nnNDubVc29SKwlSRWdttVB/8WPKvdXx3JiKwB2XOR5KrnMUlB32gZ3dh/yqPa\nNIryd22Xo4n0tXy12lrxQGZr6FpMWi+S2RPhPh+SDz3UeVdggg7q2MDgtY/h\nB9mWLR9IvLZwAwa/RNuq5Tieym27R3PMKcn/BldDOui2EVYhi1q/AV5r7fkY\npWid057aU7hBjhOIWPHy+ZMaitot4msrhYgfNMfG5K405LcmcbbiDO2IRweN\nCw8Hp8VB5POBxht6WuuOfRv+VIj15lk3hQm6HlyQiYUzR0hYbxCY2nQ88POE\nhXPDBYUNDs3S6QFcU3PvlmbzTx70Vk1aMuAlCgPmkelk+JCN4aFzGBE99dyi\nzD5BgOkAUhdOiux5UR/LnxDJwjM+EssR5l8topgwt64dWnbB4xGGYIpPymVD\n8rY9IY2JUy/HMjeOCzOu4ElhjXH93YEuD/MAZFfcaBA8mVxNtiSqjxaaFn/G\nsJPAK3NDhC9DTlYvxFR3JJmJuI5PLzOWIjy7o5qA4X2/AfRRRUCwsETA7b8F\nH1NYRFFwx9UlH1AtudhNR8zqtmf7jeiPZMw0k7MGv61NoQWbbI8o+W8d/P41\n6904UYAZHc9FQmwKcg0daaZfYjQ3ION7PEsu0tFSeZWbqzQG86AJ8e3g48tk\nmWfw\r\n=DZ2p\r\n-----END PGP SIGNATURE-----\r\n","size":23186,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.14_1637648469077_0.629449914283895"},"_hasShrinkwrap":false,"publish_time":1637648469262,"_cnpm_publish_time":1637648469262,"_cnpmcore_publish_time":"2021-12-17T09:37:38.963Z"},"0.0.15":{"name":"dommatrix","version":"0.0.15","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"06d45675e6b40fd8b13f9d8f31352408fe9a9a96","_id":"dommatrix@0.0.15","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-jccAp1Jz8+TuGRx+VrUXweOkSZp+2FtrCkGS5fMxqXbP4v/AfN96Cv2vXmKK9ZhYVYLFUGjCNLCHyKWXlU8e1g==","shasum":"ec1d01a480f031295cf4d0c8a017c3bb9989817a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.15.tgz","fileCount":10,"unpackedSize":114974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnNHCCRA9TVsSAnZWagAA948P/jhNuFRuToNXtLB9m9MX\nxErAbKBKpKz0ZI4BL4058hpwBcm1OKJZcSbVoLQrUlvyH9URuNWuNq6tF/WB\nrKvFs7M8gTLIaSXNVGsb737qBkocMaf5fzBjcEBOcDd7t8umhMWl0ICCdnWL\nO9mI64SdKsEZUZ8e2ubgSeV/L8KW9LXSuD4I/DAa+r4j3/vJCpVWDjkahR+5\nQqKW9WGsGxncXLRdJCSTurfhMsiM+zooW6HQQdT9w3kNOUcbyptVpBxperEB\nS+s75Y86BmMd8J2eWBM7TppF/hxBZnfkiigK5mEVbAJtKv/rc485NrgPlBSH\nSjFsuIvsSY1zavXHAT2RKLXeqALHHBwDD2qE0VUMgbf9L+JM7bJSuyDrgiHA\nBkwhWDULniil5HcnpX0ZsEZn15YbdyGSL+Z8Shp1pVe9RVMqmbLLbDaXy3OK\n/P3PHWsbk+j2k2G8Jw/HtP0E4TTnGlusShpMPw5GhWV4BkSitzAJ5f2pchKX\nTViXongapBG7vuHG2L9mFUt33nyrTlmqy9SjnfJtInsmImmdxz9gNVZBNbRb\nxbcMd68j9iKni0KLF4H3gqrovgnPvgOLftqqg4HsKolqEutp4vo1LAlgZs/5\nlURL3sT4XnnOQ534+GEPW5vCYkI/+nhTCb3+Ll4QBix3Ho5fFvV3A820nc31\nO4xw\r\n=qDDL\r\n-----END PGP SIGNATURE-----\r\n","size":23188,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.15_1637667266174_0.2646008227042598"},"_hasShrinkwrap":false,"publish_time":1637667266323,"_cnpm_publish_time":1637667266323,"_cnpmcore_publish_time":"2021-12-17T09:37:38.751Z"},"0.0.16-alpha1":{"name":"dommatrix","version":"0.0.16-alpha1","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"06d45675e6b40fd8b13f9d8f31352408fe9a9a96","_id":"dommatrix@0.0.16-alpha1","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-73JtVnHTzz2XUuS8voC2uu0rQckK4X2iT1WpREqvzDcbZEjkx3Wh+LQuLu6xePHZWWLqiLNAtMI3U3rZTWhxeQ==","shasum":"8187821b6282e637648604e2851e25cf92244370","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.16-alpha1.tgz","fileCount":12,"unpackedSize":113924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnkpbCRA9TVsSAnZWagAAY3AP/2b9qQjMNLphz0cZ0qUr\nbm6HgzdNP+x2EMYd0icDndjhdSQVTph/Dz5lxJcqZrD/y1Z1XEJy+Vd9JGQ4\nZrHpjhmPVa7ueYA+gGjNTjvZsDy5x7XThZqPmoTglkwuIktd3ms/ormn41gH\nVWukzJTs5KMxAfaSvnIbuOfNJ2KeKiOMLEdtZt2iKJIt1hyzebYUvyFprajB\nQaMaHjjjN5+DFhUc302rDTIV4NDQtKaRfeBdaMeT7vb/TTMNLYHt9ksyfxhu\nYak0tXHKHQQOaYESYctW7YpvnoFlcB7xBdizKQuhXZp1iJGQOIAOBLH3Cx5l\nZHJJBbfw6bkyfvI3+9Enx+jXZasdIpJ+MPtlIkaki3VOtR/U+XVcsBkRLd9B\nBIWyjLiXwJwCxuf4i1GFkUz5rR1oXxMNS9lKY8Q/Xii7eLjO0IPnAiTmjyBj\n0y/zO6TPZSvcQW3PODvSkgsC+ouxOH/QEsCHnTBvDX8GvYjuBDI0YscpvWuO\nui9nrYIhBrKD28WXHoGin0n1An1O34iQJPkQiiYpEFkZfwfZMr9WySBBH9br\noqWoHpWagDBZfnnMx8IawUoyBVKLg2IijVEsA+xIOYn5PLZN8YGAHr3q6s8v\nULEvy0WSzU6lkwCO+5JhihVZE0znVrVBoSlTvBRi7eM7ihUb3YOnPjDjaf/6\n/aCM\r\n=l28W\r\n-----END PGP SIGNATURE-----\r\n","size":23922,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.16-alpha1_1637763675639_0.08000273232103172"},"_hasShrinkwrap":false,"publish_time":1637763675787,"_cnpm_publish_time":1637763675787,"_cnpmcore_publish_time":"2021-12-17T09:37:38.236Z"},"0.0.16-alpha2":{"name":"dommatrix","version":"0.0.16-alpha2","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"06d45675e6b40fd8b13f9d8f31352408fe9a9a96","_id":"dommatrix@0.0.16-alpha2","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-HPW1mBzsZl6/04wXKbW1fDY5wd1NlP4aUbsjteE9dEWEgsr4tbcNlHdN8yofVdSkUOjsLN38eJio5Fmk/4PX6w==","shasum":"7718b54129a2cc3e43efbba728a31bbab5bdd436","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.16-alpha2.tgz","fileCount":12,"unpackedSize":111739,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnk+BCRA9TVsSAnZWagAAjqEP/RH90MF4D4WEBqyEL933\n7yp4RdWT0rx1uv2BtU0syLCLCaLXLPO5y3HQXt9oFpu9cjvK+2AuPUzyEyyO\ndu2iSyVyoOYr6mXA6NU2wPuIkWWBvQrhrSrM78tlpCUU817r5F0RHoBG2Jq7\nsQsnAAX9gfPSuPDbtfTypy3hLXpzBvjH8yCpBFi0esU1wqfpYkLVQ13kh78b\n5e8emOQ0ayuEFZGzIzbIH2HOWr9i15vFUXNZUATtyWLs5vikhUcbtEiDtQK2\nLT6aSSMeuA1sHloqQh/uogaeRFTMtFId3YWmyN+eAWKx6xTznNhoHjGylGCV\nM0uUq5MbjqW5HuniJueMP3QgDAluqw+A0UjBX3WHsPUjoQfXvCojFoGypyNt\nAn0grwLILus7Sns13AMjRgOdsUOeIf8se+4ui7nPVAThexE4/Aa7DairaXvL\nXqMLA/NptByj5n8sE2fKlFFzx+/ePw1oRxh/uZCFEoBY7wXJJPWsyfYGqzh/\nodX4i53cGR8bhJHfmQSvvyvfB5ClVY/j6LaBICVvLCzQFqn6KnEcaYeaOUNM\ngq14hijJHct6CGJ5T4KzmOsQoBb0ZLwl8Q6MmUkeplToDIQHtGVP5wjetUun\nPNDN4+Vj1afT5yVkHpoCDJYpG4ennqrJNszfW1hcsnqBHV86fYoO12euA/Hd\nWXRR\r\n=q/hO\r\n-----END PGP SIGNATURE-----\r\n","size":23796,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.16-alpha2_1637764993062_0.5861653403179234"},"_hasShrinkwrap":false,"publish_time":1637764993314,"_cnpm_publish_time":1637764993314,"_cnpmcore_publish_time":"2021-12-17T09:37:38.007Z"},"0.0.16-alpha3":{"name":"dommatrix","version":"0.0.16-alpha3","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"06d45675e6b40fd8b13f9d8f31352408fe9a9a96","_id":"dommatrix@0.0.16-alpha3","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-MTcAwFOb7nybSms1AL/N2hZxTmZWCbXNDsvkIaiyTIbMAHAQmLG6v0nWihCukof8kvCFVSWMgUA0TJf2GSLJjA==","shasum":"616e15c69dec80bd53e4b1b4a2cabb921fdb6a88","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.16-alpha3.tgz","fileCount":12,"unpackedSize":113424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnmMzCRA9TVsSAnZWagAA+QgP/2V+7Pt5pAUPNkRuDLK7\neyQ1sxS+DCFX5fN/4T3n0nFztClrChfZt7RlV8PuMiBT6+JcuCC3NdHpH5Fd\nyTBdUvmZM5IKmx4X5tm/1VkLfo10fyZwz110TFHG6gjSfyol/zA44SnKPhYI\noHKtypmifVtQcPDUVSABYjkVuWUktNCz/O3BOtXpjz909rlKkYO7mOdTXmff\nc47nuvTPJqOAqOfmq5DjTv1GrfOMkPcOx4Q2EnUHnUUL2G9DnktwqeiTJPMv\n4gXu/YBb9jGgqqj4ohMyFJii6BzSoa3Gh2apcFVtmWN82pNvD9Len81Fd3In\nIDONpOuPEjMi+8fEssU/fLWcK4j24rUiLV/59OfR02ecV1jaY8wKi3X1ku9j\nb0sqh7qYo11VB7Dz03I/WGaqQgMCEeCp2o14MFII8Z3kj4CZqZ8vWsqOjyJZ\n/XvBwJqljhfJdV+QlNZCXBWAyCA596wp9hjpLaLtANifb+wa6M1hV/Kb8Ynq\n9gF1VczgYcRD3foL5QbtiWimGIgQD3k89CAn90S5ykrzrkGpQ1z9oFFxnp9O\npm/2BH+TtEcTcAPF+QlEAtVw0xQXzLqNJY1LtxAL0z/F9nARNjBQ0xX6DXE5\nEUjUunSNndVvsNJ2wrmQ4bzJdw5OED1Aq5ggNEhw+CM9wQ3FobBj+2d+9uZk\nTFjZ\r\n=BTY+\r\n-----END PGP SIGNATURE-----\r\n","size":24470,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.16-alpha3_1637770035340_0.15031027647307948"},"_hasShrinkwrap":false,"publish_time":1637770035567,"_cnpm_publish_time":1637770035567,"_cnpmcore_publish_time":"2021-12-17T09:37:37.721Z"},"0.0.16-alpha4":{"name":"dommatrix","version":"0.0.16-alpha4","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build-ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:true,OUTPUTFILE:test/dommatrix.min.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"06d45675e6b40fd8b13f9d8f31352408fe9a9a96","_id":"dommatrix@0.0.16-alpha4","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-YWQNuyyVnJ90evT6TidsUri2ftqRBzLza3QMTbkOmbOWisBOE7kyVXxH9DC0lg5/UqNZyMAM8Ef8CTeWeKtIMg==","shasum":"18d65b3ea1389a625b325f8cb43e97ee01d04fd5","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.16-alpha4.tgz","fileCount":12,"unpackedSize":113692,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnmbxCRA9TVsSAnZWagAA3y8P/3m8sjbZVazPCUPYYdaA\nrixyf+PFMiBF9bnhHVY9mR1GESRvnaMZ1xBs8TubY85jPBAzArIVIlLCe6h1\naSmvQSIpBgqJhTXZTF8HoNV381Ym4TDAxbwgV+mu0NJo3Ko2Ks4G0We3OTEF\nsq56Rk0CYC+hjWgoNRlIXb0lfhj5w3MDAfbxpln8YcrNUNzkWF1WHBxVKeoA\n1hA7Ozz9ldzmw25hZmMpDulOE91Tv1KWpyu/4g8AG/94G9ZBqM94awlaKuhb\nHWB1Ah5Hm0DjBufb064vKfhutBli5rTC7hAnlcWk11/plRWg4e2syQbQv9NH\nB5N0cSg+xNIhfXHvEiDHlrscJ6jeo/L/1mQ4XhM3Ly7U4NhgLjZF6fxn+zLS\ngiT6NoqrrzevXYw66tyyvrPyvvyHdyq6Q+2HS5aWCauWIWBsc2QV3CraC8Fs\nrvEQnDPBOq+xH2WdbJTEy5rsXxUbDkUIICB4y3dYgNOSkAbvXB/l0U81PL0u\n+LsGxzFj+1552178oNRrD3dTIELNFI8/1DquYx+Dg78jZFlDWZsDyza9/hCv\nQsaRen6wXee7opMTotpg4QS3dlB1w4V/WVbnM19GqiOAqddso+BeUIFgLxpl\nk8pHZwPdL93Mk2aZh0x1NPEJg8z3fVz0pwywJ4Lhl88yHv9Q6WjVrflf2zJY\nhw0S\r\n=gqcd\r\n-----END PGP SIGNATURE-----\r\n","size":24490,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.16-alpha4_1637770993301_0.5868736954036784"},"_hasShrinkwrap":false,"publish_time":1637770993454,"_cnpm_publish_time":1637770993454,"_cnpmcore_publish_time":"2021-12-17T09:37:37.457Z"},"0.0.17":{"name":"dommatrix","version":"0.0.17","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/dommatrix.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"d60bf927a3181af7609dd2a0853223d16cd205fa","_id":"dommatrix@0.0.17","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-XEsJ19CcYZ8k/GQ+3P0QuC7tyeGuDEAsrPXETdchFHORoAatcoxlNoJZz2st/CfX+m7ay7Phs5wnMId0EktSMg==","shasum":"23de1523544862d72bc4973a7cf68ddd8b960794","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.17.tgz","fileCount":10,"unpackedSize":113323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhoi0nCRA9TVsSAnZWagAAi/oP/1NBn6EWyqyo3D1mSdIH\nRcscKtlhEO6vMQjXlT2cUbQz4v0P2Acnm2NlRJwDgroxeGQm7Hcsj1k+/RhK\no004hEEQW/ccNchkSmyhhrrjqekLjCyx5GrOx758GQA3RHh7k4T2s9px3UBw\nUmqxxlyU4Mv+/0fSdmRZCetsnLyaJEpjqgd3BRWvrWD/I0LeTyiI2lCf7K41\nzTskYSzxX4W6sTtkOswxIfyqKAZwmOHe7HaheoNdAy5Ul74GDJ73iCkGVJKD\nuXuh+XDDGzglDZXdqbavike8bn4IaCSdh9Dm8BdkYt7yqkFLrV9XKun0okal\nKgtDhKhl99CWU7jAorvZR8zsKpqFDVmkimLe4v03Dq+YpTClp+h4/o1N93BO\nf6/uT1/9EjLqwsqU3ROWJf+fcF90EtK973gk1KqBGWN8OODypSqLjwIhKF4C\nV2N8a+PtZa6oQNqzrStGg/IA7ceve6rhi8ZlV76Nk86km2dSrv5vwpnxp4Te\nNCcN9DpkiaxcpB+7hJ9n6W8HFYYyG+RLChYc19xlXsYdXJpAuLfW23fenkLx\nBZu+VLzpHlrfz1L7weeKDG/tiNfYoHsFKhpEtX81nzzD2Mhd+mJ7GDaPb4m5\nVwOn45a6miZmt28BKCy+lGVRuGBwtTxsX/bskr/EuSfzvWb7cB4hcdJYaULZ\n1lMr\r\n=FCyB\r\n-----END PGP SIGNATURE-----\r\n","size":24551,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.17_1638018343551_0.790555267357413"},"_hasShrinkwrap":false,"publish_time":1638018343819,"_cnpm_publish_time":1638018343819,"_cnpmcore_publish_time":"2021-12-17T09:37:37.224Z"},"0.0.18":{"name":"dommatrix","version":"0.0.18","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/dommatrix.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"984271509b61766a5bc6417518120f7a0d5db0a9","_id":"dommatrix@0.0.18","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-3PDO072QjNo9SQ3oMyEIFCiiacMnoww8O0jDQwQKT8L2nlWXN3CetCxz65uat1BmfPxyVhjTRA5wgsX0Hwv4fw==","shasum":"00cd2916d6b111c012697db19169c8cd487bf049","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.18.tgz","fileCount":10,"unpackedSize":113350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhojA9CRA9TVsSAnZWagAAa9sP/jss0yA/quIJ3jaRMnKI\nmp3ZeQ8zDdqnDv5tuhZ1MQvb8ZkacuhMO5uToJpJ8LJFt1FnnF8UT3ny4mBq\nEHBj6iL/+MrN66IeDrRL79Z5jl8o+Rdf7xIrus62vUL19umo0ezBZ7s3iIFN\nUeT1n2o9CnlKoiyGn9FbO7IHtGh54Kt/JahzHBFXW2PZ+WB4V9VGO0ZOq0el\n5OFrXMQyZExcQm2Z0nXlx0WoPGW9sIfSJMpxkj2roCs6ZAo4T9u7sTZfG0hx\n/i09y0D4NkoMq7H4YDNFol7IHWL96Qqk1Wq83hkl28KFVH6n3zajdHR8hVuf\n0lMBAcK9Hd3Vk85KKdc/eQ4SkNXnzJ9SJLQU7hT9rcLHm7nInRBi4k33ZniJ\nwemS4k0CAPZu/4+bxwHlHwTQJJ+Tw6poRMPkz3xoXI342MUP1Dxw2JmFHnC0\n9KZ8mcSUVObPBYqa4BT9WeaBThK1rfWrdVGNHs7cEfEeS+OS3Z2ZrJZhuZYx\nr5FqBoy+nNmIJNvemkNEh0gPjC7aPfT6ZK+08f0qwdR9gS5n5hpKkZ2/DqNW\nHXkeOIAXava3KpHev7Kfgz79wHezPGydohDwjqiLmGPDufWrykM4S0m4kdr1\nNyPM8Lz1eb+wrY6DcyaDP6ispvJNVcvBO+YUQcq2vgSyYVRoAKyGWg6NYHdE\nOfbY\r\n=Z2Jv\r\n-----END PGP SIGNATURE-----\r\n","size":24552,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.18_1638019133813_0.8909118793211979"},"_hasShrinkwrap":false,"publish_time":1638019133969,"_cnpm_publish_time":1638019133969,"_cnpmcore_publish_time":"2021-12-17T09:37:37.018Z"},"0.0.19":{"name":"dommatrix","version":"0.0.19","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.4.4"},"gitHead":"b33b14a53a185ef992cfdc07105ac913a9739d61","_id":"dommatrix@0.0.19","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-vDCyU5SBf0mW20r4nGiFveB+Gjsj56ZWGBHL0AsRGoV2EsN7s3gTVVHtKyRnLUoSbks6fjzpQQygT7tTcNpuhA==","shasum":"d892bf88223b555440050c75192d8eb08ca33b8f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.19.tgz","fileCount":12,"unpackedSize":114818,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhojvOCRA9TVsSAnZWagAAvs4P/3DKZxUViI7mA/gjnsQ0\nPsBvIvoGwKz1HBQykHRU2GETe7yCcbsianjG7yirUv69/KzSep3sBwgk/UY8\n1S0yc+p8lGOE1sh69hqqXs8b2RJUjxcp1EwsFBX8ymhKgZkZ/Gq9dG8oqBjh\ne1uO4VXFJOI/EDlLMUsxsDk5krsf15ho1yRdWuopCnprPCIQITjj0EAWy3V/\nXQY/viXjfTVeRJpSSF/ySKbrGDtRsjjde/j/EEEnFvN7yqL1o+kMJX8w+JPu\nnFd7TQZIcIE7FgAfktdDnhigGdBPr7g/pWicOkbPBnAf9KRfypEOqHeQ/9PB\nRVPXId/dBFFRYozlORkatVBa0jJ0i0WRvHsBgyBxcmguX5x9jiKhQdchwVhW\ncNW7Q0VdZL99PHddhAqf4X6fOqhusSMWrb+HAM25f/Pp3ez+uf5+9bt5Z+jd\nVMHqKQH/BQiLmhKcGphm0aXUW6El1jKiH/4pCEq0c92ACHqWB1NsuKFQhfd9\n9yUDOO7PxLuNe/5SrTde+fep5W8NQvo+myhAwzDIXVRIVbaUb9lpQtK26Cti\nYxTlhE1LipLswlKVoS4BpYfUKjgxezW2vc5xSnfCaqvT8DPGiPHjrmW/DYOH\nUjyRnWz6ckdy7cpegl3Ya1adlNRrn4x6oPTyR1orVy9s+ohmrfAout042H6g\nasMt\r\n=gUoD\r\n-----END PGP SIGNATURE-----\r\n","size":25186,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.19_1638022094203_0.7648807349538684"},"_hasShrinkwrap":false,"publish_time":1638022094354,"_cnpm_publish_time":1638022094354,"_cnpmcore_publish_time":"2021-12-17T09:37:36.768Z"},"0.0.20":{"name":"dommatrix","version":"0.0.20","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.5.2"},"gitHead":"e0fb1f5e1f047fed162b4d66a7154b9cc786aca8","_id":"dommatrix@0.0.20","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-FY9mmPCiQ3mo0pW4IbU1hzUVZW1ix7QgmlmxmFJM3ttbQeHufUXDdmlw0mTilskclxZC3WKjMxgdtupdQySaVg==","shasum":"81ad885957415d6d407fa2127e48984aa7311b03","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.20.tgz","fileCount":12,"unpackedSize":104288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpHsSCRA9TVsSAnZWagAAhZQP/1vP8lyeyx1QzqLovSYf\nYWmeR6/u67KOnkf1YFlXu7ANDXDUlI53frrH+Y1siH23aP1YJXvmrptTzXv+\nsflFORyJX6DcETBcZAa7aO3eIPKlkJQUXRB7IYC4D9GdkAf5Xsye6D5VhUlx\nKqMYg+sTBZG+7/dUrwMQZdHDE6OORi1mMxqErRnMRFLMmFWHLq9+uVt86yF5\nNiJOaywbPifO8dbOfAtVYDc6X0itEHLsh7aenoThDhJwmqlPJdaQBg8xFvvs\niEQVKvGweWgTRwpaeoLdqenOe6f3sV6xkG9zsGPmnnVPe/iicaTA2qUrT4IC\nZrWb9IMlub7fp6YJBANBDjpBELjnUym1vr3BT1SwcAYVUtaokm5eeaJhmSRE\nMYkNmXRaasXYz7WphjjWzses1KR48EPrmSPbOq+2AVE/UYrvGX7FnhaRVLoF\n0R9Evmy5h63q96mT5cpuGsfy/tqnN66XsLyzGjTEvMxtxsDwsKJlCbIOlkoo\nZcU2FB+faRl4wUWq8FMC0tjZBqgdwDdORQjWALwLOkG+cVEzQkA9t80jOP3b\n35fsA1Cfbx8US08MTEcN9GY4IUgVrk1G+O8Dxdr9UKsQGDKzDR+zvp3Wpdaj\nNbNaALZHg8L9/JevdEE39uCiZIS/7UYPEPyyFEYE4eY48Sl4nFB2LEEJ2xZ7\ngS14\r\n=6dtq\r\n-----END PGP SIGNATURE-----\r\n","size":24255,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.20_1638169362503_0.936637746374551"},"_hasShrinkwrap":false,"publish_time":1638169362630,"_cnpm_publish_time":1638169362630,"_cnpmcore_publish_time":"2021-12-17T09:37:36.507Z"},"0.0.21":{"name":"dommatrix","version":"0.0.21","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.5.2"},"gitHead":"ddc9000630e3f6b988c2d0548d5ec4e821feadf8","_id":"dommatrix@0.0.21","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-yEI2MOYDdPgETjU97EJOidnBk4KbohFvwoAPewuCNWCt4bTGSul7f41KfOI5qzBgvHkcE/il8t9usBNfIwPy3g==","shasum":"5afa332529cdade73b6ac17400f6bc095fdab81b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.21.tgz","fileCount":12,"unpackedSize":103246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpRrTCRA9TVsSAnZWagAACWAQAIbLoBvFrUTpn6BWUPej\ngli59nc6n7Iu2jGL4lqcKQdLYjZbfRsn/z+D6m/+1S1NpJxcVR3ol8FGsr+N\nTvheyu3qmxBZKJoX1XHT2t10bE6OWwhSeVvaQT5O9J2X2GDDMaIoZ0q2rOcu\n/JFrLCFr5/AtV8rYAOSkCdd1+kFkm3BvFnhP+LSMiB4tkvSaaNwZrPJ49DfX\n6xs9ddPZORAgqrP/jrbGK0JR/pc2BID5iXKiw6aGpzuPiRJh0TvJQtPd+t2N\nnLbsuJQ7Gds3c9/mGzgT5vgesRV7wLd3rm3iJXHuTOEjY/a1sYUVr8XolMtS\njXs5KUg6MXp+h40FdoQIWURtjnxJDHNkchODDT1M2DDOSxrC91wrvLfacrTM\nkP2o+ebOvimKNVCLl+GGSS5N14PynXoAbkzWmkNF1A8cwKg7pndhvy1LWHcx\n8iWQrzvZHhpDUSVfytboYijDQZ5b/6XsUhwpPFv6SVmIsLcx6qhxIObHRsUi\nWSrg5Z18zZrZqhxzFW3noRR/khcOPXDf156so0Wy/rpJkidxt4mf4gPntoP6\nnEQ4ARxe0kuvh5awQnrs9pU3X8AUkjN5amSiMBsyb9jAwjX5zY+TNVr0fHKu\n381arAjImARF8AK4t7yeSE3UdIWN9b1VWGQkoJp28PlWX6OG9mP+l436lhtc\noGso\r\n=EhUj\r\n-----END PGP SIGNATURE-----\r\n","size":23692,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.21_1638210259632_0.2718101501843553"},"_hasShrinkwrap":false,"publish_time":1638210259798,"_cnpm_publish_time":1638210259798,"_cnpmcore_publish_time":"2021-12-17T09:37:36.268Z"},"0.0.22":{"name":"dommatrix","version":"0.0.22","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dom matrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.5.2"},"gitHead":"4f7968e2ebfb9f4d0210e333485fa4222c9a5b7e","_id":"dommatrix@0.0.22","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-287kPpaO3XEpwQlqPD0o1OEPZgw6J/IG1ZjcbkLuCtjvwkzRBvXP9bhVpPYpF04Q0e1vC0iPhGQpgCQYWSu3Ow==","shasum":"4a330ae6a81a41c82d79bbfcfe787b771b7a01a3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.22.tgz","fileCount":12,"unpackedSize":103406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpsrFCRA9TVsSAnZWagAAIswP/jiLUflL6WGX1LN+ym8k\nvpPt906BAeXVRJKXCeLiorXWIpXSglYEfIZJ+U0YTyst0/c4EF0J1jWtIRMG\nRHKWLdyF/spon2y4CoIS1o5TzBQ7XcaUzZx3XcW9MFxn09WzeLJbgZUKKM7d\nzqbCNhwOhRjuw/oAHt38XT5G3yCnYa9l/OhX/Ts1g5IB0+Cc4LdHETTeKeYB\nhl++Gm7bjPEGlZhV/iSs4YOwrB4cfRZoTNyfUPWyyqyyO1UEH8YV4qz+2eoI\nlzCOHQzPYVA0Ie3CUi/2H+iBey/Ou1iYj2E6ZV3i0m0tpCqPoH7mTcNauLOh\nD7MYOJSGzIBJLpzxicKUx0a18ej25hiMwGn+ffFI4DFM/9gz9FoVUAV5w0G4\nmUBEm91dHMMlkIEiqxlIfmWu4VR0sp+kXcdmBtQaklP5HKVZ1s22AKjmPk9h\na4ttTclfy0rETkZ20aVVkrEI4GKVphw6BQOF2AUtb5Fhms+UbrG0T4wAJffP\n2lCnb5Ui9RIf//u3Q9mTDLpPZX5/jPfWDWV8ZF/LhBcmojP3HLbQFiwp9fDS\nuTChJ/F7exS5Lr4raNSub4H592c+RBfhY+jN5LeXyB6iLEFxbOMIsa6gOoft\nNohI39XPZ43JUE3+LHBXTc6ZLuyKJIhZlTdt91c7jvJOkFI0sh0XN8T/L3Xt\nfTRy\r\n=4RHu\r\n-----END PGP SIGNATURE-----\r\n","size":23735,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.22_1638320837457_0.48092308517671034"},"_hasShrinkwrap":false,"publish_time":1638320837796,"_cnpm_publish_time":1638320837796,"_cnpmcore_publish_time":"2021-12-17T09:37:36.027Z"},"0.0.23":{"name":"dommatrix","version":"0.0.23","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","dommatrix shim","dommatrix polyfill","dommatrix nodejs","dom matrix","cssmatrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/DOMMatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.5.2"},"gitHead":"19ada4bfeacbd4e9375b74f335aee2b8ca41a193","_id":"dommatrix@0.0.23","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-5rQGQz/amOfQmtSCTtbT4QPyVm9cLV7SgcAee2IOlQQDhyhbgQlEIb3k5Vk0GQHSMlPU7Na+FlZUAO2rflfUvg==","shasum":"8cd2c1ccd934503a05c4cc1ee8ec2cd8cfd5045c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.23.tgz","fileCount":14,"unpackedSize":116056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsuLmCRA9TVsSAnZWagAA6RoP/RPwmvWxCXGWJ63FAoV/\n4wPpafQ5BSR5PTTR0MQ5QG23xhWLv2enA9i9FaN5SQHMq6ew1WJ9jL76wEhI\nrd/51ywvoQ8KcjlAoW2j2qxYuXXYMbyoSQ+srRzk9DEFpYX2WAjXRMl69P/1\njlzdRWdz2uurX0W3Exs1v+FKxuGWxGWyOZLyqqf/tGUKyJvrtrU0cyBn2Htf\nKuPGiqhdUG0D0JXnvRcK+oLOikbMrX2xvBYnKw88xgQvpNYjAV7gVi8uyM8K\nCdH30UKeidShZY9PDw34kXbl2qQJiGmbRmEMc7uyiw6JQ6PIJyuDrJ8RQiCh\nWYWrLKtcbFOHUhosFLYJo5etnJ9hSwYg5vcbmRLIymKIX3G405kSgCfxMgpv\n8UgDmDRTgaEeXS4leMcJJ4ybyVaXooI94v7viQI6b3mEPbpiM7aZq4SNRpMw\nywS2DcKijYbgSwhrxGUzw0SxEH3y9eySq5Lb/qFcjb53HqqmQ9HzCrchmzAN\njaLefphoP0Y7PQ3iRlmAA9X57jSAGjGKNhAw1nDL3t4p4AABNOjsWRqNIOW9\nXdz1aPAhOghMupvciYrrMS1vR1pa6sXvj6gjrdCo2tEVZqP80dT5w+WbKeK4\njzD19y4MX/bDmZxaYVwEYe20GizEEfdlMeZ0o+iEEmkd+cU4/KiYF456n4q/\nno5E\r\n=tWD4\r\n-----END PGP SIGNATURE-----\r\n","size":25856,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.23_1639113446844_0.08381813787169934"},"_hasShrinkwrap":false,"publish_time":1639113446978,"_cnpm_publish_time":1639113446978,"_cnpmcore_publish_time":"2021-12-17T09:37:35.725Z"},"0.0.24":{"name":"dommatrix","version":"0.0.24","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run fix:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src/*.js --config .eslintrc --fix","lint:js":"eslint src/*.js --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-test":"rollup --environment FORMAT:iife,MIN:false,OUTPUTFILE:test/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","dommatrix shim","dommatrix polyfill","dommatrix nodejs","dom matrix","cssmatrix","css matrix","css transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/DOMMatrix/issues"},"homepage":"https://thednp.github.io/DOMMatrix/","dependencies":{},"devDependencies":{"@rollup/plugin-node-resolve":"^7.1.3","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.5.2"},"gitHead":"8ac0d323e2fe706e3158142eecc50e5483d81c29","_id":"dommatrix@0.0.24","_nodeVersion":"14.4.0","_npmVersion":"7.24.1","dist":{"integrity":"sha512-PatEhAW5pIHr28MvFQGV5iiHNloqvecQZlxs7/8s/eulLqZI3uVqPkrO7YDuqsebovr/9mmcWDSWzVG4amEZgQ==","shasum":"0b793da372992878b74c31f64ac85e7a13cb382a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.0.24.tgz","fileCount":14,"unpackedSize":115902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsvlQCRA9TVsSAnZWagAAG0gP/1g+waKL4rVmozF5amyq\nnDsRuUASqiBnTj9KeRUwXydhYsETAEuwXz8CnZv2O4GyN1R0h/IAE8K0fcQg\nEUYH4RT0r/VOIjIJ1hwqrKCB9myp48McddKFejthM7Unp+QOlWbvT40cyh3c\nAnODNbxrI2lrpveL/wqnzGmaA/X8FqEUgLp8oCky2oGR8T5l12tL8Vlmwm8K\niiUW54qhiuzsf6XVVEqIJ+HJwe0Ta+MV804G0DQoFwsbuI9b3nhvPqL8qLTW\n1j8RclXs4rWUFfTf3+1yictWLkUQwPn3tliOtSvrPWyopmAsVxTlpWcXNm84\nPfHPwp7NHE7ZX8pU39459e+sUwDo6XBx7/15dLaJWi8Lu2P7UFMmKjBBTdun\nV2JETMoO2mUTbtNEXCnZ2hSMFkRYiYAiEnVItJwWIzRBRnmGHL7/YJpqiI85\nHb1TW+0u7scBP/6dhTB78Ak/8z4sttrXbd/LM1xpZpy9yyBe+h4CxRrwpkdx\nQfwUzLHZVQkWeuomtac3wu0LnmjtQTALxB3gleXjYP06R9S4dzDzylHbe1S8\njwgYsTC24FQjMS5UJ1AuSK77qKt2NTMyO5PtsUC4qd+ghFGEyvpbkVlv3GRu\nuWn9C8DaGHuMXVnoctSexzvW9ERZSfPkI94eh5VKZCK1c69PXMLH3YB9tjNw\naYF0\r\n=HFTL\r\n-----END PGP SIGNATURE-----\r\n","size":25822,"noattachment":false},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.0.24_1639119184141_0.08533882076486088"},"_hasShrinkwrap":false,"publish_time":1639119184294,"_cnpm_publish_time":1639119184294,"_cnpmcore_publish_time":"2021-12-17T09:37:35.470Z"},"0.1.0":{"name":"dommatrix","version":"0.1.0","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"npx cypress run","cypress":"npx cypress open","coverage:report":"npx nyc report --include=src/*.js --reporter=lcov --reporter=json --reporter=text --reporter=json-summary","coverage:badge":"npx update-badge","build":"npm run lint:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src --config .eslintrc --fix","lint:js":"eslint src --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-docs":"rollup --environment FORMAT:umd,MIN:false,OUTPUTFILE:docs/dommatrix.js -c","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix/","devDependencies":{"@bahmutov/cypress-esbuild-preprocessor":"^2.1.3","@cypress/code-coverage":"^3.9.12","@rollup/plugin-node-resolve":"^7.1.3","babel-plugin-istanbul":"^6.1.1","check-code-coverage":"^1.10.0","cypress":"^9.5.4","esbuild":"^0.14.30","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","rollup-plugin-terser":"^5.3.0","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","typescript":"^4.5.2"},"gitHead":"7cf961976a9b20e0565ad87efbb1acdabe7e4511","_id":"dommatrix@0.1.0","_nodeVersion":"16.14.2","_npmVersion":"7.24.1","dist":{"integrity":"sha512-k8eC2xq8amQoD8jxRViAnV8wdqawcSiVEYhDnSKy/vBEYgCzuFdZTlfvEguTkLwcVWI67LBwI+I0Umq27jbyHA==","shasum":"3594116ee595d2bbafbde23028312b861b39d137","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.1.0.tgz","fileCount":14,"unpackedSize":122193,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCviR6y61R/boRFo3qL7ANYrel9nGEjzFG8F+OYqpbDugIgajlqzzPJ7XlFelJ6ajStcxApZRwq8ZrzjFzne1MdiGs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYr1JACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrcrxAAlZJsIeJZku3XP2i98XpV75C/Va9AjNMc4yjUs53jUDnzga1D\r\nxE3XWcK3jVCADfn8YijXB56ZWp6Mlm33vgz9n1zrhfPPmLkbJHWqQY6i+FMu\r\nPd6RKEaV2jczyaALn3w1dWkGEE7W2uOmL/1V3h5azGk9g+A0FYOa32hwx7fm\r\nI247niq/UJEzBHQXLouDPc7VLbC7vpVJQSe7QyYh9og+dunp9P6xyvss4A1/\r\nHeTguWCKYN6i5MGWur2WHL1z5OQAkR5I+41Ntd1uqpEoWH5m/Kz0BHxQnq7U\r\nskgOtCn+ijYM3AdnYYNE/RXTZMTh9OJKragYuXnxG3mL3aXYf8Ndy/OZEi9U\r\nbZO7jvFNIIr5WgEWPfKZLrcV+i4ghwWTrikKsTAoD0WhKPzUnJtAaOA2SCdk\r\nuk1FJcP+FRmJDNTVSQ9vIzI6FieN7IftXHk/uczCvqMMwuK2+xM2hJgSbLis\r\n5hzoiTItCs9OAEiI1Qi02JO2qE2umOZaM6DcOTn4sroXeq8QjFSs9BAw26qY\r\nyoSuOuryO6r9z2Kkj9b3FqWCHq+YZP9GVuBgEBQ+w4Mjsu5vGh1rQM4SsKWm\r\nFlCjxOYQbCFJMm9+nqB80mrTR+tqyItgI/j/oDwn2MdUIUm8esmRc5tkH5w1\r\nF3GObzLaV12m47aLGxZpLyAJdjmQd1Nz3Uo=\r\n=ACUC\r\n-----END PGP SIGNATURE-----\r\n","size":26387},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.1.0_1650638153686_0.07587473930195676"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-22T15:03:53.018Z"},"0.1.1":{"name":"dommatrix","version":"0.1.1","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"npx cypress run","cypress":"npx cypress open","coverage:report":"nyc report --include=src/*.js --reporter=lcov --reporter=json --reporter=text --reporter=json-summary","coverage:copy":"ncp coverage/lcov-report docs/lcov","build":"npm run lint:js && npm-run-all --parallel build-*","custom-build":"rollup -c --environment","fix:js":"eslint src --config .eslintrc --fix","lint:js":"eslint src --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","build-umd-docs-copy":"ncp dist/dommatrix.js docs/dommatrix.js","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix/","devDependencies":{"@bahmutov/cypress-esbuild-preprocessor":"^2.1.3","@cypress/code-coverage":"^3.9.12","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","cypress":"^9.6.0","esbuild":"^0.14.30","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","ncp":"^2.0.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-terser":"^5.3.0","typescript":"^4.5.2"},"gitHead":"9b5e06e243db5b94ca071411686ecf3ba1df7aae","_id":"dommatrix@0.1.1","_nodeVersion":"16.14.2","_npmVersion":"7.24.1","dist":{"integrity":"sha512-45CQT2bjnN9DXF07PXgG7hfQ2r8a6trrupNuTizRzfLHWWujdebAx8Xry0CB5uVBQlQY/m0TE/Whe5nrua+lsQ==","shasum":"8a59d79b468c22cd667e5db4d6ca1960c0ebbece","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-0.1.1.tgz","fileCount":14,"unpackedSize":122167,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIErU8p65DAF3U9LkyJP7iSit8XIcTj4mnZ/xEqxHaVOTAiArW/txJNhNdBEO4qDofCzgfXgjM3LZAMVmXI1aTwyEvA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaOfyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3QxAAmPn6KmmWBWygA4NS4RP4DSVEGRpZseOCMq1EJm2faY3Vy2mV\r\nBoLuKfGwdm3o4FpG80wGTIrpIyyBGvYo0KDWbv/KuWAAa/J2rgz05sHPV2sG\r\n0jr+AGY9ITAT00A4UDKA6wDzbko3uT6i9cuHp6XzLV3RFxppIpOh3jcxYpRi\r\nHQ8J3+7Uq2qcr9aQirsLE91T5V16O/FxPt40kRIWEtCt7+0Zdcw55C3BZNJv\r\nAB8klYlX6SKaQOpKuzZiu3JolFIUKBXkE455CV45C/B6cirqpf67CG5fbH+U\r\nj15heRWJ4/FHntKlbPAkqrEYvJhu3PcOFtIVjr4jzLkvPEsdG943pk75i6i0\r\nT1Nnd8KxipYT8K6sgt8TRbIMfXrIRAEiXmOukHJsVnlKuFYIivSVpcUrQB1F\r\nCeWQ7s329tVvQI+duTd2en7TZUkOtZF4ayOYlVG3m4IkIJI/oENOz7wSLlH8\r\nHjqpL0jpwcRlaCKa+Jj3hDkbvbqY6bXKucNWgmj8dtofPFM//O4EVQ/bsfno\r\n0gSJMx3ZwJ8a7b4tfV5M1sirUjCOYOk1sNQjgDAtldkAXiE7r5y1dAUFQlQV\r\ncNw87QBFi/z0l+4y3CT4hj39InRkoHhOPso5l5HClAhJd0c0g/6I8fQKDk9l\r\nz9JcjYTkUBvxMmv3YvdYWdnVN87APZq5+Uw=\r\n=BtDA\r\n-----END PGP SIGNATURE-----\r\n","size":26370},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_0.1.1_1651042289798_0.560036943147219"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-27T06:51:59.462Z"},"1.0.0":{"name":"dommatrix","version":"1.0.0","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"npx cypress run","cypress":"npx cypress open","coverage:report":"nyc report --reporter=lcov --reporter=json --reporter=text --reporter=json-summary","build":"npm run lint:js && npm-run-all --parallel build-* && npm run docs-copy","custom-build":"rollup -c --environment","fix:js":"eslint src --config .eslintrc --fix","lint:js":"eslint src --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","docs-copy":"ncp dist/dommatrix.js docs/dommatrix.js","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix/","devDependencies":{"@bahmutov/cypress-esbuild-preprocessor":"^2.1.3","@cypress/code-coverage":"^3.9.12","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","cypress":"^9.6.0","esbuild":"^0.14.30","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","ncp":"^2.0.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-terser":"^5.3.0","typescript":"^4.5.2"},"gitHead":"8994e5fd9c419bf4f4126b53ec53a170d36d8dcb","_id":"dommatrix@1.0.0","_nodeVersion":"16.14.2","_npmVersion":"7.24.1","dist":{"integrity":"sha512-s/DnSR05Jbipg1CBysGnIIL1SRmy/wYe6tO75E8gGlRATSJD7B+cdKZwtw+UsM0GJjz+Apw+L2x2hktd5iVy8A==","shasum":"f875cff7689e148685e1932c7d092251ddd96285","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-1.0.0.tgz","fileCount":14,"unpackedSize":122126,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFeSqBZLTQDITylLVnJrfAFNyxTRE+3xTOQOjpTuCgBjAiAvE49GknmS+eSHl9R6OANxUS1ovSfDUPL5b2evVrRYog=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaTiSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo65Q/9FLjrpZsovnjtPBGkvDS2WZes5tOZvte3CgZaax8QJFe7up9/\r\nNoQCRwK14D9BRB9c5iPh9sp0IcYe4T10N4MIhNkxMuH4Xt52Pt0rSs/WquRR\r\n1R/iXjaSl8HnbDpPTx+vZfNreK/3990sq1PMirr882cyOBbP4ZyOR58r+DD/\r\n7oTMIYYMsziqktkpAGqAVREDFY7AAalyUNlr7uL3iQIqWy7MVY2ExZ/8Zacp\r\n1xrHLnkLrK4uhmEoLUBtNYFUmAN0wIG+6DJPhbqeLC+HiV+mvIEOJMetwqQQ\r\nXrDcqrfmBDFnDj/4Iiqk/6d+gBw0aXELeF4CnE9nbM8p5YvCxio8osnOo8kU\r\neOtrWJJvGdZ7V785bJTZsyNisikKioS7U1uI5G7Oiw6+mN6vwJxqOx29LpET\r\ng9RXqPmZPdhWzqpRE09Lvlcpmu7PCe83noS++ReP5hJpaXTMzJIv8urlnP9M\r\nRGfqd7q7eAbKm02Q3unfb7ds/MPBtIlmEF/wS5OTw8KPTNAZ41NVw8AbUGgZ\r\nHH9VdS5m95DeFkkMzVhO35niE60hhDn/TuiYe2AbSUZBVcRVS23RTDmVPXrP\r\nUjtI9pk/CoQXmUg+bPTWyP3isM6J9SQD6CNdsCSphFuxMlTUlCv4AOlOsPOy\r\ng+USF3YVrcMu+nvSU/YVlsEOXPOP6bZKjOo=\r\n=zjAD\r\n-----END PGP SIGNATURE-----\r\n","size":26360},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_1.0.0_1651062930173_0.06401975946325855"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-27T12:48:31.709Z"},"1.0.1":{"name":"dommatrix","version":"1.0.1","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"npx cypress run","cypress":"npx cypress open","coverage:report":"nyc report --reporter=lcov --reporter=json --reporter=text --reporter=json-summary","build":"npm run lint:js && npm-run-all --parallel build-* && npm run docs-copy","custom-build":"rollup -c --environment","fix:js":"eslint src --config .eslintrc --fix","lint:js":"eslint src --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","docs-copy":"ncp dist/dommatrix.js docs/dommatrix.js","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix/","devDependencies":{"@bahmutov/cypress-esbuild-preprocessor":"^2.1.3","@cypress/code-coverage":"^3.9.12","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","cypress":"^9.6.0","esbuild":"^0.14.30","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","ncp":"^2.0.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-terser":"^5.3.0","typescript":"^4.5.2"},"gitHead":"b512d182612c28b6b9f19e39c7bbe6db5a7eecc5","_id":"dommatrix@1.0.1","_nodeVersion":"16.14.2","_npmVersion":"7.24.1","dist":{"integrity":"sha512-Hb84GjQ+9TDObqytl+tfB+oM7JL/8hWUuc6bxv4DWeXXeAOE4+jeYyYy1fmR9wMNaNhZ1fjWcrwoz8kBzyEuCQ==","shasum":"f05fc33fe025aeb6e872a670aa99c9dcda56e4c9","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-1.0.1.tgz","fileCount":14,"unpackedSize":122108,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3rSTpRws5RWvebYVAGXfA4jwAmPzN5eE6PBwSmEbT4QIhAM6ExNM/Ad92jSUULs8KipNIOf0Le6YKhs5HTUV4HiJG"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaWwgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrkuw//c8383TcpabX4kZE4expexezTygNSCgIqd2IUkqBtxeh9TQ3P\r\nk/RpwCXjExHCisICyMUqA/fJPgC+eFc6yCGUb3D9mvmQQ6KBR47hs4X4lx5n\r\nH5TeJVLQyASOVPa2CF11cYORnZGcnExr7WrWbGRB1yUGi8AmYFkE4nzO/7po\r\nsDrBteeVSrcm0LS0F2v+RgPlbYNLUEFMZHuu5amSyaZrnhP7h9XFrjBjvR7V\r\nAEO8wW2Pm8zncw3pwhlqB3SI9jacK8pDeQQaap7X3CLtkA+fcxkAcLA2RtEK\r\nodCy8gooVrJt9gT+MqtshTQbU4kuNO1IvLfdDfCoZivbPDGuhi2guyhKeFue\r\nT3daFw1wQyjrVDeXW5Ilnpn6i78bFgSh53cdm19MSlrtUhF/Ji7HqJs63ose\r\nsBHOw61lkR08igcXPzJOBIGxP3iARb394iLte7BYPsnJT8RLQ8JLzrRTduI2\r\nViafrJgwmUxGdFQ+N/dK9EmE3KOcF9oLYRi6DdeJ129dOghVs6DYiDxYvyhT\r\nlId894xfdw2ziUzhYbg69TBMyfWlhCRssNTDGlo/Lmv5l04lhD8I2dImUc50\r\nGkzgVqCBJ0kAy3OgyV2ypQfuZA7b7wz4mNYeezxqiuAzVfnYpFBYRBq49o2A\r\neKso8Ow54WkxG0xAQACgiceZb79DgG2nHm0=\r\n=wgqx\r\n-----END PGP SIGNATURE-----\r\n","size":26355},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_1.0.1_1651076128138_0.9782610161757466"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-27T17:58:43.668Z"},"1.0.2":{"name":"dommatrix","version":"1.0.2","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"npx cypress run","cypress":"npx cypress open","coverage:report":"nyc report --reporter=lcov --reporter=json --reporter=text --reporter=json-summary","build":"npm run lint:js && npm-run-all --parallel build-* && npm run docs-copy","custom-build":"rollup -c --environment","fix:js":"eslint src --config .eslintrc --fix","lint:js":"eslint src --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","docs-copy":"ncp dist/dommatrix.js docs/dommatrix.js","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix/","devDependencies":{"@bahmutov/cypress-esbuild-preprocessor":"^2.1.3","@cypress/code-coverage":"^3.9.12","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","cypress":"^9.6.0","esbuild":"^0.14.30","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","ncp":"^2.0.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-terser":"^5.3.0","typescript":"^4.5.2"},"gitHead":"0dae400a783e41663b7102635a36f2afe0183460","_id":"dommatrix@1.0.2","_nodeVersion":"16.14.2","_npmVersion":"7.24.1","dist":{"integrity":"sha512-czn3w9UorDpN1KnRaTmQWSVvAsjznm/sSAyr1dYGVMyLg+mLn8z54bxdy7UEMLLPGK+yi1kYAp02HYZfC8VHOg==","shasum":"cf79c2d1acbe49b0753d647b59280e46508a835b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-1.0.2.tgz","fileCount":14,"unpackedSize":122103,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCF/DS4zXbWeaSLGBoSpB3dNQ/X4ExpIthk1ebJgJYycgIgJeX3Iwhh8mFABjM7aHffEbFvBo+jgUi/LvyqpPmwZHg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieUGmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqDpA/9Hu1FjArVrCXqvt+wN00nYiwx6+4nMHm8DOmGg61nCEzZpEvg\r\ne/uTap5g4LyqIKmTsTYIho7Mh581toCC7/HsKjoKQ0OS2WMVA/TAShRH43U9\r\np/M2OW74CHeytoeC7w4C/CMF5eofXhl6F5XMxsjWCXStQTMvIxrdSRE48e5l\r\nSIcXqODxnC4num74Ar1iQoIaOQD+Y8BaORdUUxEALNTiq20o+HIYFSLxH362\r\n6U9aLYUKyGw8uELd/CyGKTtzcN2N2vufyMpKmL4j6U9VXxmQOTBa/hzyw0JP\r\nZnMkcEVo06V0RQ4APyuXdqIux3oFnhr0RoTKLSiASzkdygmI0Hc4xB7sNiyD\r\nR/DiIVZFO/1/Z9yyQ90B92VxKNsA/OWAhPfp9SjKEwjxJXzxIQh6Z69HYzs2\r\nu96iSkiWsPKAo0eQKoAUtfOQxyxgQAlaxHnAOwpbQr9BO5PUubRv6m7NZxEx\r\nU6l+82AttXNySG5Rj09U59Pnj5E701Qdjx7PsHs0zZ62hGfxu/8/+sJ4wdZ0\r\n/C3b+6CQbBO1qbdsumqU8wzDNziXI58wI3BcTpVlp6ayC6YD1COcXL9cqcXe\r\nxnw0gxLuxnvhLJBYbcm0puNwztiSmyUFYltR3Y+oaMOXT9jeUe6fitWcjL0o\r\n239vRVecGKFC/proIjApK1hjbvrPDjBOrz0=\r\n=NG4h\r\n-----END PGP SIGNATURE-----\r\n","size":26352},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_1.0.2_1652113830287_0.8164374285893821"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-09T16:32:25.539Z"},"1.0.3":{"name":"dommatrix","version":"1.0.3","description":"ES6+ shim for DOMMatrix","main":"dist/dommatrix.js","module":"dist/dommatrix.esm.js","types":"types/index.d.ts","jsnext":"src/index.js","scripts":{"test":"npx cypress run","cypress":"npx cypress open","coverage:report":"nyc report --reporter=lcov --reporter=json --reporter=text --reporter=json-summary","build":"npm run lint:js && npm-run-all --parallel build-* && npm run docs-copy","custom-build":"rollup -c --environment","fix:js":"eslint src --config .eslintrc --fix","lint:js":"eslint src --config .eslintrc","build:ts":"tsc -d","build-js":"rollup --environment FORMAT:umd,MIN:false -c","docs-copy":"ncp dist/dommatrix.js docs/dommatrix.js","build-js-min":"rollup --environment FORMAT:umd,MIN:true -c","build-esm":"rollup --environment FORMAT:esm,MIN:false -c","build-esm-min":"rollup --environment FORMAT:esm,MIN:true -c"},"repository":{"type":"git","url":"git+https://github.com/thednp/dommatrix.git"},"keywords":["dommatrix","cssmatrix","shim","polyfill","nodejs","dom","css","transform","javascript"],"author":{"name":"thednp"},"license":"MIT","bugs":{"url":"https://github.com/thednp/dommatrix/issues"},"homepage":"https://thednp.github.io/dommatrix/","devDependencies":{"@bahmutov/cypress-esbuild-preprocessor":"^2.1.3","@cypress/code-coverage":"^3.9.12","@rollup/plugin-buble":"^0.21.3","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^7.1.3","cypress":"^9.6.1","esbuild":"^0.14.30","eslint":"^7.22.0","eslint-config-airbnb-base":"^14.2.1","eslint-plugin-import":"^2.22.1","eslint-plugin-vue":"^7.7.0","ncp":"^2.0.0","npm-run-all":"^4.1.5","rollup":"^2.28.1","rollup-plugin-terser":"^5.3.0","typescript":"^4.5.2"},"gitHead":"96029637b54264de452099dedbad684dc18bbc4e","_id":"dommatrix@1.0.3","_nodeVersion":"16.14.2","_npmVersion":"7.24.1","dist":{"integrity":"sha512-l32Xp/TLgWb8ReqbVJAFIvXmY7go4nTxxlWiAFyhoQw9RKEOHBZNnyGvJWqDVSPmq3Y9HlM4npqF/T6VMOXhww==","shasum":"e7c18e8d6f3abdd1fef3dd4aa74c4d2e620a0525","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/dommatrix/-/dommatrix-1.0.3.tgz","fileCount":14,"unpackedSize":122160,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCSyiIXIg/RBKti8evDeE/aK8hH/hFyCoGTNcG+5EuOCAIgC5oH9ZbtJJjjzXAo7ja+RNz6Rar9eZ0oBYeWXeiCC0A="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieljZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHKRAAjOk2WjrS9oEHTxoCxvXmHb0oQt2OjEgXcruIJiiV0iI7fGg2\r\nETheyJg1KNb4+73SodaN3ecS2c6wzYDdYa3kM33lSri2vrFdWxKZ+NNhS/39\r\nVRQ1d9H7MEAk3OQyeRCJ1+p4kWP4EqutoBWd5Yd0avdFjz+O+Zz97z5WSqNA\r\nnm2UYY4pZiTQB5RESRyzT+PD1GsBBmVAIQcdaGnNjtB6om5QQClpac12UdNt\r\nbMZyv3uuIq+gQRiOOxaG859rKWJKk6YcGMmOA9zH50uEFzokb8vugqupsO4t\r\ntvdzqQNp52RoBwEjAxZ50nHybP9D0tNAIJnTwft6NNzqNbH6IsybhGpLmNuF\r\n8Z5SF6P4+Q1UWEPWUUTyoSDlSqS8BXkxoNCWGZaiMh5TAkr2NGvE8roy+I76\r\nJzp0vG9Nbzi8NgGWc7PDTPwaox4oJCR26LwvXg+Y5BookPb0XB0gnr6uoLVK\r\nc/zTt+WJjfthyceXxQSEV0gTcuqNaIrcM6t7U2VGZG69O2nBu3QIe1J/8vZE\r\nW1VbXjdlZtw1oDXt2lAkr/kNrHDgiN6lZOSWWQEiUNdFqvOaUK1KE1bZVrg6\r\nOyeeHBi11dZBkmgg031MI3PTHHFMrzrn6Fejic1dofZy04OlqBzDOLh9g7UD\r\ngD9pHeQzhGiqlmS4hce33NsXiV7TWelBVvE=\r\n=YjcC\r\n-----END PGP SIGNATURE-----\r\n","size":26405},"_npmUser":{"name":"thednp","email":"dnp.digital@gmail.com"},"directories":{},"maintainers":[{"name":"thednp","email":"dnp.digital@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dommatrix_1.0.3_1652185305558_0.367686416524833"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-10T14:25:35.499Z"}},"name":"dommatrix","time":{"created":"2022-01-27T10:57:41.906Z","0.0.1":"2020-09-10T21:55:18.277Z","modified":"2022-09-26T02:58:43.721Z","0.0.2":"2020-09-11T05:38:01.683Z","0.0.3":"2020-09-11T05:58:06.533Z","0.0.3-a":"2020-09-12T05:07:49.217Z","0.0.3-b":"2020-09-17T10:56:22.237Z","0.0.3-e":"2020-09-20T21:37:49.855Z","0.0.3-f":"2020-09-21T06:52:19.577Z","0.0.4":"2020-09-21T12:24:16.671Z","0.0.4-a":"2020-09-22T02:48:56.279Z","0.0.4-b":"2020-09-22T03:00:41.870Z","0.0.4-c":"2020-09-22T10:00:48.879Z","0.0.4-d":"2020-09-22T20:31:17.447Z","0.0.4-e":"2021-01-12T04:54:46.314Z","0.0.4-f":"2021-02-02T19:55:08.160Z","0.0.5-alpha1":"2021-03-25T18:05:02.813Z","0.0.5-alpha2":"2021-03-27T05:57:17.751Z","0.0.6":"2021-05-31T07:36:20.417Z","0.0.7":"2021-11-13T11:53:16.713Z","0.0.8":"2021-11-13T16:00:02.981Z","0.0.9":"2021-11-18T20:11:00.593Z","0.0.10":"2021-11-19T19:33:07.745Z","0.0.12":"2021-11-21T17:19:00.226Z","0.0.13":"2021-11-22T05:52:39.702Z","0.0.14":"2021-11-23T06:21:09.262Z","0.0.15":"2021-11-23T11:34:26.323Z","0.0.16-alpha1":"2021-11-24T14:21:15.787Z","0.0.16-alpha2":"2021-11-24T14:43:13.314Z","0.0.16-alpha3":"2021-11-24T16:07:15.567Z","0.0.16-alpha4":"2021-11-24T16:23:13.454Z","0.0.17":"2021-11-27T13:05:43.819Z","0.0.18":"2021-11-27T13:18:53.969Z","0.0.19":"2021-11-27T14:08:14.354Z","0.0.20":"2021-11-29T07:02:42.630Z","0.0.21":"2021-11-29T18:24:19.798Z","0.0.22":"2021-12-01T01:07:17.796Z","0.0.23":"2021-12-10T05:17:26.978Z","0.0.24":"2021-12-10T06:53:04.294Z","0.1.0":"2022-04-22T14:35:53.897Z","0.1.1":"2022-04-27T06:51:30.140Z","1.0.0":"2022-04-27T12:35:30.374Z","1.0.1":"2022-04-27T16:15:28.404Z","1.0.2":"2022-05-09T16:30:30.447Z","1.0.3":"2022-05-10T12:21:45.772Z"},"readmeFilename":"README.md","homepage":"https://thednp.github.io/dommatrix/"}