{"maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"keywords":["style-to-object","inline","style","parser","css","object","pojo"],"dist-tags":{"latest":"1.0.14"},"author":{"name":"Mark","email":"mark@remarkablemark.org"},"description":"Parse CSS inline style to JavaScript object.","readme":"# style-to-object\n\n[![NPM](https://nodei.co/npm/style-to-object.png)](https://nodei.co/npm/style-to-object/)\n\n[![NPM version](https://img.shields.io/npm/v/style-to-object)](https://www.npmjs.com/package/style-to-object)\n[![NPM bundle size](https://img.shields.io/bundlephobia/minzip/style-to-object)](https://bundlephobia.com/package/style-to-object)\n[![build](https://github.com/remarkablemark/style-to-object/actions/workflows/build.yml/badge.svg)](https://github.com/remarkablemark/style-to-object/actions/workflows/build.yml)\n[![codecov](https://codecov.io/gh/remarkablemark/style-to-object/branch/master/graph/badge.svg?token=XWxph9dpa4)](https://codecov.io/gh/remarkablemark/style-to-object)\n[![NPM downloads](https://img.shields.io/npm/dm/style-to-object)](https://www.npmjs.com/package/style-to-object)\n\nParse CSS inline style to JavaScript object:\n\n```js\nimport parse from 'style-to-object';\n\nparse('color: #C0FFEE; background: #BADA55;');\n```\n\nOutput:\n\n```js\n{ color: '#C0FFEE', background: '#BADA55' }\n```\n\n[JSFiddle](https://jsfiddle.net/remarkablemark/ykz2meot/) | [Examples](https://github.com/remarkablemark/style-to-object/tree/master/examples)\n\n## Installation\n\n[NPM](https://www.npmjs.com/package/style-to-object):\n\n```sh\nnpm install style-to-object --save\n```\n\n[Yarn](https://yarn.fyi/style-to-object):\n\n```sh\nyarn add style-to-object\n```\n\n[CDN](https://unpkg.com/style-to-object/):\n\n```html\n<script src=\"https://unpkg.com/style-to-object@latest/dist/style-to-object.min.js\"></script>\n<script>\n  window.StyleToObject(/* string */);\n</script>\n```\n\n## Usage\n\nImport with ES Modules:\n\n```js\nimport parse from 'style-to-object';\n```\n\nRequire with CommonJS:\n\n```js\nconst parse = require('style-to-object').default;\n```\n\nParse single declaration:\n\n```js\nparse('line-height: 42');\n```\n\nOutput:\n\n```js\n{ 'line-height': '42' }\n```\n\nParse multiple declarations:\n\n```js\nparse(`\n  border-color: #ACE;\n  z-index: 1337;\n`);\n```\n\nOutput:\n\n```js\n{ 'border-color': '#ACE', 'z-index': '1337' }\n```\n\nParse unknown declarations:\n\n```js\nparse('answer: 42;');\n```\n\nOutput:\n\n```js\n{ 'answer': '42' }\n```\n\nInvalid declarations/arguments:\n\n<!-- prettier-ignore-start -->\n\n```js\nparse(`\n  top: ;\n  right: 1em;\n`); // { right: '1em' }\n\nparse();        // null\nparse(null);    // null\nparse(1);       // null\nparse(true);    // null\nparse('top:');  // null\nparse(':12px'); // null\nparse(':');     // null\nparse(';');     // null\n\nparse('top'); // throws Error\nparse('/*');  // throws Error\n```\n\n<!-- prettier-ignore-end -->\n\n### Iterator\n\nIf the 2nd argument is a function, then the parser will return `null`:\n\n```js\nparse('color: #f00', () => {}); // null\n```\n\nBut the function will iterate through each declaration:\n\n<!-- prettier-ignore-start -->\n\n```js\nparse('color: #f00', (name, value, declaration) => {\n  console.log(name);        // 'color'\n  console.log(value);       // '#f00'\n  console.log(declaration); // { type: 'declaration', property: 'color', value: '#f00' }\n});\n```\n\n<!-- prettier-ignore-end -->\n\nThis makes it easy to customize the output:\n\n```js\nconst style = `\n  color: red;\n  background: blue;\n`;\nconst output = [];\n\nfunction iterator(name, value) {\n  output.push([name, value]);\n}\n\nparse(style, iterator);\nconsole.log(output); // [['color', 'red'], ['background', 'blue']]\n```\n\n## Migration\n\n### v1\n\nMigrated to TypeScript. Iterator excludes `Comment`. CommonJS requires the `.default` key:\n\n```js\nconst parse = require('style-to-object').default;\n```\n\n## Release\n\nRelease and publish are automated by [Release Please](https://github.com/googleapis/release-please).\n\n## Special Thanks\n\n- [inline-style-parser](https://github.com/remarkablemark/inline-style-parser)\n- [Contributors](https://github.com/remarkablemark/style-to-object/graphs/contributors)\n\n## License\n\n[MIT](https://github.com/remarkablemark/style-to-object/blob/master/LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/remarkablemark/style-to-object.git"},"bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"license":"MIT","versions":{"0.1.0":{"name":"style-to-object","version":"0.1.0","keywords":["inline","css","style","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.1.0","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"77abec7b3d635ba54529c2d609bf43370d776b95","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.1.0.tgz","integrity":"sha512-YwKphspKUCPonp+N9f8w37XCjZ1Dcfwq0iVw2dXpIn15XriDOXaBfm8WAwRNnPFLAIFducAO1xg7BUSIvq0hbA==","signatures":[{"sig":"MEUCIQCW3WkfhKXkk8YDPluDmnif8I+bqpoAmvdMYFnvAt2mOgIgAtM4R3sknyVQ/fD+wx6W/Io8x5SjBw+rbmPEKJwjlvY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"b3312d1c1ee011c675cbc841375a75b06115ac31","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha","build":"npm run clean && npm run build:min && npm run build:unmin","clean":"rm -rf dist","cover":"istanbul cover _mocha -- -R spec \"test/**/*.js\"","release":"standard-version","build:min":"NODE_ENV=production rollup --config --output.file dist/style-to-object.min.js","coveralls":"cat coverage/lcov.info | coveralls","build:unmin":"rollup --config --output.file dist/style-to-object.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"5.5.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"8.9.1","dependencies":{"css":"2.2.1"},"devDependencies":{"mocha":"4.0.1","eslint":"4.11.0","rollup":"0.51.5","istanbul":"0.4.5","coveralls":"3.0.0","uglify-es":"3.1.9","standard-version":"4.2.0","rollup-plugin-uglify":"2.0.1","rollup-plugin-commonjs":"8.2.6","rollup-plugin-node-resolve":"3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object-0.1.0.tgz_1511478555961_0.03162869717925787","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"style-to-object","version":"0.2.0","keywords":["inline","css","style","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.2.0","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"2a5a4fa1fca9bbdb5b07e1668231af6c3a54c6dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.2.0.tgz","integrity":"sha512-fEi+9vGySC10juquzZMFf4PVVqfh1BN9Ur57MgxoBBerG1MLAtKQTXH3fdcngsR7gEMpIfU2cYEtH5V5ZAWqWQ==","signatures":[{"sig":"MEYCIQC2IAbrhq085daf6ppLI92rP62RSR73olKzm8NrGnjLhQIhAIklAV32lGaDIaDtjxphC8+rZr+D35Ra83WIaoh4WpUL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"ebcfc7e161bcae2c82f57c20140fc1965b82b8b9","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha","build":"npm run clean && npm run build:min && npm run build:unmin","clean":"rm -rf dist","cover":"istanbul cover _mocha -- -R spec \"test/**/*.js\"","release":"standard-version","build:min":"NODE_ENV=production rollup --config --output.file dist/style-to-object.min.js","coveralls":"cat coverage/lcov.info | coveralls","build:unmin":"rollup --config --output.file dist/style-to-object.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"5.5.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"9.0.0","dependencies":{"css":"2.2.1"},"devDependencies":{"mocha":"4.0.1","eslint":"4.11.0","rollup":"0.51.5","istanbul":"0.4.5","coveralls":"3.0.0","uglify-es":"3.1.9","standard-version":"4.2.0","rollup-plugin-uglify":"2.0.1","rollup-plugin-commonjs":"8.2.6","rollup-plugin-node-resolve":"3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object-0.2.0.tgz_1511673431363_0.78108343295753","host":"s3://npm-registry-packages"}},"0.2.1":{"name":"style-to-object","version":"0.2.1","keywords":["inline","css","style","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.2.1","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"91529ed03a7996aa8ce89274766262984912bbbf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.2.1.tgz","fileCount":7,"integrity":"sha512-mcnT4z0KAYuphq1qXeAzqo0N3CPLNY2nSMODKXEZP8CqL2nWciEaiPx0cfsYNF7Nejc/Zyk9SU5UoFO+XCt8FQ==","signatures":[{"sig":"MEYCIQDjpbONmS0+RZ3Md8g75i1oX+CQhzs6Vv5fo3ZS4vOPrwIhAM9WeWqFeEGvii/HjLwOD/fPLwVPInRoqLpOjKbxEJvv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8khECRA9TVsSAnZWagAARVMP/2wCF+YaA4Psv2S5Bgwd\n0PDUTpfZgMmkR8TQT7ATIRhLWGXWq0hxG06cr860DITNZIqs1RR/Sad+XZ8H\noEtvhVzlmI2aAu9PlXzjiKHaOtk9CXHfYxxoOL952we8AXGkzR64kUYJ8TxE\nTeezanJwoyHEu1xkNjDsJ0cgf7se33Mjz+i+BiyNp49iysmT/tODtX8/8VwQ\n9e8AtbLJnpgSbtI8fnxSVMND/vLUtMF2SmnnUo07JN/+3CUu8Tz853xzknBy\n+P4KnClFNM4w//iFa+R83bzH+x/4ERoOcKb9vNKDG5GTXThaUNhZjF3xRrnp\nB515xFlxtYlkucMSP0ITxvoRgmdfILX23WtObKryG/4TarjB5PtzxLejfxVP\nAx1Hjw948gX0MOW6CeowSHLVdPtRz/g4WnTTGmZuDXzfc0JXLXdrQjgaccg3\nstur/CCDdmJBSfJ9q2XJRoOXHysMZkBYsrY82k86DlnnB09EjrW3Mj8GfsCu\nCkYkkAjBO4BYuyotsbVfMx4aa7Ug7rgiQXar2hy7ag7vXS3+/AGx9muc+OpJ\nEHi6MxcSQA7fwxO6tY+jmnHxsv/2PbO1zITiaXt1EwsqfcFA3kiFkQl6++x+\ncc+8q4FeqUaTXZO/NNRZwXRgBt63CsJziLgsvEc8Or/gqDPXpi1Xg7xFgm96\nYvZI\r\n=rNvD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"88178f22b8a0cca407e2849020dbb22c1b2bbd15","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha","build":"npm run clean && npm run build:min && npm run build:unmin","clean":"rm -rf dist","cover":"istanbul cover _mocha -- -R spec \"test/**/*.js\"","release":"standard-version","build:min":"NODE_ENV=production rollup --config --output.file dist/style-to-object.min.js","coveralls":"cat coverage/lcov.info | coveralls","build:unmin":"rollup --config --output.file dist/style-to-object.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"5.6.0","description":"Converts inline style to object.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"css":"2.2.3"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"4.0.1","eslint":"4.11.0","rollup":"0.51.5","istanbul":"0.4.5","coveralls":"3.0.0","uglify-es":"3.1.9","standard-version":"4.2.0","rollup-plugin-uglify":"2.0.1","rollup-plugin-commonjs":"8.2.6","rollup-plugin-node-resolve":"3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.2.1_1525827651035_0.20417250709784063","host":"s3://npm-registry-packages"}},"0.2.2":{"name":"style-to-object","version":"0.2.2","keywords":["inline","css","style","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.2.2","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"3ea3b276bd3fa9da1195fcdcdd03bc52aa2aae01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.2.2.tgz","fileCount":7,"integrity":"sha512-GcbtvfsqyKmIPpHeOHZ5Rmwsx2MDJct4W9apmTGcbPTbpA2FcgTFl2Z43Hm4Qb61MWGPNK8Chki7ITiY7lLOow==","signatures":[{"sig":"MEYCIQCRnalUbRVrplCZ02yDeCuiRHMNCEE8LQlBVvirQXRwlQIhALjhjCOymX4dr4DE/blqpl30MPYA8vLqPzZP+/ZynM79","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmvwWCRA9TVsSAnZWagAAGNoQAI9G4l5hBrKN0sGfuTNY\nTnD4QbVdkUhWcAegoJhbQkYjuVs26yeTGwBut0TYqN+olvzNgNZVr9btzMJG\nhO8T8BT++QzH2eydbgPVGrJdzFsq9JuPOYTChATGB/R3Rwgf7yiL7HeUCNHK\nPphasVMZFZBV94sa9nDn+Am0gL4dBZneBaRB1Nsrp5TXZWmJxIfMSWnZUlBB\nQ+4K62pa5X00Sew9+vT4YgNLj2NO1iXabDtdb33EWZSKb9bPornl+hzaCaE7\npB79LWJSzD/f1g+nZtbUyORoQ5t/XP5v7GFaTwM7TJTZ2wO7v1gPLNmb2NPU\ncGJ+HhdEazC+v4Yu6InQbBCj+uKM0QMT9YAc7s4i2o7YxKM2JRshpYbeQkIN\niy368Qo6tMMHo9dqEYqklsKRlrc2k/5gNhUaZWnOBsVuCEOpvxZ/EtPcGOOm\nNU4YDmJRlItizUyQ9KjMClkvZutgXdUsh5V28+YBGLIGZx4FcbDpRm+up+9r\nL/zGZnW0U+nnwQ22/MPGsVS2qu2bEsLgx0BT0qe386HRAA2wJqDgjgO0z+CP\nlp2T2aoefYNcrRTRSp565dybIRtV79sIW2fRr8pCmf7RM1D2t14Xm0HRrFEZ\n+dZ/qOtpTzRUi/LERQ2RWO4ZF2R2muOThH+IjYcdt5nArWHAxf3UjGdbPEsP\nbFog\r\n=EbLn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"f282d655585f5c16c173cfa94e7b0a2308a5159c","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha","build":"npm run clean && npm run build:min && npm run build:unmin","clean":"rm -rf dist","cover":"istanbul cover _mocha -- -R spec \"test/**/*.js\"","release":"standard-version","build:min":"NODE_ENV=production rollup --config --output.file dist/style-to-object.min.js","coveralls":"cat coverage/lcov.info | coveralls","build:unmin":"rollup --config --output.file dist/style-to-object.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"5.6.0","description":"Converts inline style to object.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"css":"2.2.4"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"5.2.0","eslint":"5.5.0","rollup":"0.65.2","istanbul":"0.4.5","coveralls":"3.0.2","uglify-es":"3.3.9","standard-version":"4.4.0","rollup-plugin-uglify":"5.0.2","rollup-plugin-commonjs":"9.1.6","rollup-plugin-node-resolve":"3.4.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.2.2_1536883733383_0.4303629134130509","host":"s3://npm-registry-packages"}},"0.2.3":{"name":"style-to-object","version":"0.2.3","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.2.3","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"afcf42bc03846b1e311880c55632a26ad2780bcb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.2.3.tgz","fileCount":8,"integrity":"sha512-1d/k4EY2N7jVLOqf2j04dTc37TPOv/hHxZmvpg8Pdh8UYydxeu/C1W1U4vD8alzf5V2Gt7rLsmkr4dxAlDm9ng==","signatures":[{"sig":"MEUCIQCZ1trLgKi8ifpJmXO5oKjnhmwyLRoaUawte8zgBPUs0gIgdaXRPeSQmEIDKeNnk2CsAdHbHHDR2fFqerCCCynO1Xc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDsElCRA9TVsSAnZWagAA0cYP/RMe/0p0PjsQaDdtalOF\n0TmGgAz5oCB72C1m1jIDXlx7/f/CqMr0yHZw/y/trXVsFIvcivZdf1Jp1r1C\nO+25KPjz7EE7SwkjhFJl2LaDzSbwOrjST0+cyfv14vP2+WGBsuYu8gNWK2Ml\ndPB1ik3e+6vSiDt+s2ZMbOtIqm3jJC05/cboJ4dpefXY2nOUxI9Z7dUGdwHX\na+7sSqSO23UCa31hfge3U8JVuP0aENZGy4Ehh5/anD0OEH5gvJsYYFTgnJ+/\n57veBVuVzECWdQcb3T7/naVtf5/PLVZw35nNfoxxS1WGXa8o0l/ZLP0bJJTp\n9vg2pBflU55wWrVP2/BVI9BGlaDkrcrPyTHBPPi6QW4rlEgkmwc3dICDj8zU\nsT4+rerAzCkqoBePqPLHm+9/hwZeidRncD2d/SyneKc3RQropKzh75XBm4YZ\n6J2LajQZ41CIB6K2hMi7x2WWfks2HfngSMTFs/4FH05G9+UQ28+lViA0/l8v\n4WAW2q2qBfUmbpGm1dcq/9ily4VBHBGWw9uKnj05+SWOt6tvO+WZTuHF9MND\nj6eSa+djwxDxdxWwXDzMBDBdfa1jYIOovP8qaKRbOqHlg/WfupzP3L0Toqzg\nQDlKlNng1ZDZZbJqhcYhTT14E0kKEVIML9JaDo5tCW8hh34+a7MldGVEFNk5\nsJLX\r\n=PDRx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"519d1677f37d7f8376cc782e874e5afd689bd87a","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha","build":"npm run clean && npm run build:min && npm run build:unmin","clean":"rm -rf dist","release":"standard-version --no-verify","lint:fix":"npm run lint -- --fix","build:min":"NODE_ENV=production rollup --config --file dist/style-to-object.min.js --sourcemap","coveralls":"nyc report --reporter=text-lcov | coveralls","test:watch":"mocha --watch","build:unmin":"NODE_ENV=development rollup --config --file dist/style-to-object.js","test:coverage":"nyc npm test","prepublishOnly":"npm run build","test:coverage:report":"nyc report --reporter=html"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"6.4.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","rollup":"^1.16.2","prettier":"^1.18.2","coveralls":"^3.0.4","lint-staged":"^8.2.1","@commitlint/cli":"^8.0.0","standard-version":"^6.0.1","rollup-plugin-uglify":"^6.0.2","eslint-plugin-prettier":"^3.1.0","rollup-plugin-commonjs":"^10.0.0","rollup-plugin-node-resolve":"^5.0.4","@commitlint/config-conventional":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.2.3_1561248037279_0.6718333349671513","host":"s3://npm-registry-packages"}},"0.3.0":{"name":"style-to-object","version":"0.3.0","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.3.0","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"b1b790d205991cc783801967214979ee19a76e46","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.3.0.tgz","fileCount":9,"integrity":"sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==","signatures":[{"sig":"MEQCIBYbCqF9j00gJjnG1xVErvLb5QKx+qqkbtG/XofPSQ9wAiBKr1aQa4MS2THJRS4r53xLRphBUYOSKKWTR59jEaXhew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30488,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdw6b4CRA9TVsSAnZWagAA8HsP/3r0O+dP/bBSP01yXsBr\n9fVFGY9B9PxJbMm6uCJqRgqVBNyWCNgKmlfOrqsO2e77tT+XMHZ+oM7OTixO\n+fhtEQxUyTloXcHILo65dBJlPkJRXvdgnZwHEPaoK78mkBJxmqFbq9i+4TWD\nlwoVzP3jRpThJ+tCYrRLvK2mlQnTqUpUbg+Tew/8471GTK79o+k51brEr/5s\nCJvnvT5iH1VFaYbsBd/MJI+jrtFe4hqWQWBE0SgVRrtOcmdYUVqizK/MuEee\nrSfmLj/ggLtjk8N31VNi2aEgLeNNZ+Y4QqmYOWvdVigjY9ZXiT7DodsAXTiM\ndWm9GhEftI7d1eKFHgO6WwIZMCsq8/svyzjjC86p5mRWJZkHb4XP2Ypt31yy\n2L97g//RvoxB2vefYt+i+nfg9BAOLL5fXijC7OXLxBhiwCMejV10/K75ycTM\nRDpA4nVgYIuXRuo9rJ86GuqaJwZwajbQUqLcLo8ULcK+5ACgCED3d8MpKYeN\ntmBMx/avOlZOOOGgG+aNzrNE84odTDoGAp4ZMZuogx68SCSD+3DY0vwUfkSW\nVHBEVfZf973yCpBPdsB7oGI05T9NEb9K3gmFWdk6mHPQi+v6Qg/ztuSfQ9MF\nY2IKdV+GMz3KvPDy8p1u4Lb4qwSi1kCCKXKy6zIdwDeITElYfgPigaKSYwaD\nINI5\r\n=IYle\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","gitHead":"4fae14d372dfefaf193a63686ee7e1de2f1f5c9b","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha","build":"run-s build:*","clean":"rm -rf dist","release":"standard-version --no-verify","lint:dts":"dtslint .","lint:fix":"npm run lint -- --fix","build:min":"NODE_ENV=production rollup --config --file dist/style-to-object.min.js --sourcemap","coveralls":"nyc report --reporter=text-lcov | coveralls","test:watch":"mocha --watch","build:unmin":"NODE_ENV=development rollup --config --file dist/style-to-object.js","test:coverage":"nyc npm test","prepublishOnly":"run-s lint lint:dts test clean build","test:coverage:report":"nyc report --reporter=html"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"6.4.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","husky":"^3.0.9","mocha":"^6.2.2","eslint":"^6.6.0","rollup":"^1.26.3","dtslint":"^1.0.3","prettier":"^1.18.2","coveralls":"^3.0.7","lint-staged":"^9.4.2","npm-run-all":"^4.1.5","@commitlint/cli":"^8.2.0","standard-version":"^6","rollup-plugin-uglify":"^6.0.3","eslint-plugin-prettier":"^3.1.1","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","@commitlint/config-conventional":"^8.2.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.3.0_1573103352362_0.6496128061126951","host":"s3://npm-registry-packages"}},"0.4.0":{"name":"style-to-object","version":"0.4.0","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.4.0","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"fdcee2ba7f195f96023a44a124683f70d463dd24","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.4.0.tgz","fileCount":9,"integrity":"sha512-dAjq2m87tPn/TcYTeqMhXJRhu96WYWcxMFQxs3Y9jfYpq2jG+38u4tj0Lst6DOiYXmDuNxVJ2b1Z2uPC6wTEeg==","signatures":[{"sig":"MEUCIQCdJ7m7gq+1doXqzDYbCVFdXxjST9QJXlUlmzy8ERuPdwIgZgLO09OA6YKKevDhQdfHJeJtuc2Qk6wBJNie6Em5rD4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27966,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjirC0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqzEA/8Cvq0sLX0OwvF+egpoGm0Lg7k6YftNdxEdokSLkiTAfGMaL1H\r\nQKpLBukeacfqgOi1BCbbgDB8Tv3B1BFRxsVCxhoSwpTSk5lHx95iYvc7nF7K\r\nkhJRIFjc+Z5vsWw3EClxMizUm0m5TzKFOiSrKP3kLj3c+8jvuRo2o1uSy7Lg\r\nRaphOdi4V7XPU5Fdy1/Yz/5gWEb+T8dYvbwIlbB7R/bUZbZfJoxIAln3TAT4\r\nWWfpx2zaPU3ZukzmInLDDf9pmSn/S9sYsR6C29X0/E6Y3pI6TlQfHhugxigv\r\nxWyWXCuadS1lwy23ch6QpeLGemOpNQqgZ5DBntvzga3Y/7/K0v2dgE7+Vqi0\r\npmhNYsCixW9gt/jpBF2184gG/zNVN70LOANlFJg+89VNTLBzLBEcodbJqGtF\r\nmCMsDivXEffkssHZn+3beG9fFJs5s/6STgrm97v64okwhCggksUcNCNKEthK\r\nZkkEmWm/wrCc0slNeYynTT9MHAlBU9mK7/SVAnE0yo44kIm/7xiIdGTiROX0\r\n3kwjMwiMFE0CWoIbIiiLjWKFtJSrLFaiBS+q5e/9ShsvATkueUdCgdqTfoKW\r\nM5jfhzYP1CZ6QoXtndVUUWzwX4u9soCtlVscvrvXH76mq83YD/hKB16kW6L+\r\nRMP9Z+qacwWjyTdMKfFnQ2/qCz3I5ymcJW8=\r\n=Hiki\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","module":"index.mjs","exports":{"import":"./index.mjs","require":"./index.js"},"gitHead":"fd4a6ef5f1dc851ff08f89d4014aabd203e5d7dd","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha --exclude **/*.mjs","build":"run-s build:*","clean":"rm -rf dist","lint:dts":"dtslint .","lint:fix":"npm run lint -- --fix","build:min":"NODE_ENV=production rollup --config --file dist/style-to-object.min.js --sourcemap","test:watch":"npm run test -- --watch","build:unmin":"NODE_ENV=development rollup --config --file dist/style-to-object.js","postpublish":"pinst --enable","test:module":"node --experimental-modules test/index.mjs","_postinstall":"husky install","test:coverage":"nyc npm test","prepublishOnly":"pinst --disable && run-s lint lint:dts test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"8.19.2","description":"Converts inline style to object.","directories":{},"_nodeVersion":"16.18.1","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","husky":"^8.0.1","mocha":"^10.0.0","pinst":"^3.0.0","eslint":"^8.16.0","rollup":"^2.75.3","dtslint":"^4.2.1","prettier":"^2.6.2","typescript":"^4.7.2","lint-staged":"^13.0.0","npm-run-all":"^4.1.5","@commitlint/cli":"^17.0.1","rollup-plugin-terser":"^7.0.2","eslint-plugin-prettier":"^4.0.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-node-resolve":"^15.0.0","@commitlint/config-conventional":"^17.0.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.4.0_1670033588743_0.9527653129533171","host":"s3://npm-registry-packages"}},"0.4.1":{"name":"style-to-object","version":"0.4.1","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.4.1","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"53cf856f7cf7f172d72939d9679556469ba5de37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.4.1.tgz","fileCount":9,"integrity":"sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==","signatures":[{"sig":"MEUCIQDWVnB/nAJkQNmzpfBNNUI0Nr2ldps6qHYcqZFZJzcLdgIgR80YqKIaizzmWiKNdnQZGmrAR6UiGpt6kbAPz5tUc5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28131,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxeElACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8CQ/7BBSu1RM2KcpeBi19dYOQLWDMu2iGF1p+xhZcCDIAida8CnH6\r\n++aC+a8GQJc5t1vqZ1pPlgE4B74E7aQ+mG3cpiuTrETtb8k5a3bGsuTGFEoR\r\n5pUBOkp9bGcRhNCEPmendM/z/B+dYK/3KsDF/KK5mqWj7XocrwBTrH8iFCeU\r\nlCCZ9wZn3jcJ5xrdwqVPomNgJraAPbc2R324QfFS5UDIw7plMcf6DqisL/8Q\r\n1dvUs3EBxjQypT4BdwtiwZb6545SJadvGpZ9Pv8vvUHXvnQruVjRGb4P2G/2\r\n2br0Ti66eMyfB3aifnChUB+CzjrpSuRx9HDRIUJcajYHCLSziANGGT/ADFd0\r\n0vQOxfKxSIrYptAajNF0Ao2qR+csOJpcuZeaDCDXCfAIIjuyoWKkl1c+pIuy\r\nzS7tZWgTUE5wefd0V7BtFpbHsCBHoAGN3R/t1lLPJOx/4wFE3bhk2o5iIXJv\r\nPT4VLSaGg3MSchUoZ9kmWsuuR6i5E1g6l/Srsc3J3YZZ4kv6a46rF1szrIXg\r\nyXgsEQOJosF3xUT6mnEHW/KaiUdV8T0sdxBBgx9Je6Cg/RgIkA4jzmxzWzOs\r\nMNvlgiEmfV8G8s10MUhVRoqDNFxoW9paccpCseogLXF5dUQv2S36rqNkr7H8\r\nFYdiH8UmVdaP1hr6mcaJY2cASLSxGnBDJ+4=\r\n=rzA0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","module":"index.mjs","exports":{"types":"./index.d.ts","import":"./index.mjs","require":"./index.js"},"gitHead":"ca3555c270d09c1ae98665ec998159c8b5dd9d95","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha --exclude **/*.mjs","build":"run-s build:*","clean":"rm -rf dist","lint:dts":"dtslint .","lint:fix":"npm run lint -- --fix","build:min":"NODE_ENV=production rollup --config --file dist/style-to-object.min.js --sourcemap","test:watch":"npm run test -- --watch","build:unmin":"NODE_ENV=development rollup --config --file dist/style-to-object.js","postpublish":"pinst --enable","test:module":"node --experimental-modules test/index.mjs","_postinstall":"husky install","test:coverage":"nyc npm test","prepublishOnly":"pinst --disable && run-s lint lint:dts test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"8.19.3","description":"Converts inline style to object.","directories":{},"_nodeVersion":"16.19.0","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","husky":"8.0.3","mocha":"10.2.0","pinst":"3.0.0","eslint":"8.32.0","rollup":"2.79.1","dtslint":"4.2.1","prettier":"2.8.3","typescript":"4.9.4","lint-staged":"13.1.0","npm-run-all":"4.1.5","@commitlint/cli":"17.4.2","@rollup/plugin-terser":"0.3.0","eslint-plugin-prettier":"4.2.1","@rollup/plugin-commonjs":"24.0.0","@rollup/plugin-node-resolve":"15.0.1","@commitlint/config-conventional":"17.4.2"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.4.1_1673912613693_0.400338519091592","host":"s3://npm-registry-packages"}},"0.4.2":{"name":"style-to-object","version":"0.4.2","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.4.2","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"a8247057111dea8bd3b8a1a66d2d0c9cf9218a54","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.4.2.tgz","fileCount":9,"integrity":"sha512-1JGpfPB3lo42ZX8cuPrheZbfQ6kqPPnPHlKMyeRYtfKD+0jG+QsXgXN57O/dvJlzlB2elI6dGmrPnl5VPQFPaA==","signatures":[{"sig":"MEYCIQCdhz8xmlb05V7M5QncNarMTIYw35Jkcwg8wwnH08MJ0wIhAMD6bP8E3gSmgkb2NMXVyoJ1zIJDxS0Xzz40iYauXWX1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28163},"main":"index.js","types":"index.d.ts","module":"index.mjs","exports":{"types":"./index.d.ts","import":"./index.mjs","require":"./index.js"},"gitHead":"eb212d6cf44c88247c1fa77e4fcb1698b7ecdda3","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha --exclude **/*.mjs","build":"run-s build:*","clean":"rm -rf dist","lint:dts":"dtslint .","lint:fix":"npm run lint -- --fix","build:min":"NODE_ENV=production rollup --config --file dist/style-to-object.min.js --sourcemap","test:watch":"npm run test -- --watch","build:unmin":"NODE_ENV=development rollup --config --file dist/style-to-object.js","postpublish":"pinst --enable","test:module":"node --experimental-modules test/index.mjs","_postinstall":"husky install","test:coverage":"nyc npm test","prepublishOnly":"pinst --disable && run-s lint lint:dts test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.6.7","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.17.0","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","husky":"8.0.3","mocha":"10.2.0","pinst":"3.0.0","eslint":"8.46.0","rollup":"2.79.1","dtslint":"4.2.1","prettier":"3.0.0","typescript":"5.1.6","lint-staged":"13.2.3","npm-run-all":"4.1.5","@commitlint/cli":"17.6.7","@rollup/plugin-terser":"0.4.3","eslint-plugin-prettier":"5.0.0","@rollup/plugin-commonjs":"25.0.3","@rollup/plugin-node-resolve":"15.1.0","@commitlint/config-conventional":"17.6.7"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.4.2_1690945820379_0.5827072523585322","host":"s3://npm-registry-packages"}},"0.4.3":{"name":"style-to-object","version":"0.4.3","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.4.3","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"2c7386e0eac8c3a145be06c572b7c5422c2eaf04","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.4.3.tgz","fileCount":10,"integrity":"sha512-RP9icVx0g3Pt0CyNiC2qvBkqMTHD5uBVC2XYcSr/ag8QWKApx/oXEh2ehMGSyzkjK0+ySkukMuO+mz+DNQq57Q==","signatures":[{"sig":"MEQCIDUPgvJOiVrkLzOczWZ1Zncb4Hbouyl3lJKMuSw+IBRRAiBsxycJCwQW57SN8qcRJVzbxUxZJEGDXtyJvILZKWtbfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41309},"main":"index.js","types":"index.d.ts","module":"index.mjs","exports":{"types":"./index.d.ts","import":"./index.mjs","require":"./index.js"},"gitHead":"eeb06d7794f8b4c1b956aa3cf52c89144c73f73d","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"mocha --exclude **/*.mjs","build":"rollup --config --failAfterWarnings","clean":"rm -rf dist","lint:dts":"dtslint .","lint:fix":"npm run lint -- --fix","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","test:module":"node --experimental-modules test/index.mjs","_postinstall":"husky install","test:coverage":"nyc npm test","prepublishOnly":"pinst --disable && run-s lint lint:dts test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.0","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","husky":"8.0.3","mocha":"10.2.0","pinst":"3.0.0","eslint":"8.51.0","rollup":"4.1.0","dtslint":"4.2.1","prettier":"3.0.3","typescript":"5.2.2","lint-staged":"14.0.1","npm-run-all":"4.1.5","@commitlint/cli":"17.8.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.5","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"17.8.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.4.3_1697324052936_0.295285485272077","host":"s3://npm-registry-packages"}},"0.4.4":{"name":"style-to-object","version":"0.4.4","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@0.4.4","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"266e3dfd56391a7eefb7770423612d043c3f33ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-0.4.4.tgz","fileCount":10,"integrity":"sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==","signatures":[{"sig":"MEQCIEmSyKhTYN/SWSZGyOil1cPxOvhpalexojCgziIYPB65AiAXW7t2QemQelH7CoelTauVEFk17yhHWh46Rzsi6aHmXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41332},"main":"index.js","types":"index.d.ts","module":"index.mjs","exports":{"types":"./index.d.ts","import":"./index.mjs","require":"./index.js"},"gitHead":"0e3446dc8b9773cb2e6fff9f01c6f5880089990d","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"rollup --config --failAfterWarnings","clean":"rm -rf dist","test:ci":"CI=true jest --ci --colors --coverage","lint:dts":"dtslint .","lint:fix":"npm run lint -- --fix","test:esm":"node --test __tests__/index.test.mjs","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:dts test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.0","dependencies":{"inline-style-parser":"0.1.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.51.0","rollup":"4.1.0","prettier":"3.0.3","typescript":"5.2.2","lint-staged":"14.0.1","npm-run-all":"4.1.5","@commitlint/cli":"17.8.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.5","@definitelytyped/dtslint":"0.0.182","@typescript-eslint/parser":"5.62.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"17.8.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_0.4.4_1697387964188_0.526985344301085","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"style-to-object","version":"1.0.0","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.0","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"9b252385bdca3c0624e58686314a8d88d6b2956a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.0.tgz","fileCount":12,"integrity":"sha512-WOxKn2+5Gdr6i0jRMaBAL02XequQZpmnXchDA9HYoG0n5T4HWT1x1iRWluN1RFZxcuHNJPugd3LWL1/Pp3IqcA==","signatures":[{"sig":"MEYCIQCIXqYAA6pXll16lRAihiDXmM2mY7yKygiMSsp0StbNgAIhANGDaEQzsLWFnj9yst2HLbU7dAWbHVVN2Xn+rMnrAEsx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40099},"main":"cjs/index.js","types":"./cjs/index.d.ts","module":"esm/index.mjs","exports":{"import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"8f54ae2539126fbaccceaf558fba1f5d847fa849","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc --outDir cjs","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.0","dependencies":{"inline-style-parser":"0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.51.0","rollup":"4.1.1","ts-jest":"29.1.1","prettier":"3.0.3","typescript":"5.2.2","@types/jest":"29.5.5","lint-staged":"14.0.1","npm-run-all":"4.1.5","@commitlint/cli":"17.8.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.5","@typescript-eslint/parser":"6.7.5","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"17.8.0","@typescript-eslint/eslint-plugin":"6.7.5"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.0_1697394064973_0.823886035538828","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"style-to-object","version":"1.0.1","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.1","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"751e6b726e8ad077280b26a8b9111777bfd7de10","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.1.tgz","fileCount":12,"integrity":"sha512-Mp9eBDx0knTrUGKyImO1enNWkOEYMAr/ut8SUYtPpOFOu5+HOR0yMF4pnExOklQvdSlxh+Mi0+6hUZVBb1zdRw==","signatures":[{"sig":"MEQCICvVDiKaIoNKhXt/9AD7vvV99oIHRVixkH8lRSLfmvC4AiA9MSudN72A5g2K0c+wn97LDqc/gWZU2IAElJ7zL3fQPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40132},"main":"cjs/index.js","types":"./cjs/index.d.ts","module":"esm/index.mjs","exports":{"types":"./cjs/index.d.ts","import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"0cd70dcbc5268f066ab9604354a0ebf4dd2ba1fc","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc --outDir cjs","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.0","dependencies":{"inline-style-parser":"0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.51.0","rollup":"4.1.4","ts-jest":"29.1.1","prettier":"3.0.3","typescript":"5.2.2","@types/jest":"29.5.5","lint-staged":"15.0.1","npm-run-all":"4.1.5","@commitlint/cli":"17.8.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.5","@typescript-eslint/parser":"6.7.5","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"17.8.0","@typescript-eslint/eslint-plugin":"6.7.5"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.1_1697514531380_0.7285336587900615","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"style-to-object","version":"1.0.2","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.2","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"2e2b12707722d6c3e31ae92c591da4c592b3eb00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.2.tgz","fileCount":13,"integrity":"sha512-G0AZ8Xi+htgC2xLDCZA9+5Gh2pweocc9NDioXediwykhQJbJ1gtEwrfQMzVV/e0n4PyMmlm85+mcPi/itKs+0A==","signatures":[{"sig":"MEQCIDAbvqvmhk14E+HAvQ36k98B/Hxhm5yGwQzr3ALBvZTrAiB8LR9kHtpUup+cjoQQK5hC0k1/IJRVyOUVq5JUb6B7BA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41399},"main":"cjs/index.js","types":"./cjs/index.d.ts","module":"esm/index.mjs","exports":{"types":"./cjs/index.d.ts","import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"3a0fbfd4cd1ccd01e9e8c0e9786ccdb623635a8e","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc --outDir cjs","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.2","dependencies":{"inline-style-parser":"0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.51.0","rollup":"4.1.4","ts-jest":"29.1.1","prettier":"3.0.3","typescript":"5.2.2","@types/jest":"29.5.6","lint-staged":"15.0.2","npm-run-all":"4.1.5","@commitlint/cli":"17.8.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.5","@typescript-eslint/parser":"6.8.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"17.8.0","@typescript-eslint/eslint-plugin":"6.8.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.2_1697758919721_0.30420140169073373","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"style-to-object","version":"1.0.3","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.3","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"5ce90eb7f03ef5044bd70a3a23a3c1387fcac5b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.3.tgz","fileCount":13,"integrity":"sha512-xOpx7S53E0V3DpVsvt7ySvoiumRpfXiC99PUXLqGB3wiAnN9ybEIpuzlZ8LAZg+h1sl9JkEUwtSQXxcCgFqbbg==","signatures":[{"sig":"MEUCIAOUwPS2U9Ru8FmhkJNYDRgfY0rLwLEaYQr7nYeb098AAiEA0EeN31jUT+S1V1S6XC6+FifVfv9arLuqUGe8W7PVZo4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41462},"main":"cjs/index.js","types":"./cjs/index.d.ts","module":"esm/index.mjs","exports":{"types":"./cjs/index.d.ts","import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"120e90be4abfaff913cf8146e4375a1b608c3987","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc --outDir cjs","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.2","dependencies":{"inline-style-parser":"0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.51.0","rollup":"4.1.4","ts-jest":"29.1.1","prettier":"3.0.3","typescript":"5.2.2","@types/jest":"29.5.6","lint-staged":"15.0.2","npm-run-all":"4.1.5","@commitlint/cli":"17.8.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.5","@typescript-eslint/parser":"6.8.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"17.8.0","@typescript-eslint/eslint-plugin":"6.8.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.3_1697764011164_0.1653688432440492","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"style-to-object","version":"1.0.4","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.4","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"496fded508ce520eca13e738e8af33b8b5af98f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.4.tgz","fileCount":13,"integrity":"sha512-KyNO6mfijxSnypdvEjeXlhvbGPSh0l1zBJp80n+ncBQvrEbSwBHwZCpo0xz6Q4AKSPfXowWwypCBAUAdfz3rFQ==","signatures":[{"sig":"MEYCIQCsLq34yjWykZH52bZv90OLON0F5YN7rhGhB82yIExElQIhAPcbqYtxkBonDLarno9Jee/Iy6+tIqSdrPaw3wEzEUnp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41497},"main":"./cjs/index.js","types":"./cjs/index.d.ts","module":"./esm/index.mjs","exports":{"types":"./cjs/index.d.ts","import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"99204178e4f8f398ea5a133ee13ae51a593db298","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc --outDir cjs","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.2","dependencies":{"inline-style-parser":"0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.52.0","rollup":"4.1.5","ts-jest":"29.1.1","prettier":"3.0.3","typescript":"5.2.2","@types/jest":"29.5.6","lint-staged":"15.0.2","npm-run-all":"4.1.5","@commitlint/cli":"18.2.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.5","@typescript-eslint/parser":"6.9.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"18.1.0","@typescript-eslint/eslint-plugin":"6.9.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.4_1698728747136_0.8147339621827348","host":"s3://npm-registry-packages"}},"1.0.5":{"name":"style-to-object","version":"1.0.5","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.5","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"5e918349bc3a39eee3a804497d97fcbbf2f0d7c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.5.tgz","fileCount":14,"integrity":"sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==","signatures":[{"sig":"MEUCIEyUTThyE4f0dDT0a9LUod3V7xCXI5mA9JV1pr+argyuAiEA2pRZ6dTW53fgHhRr47XkegbGt0wdVRXZVVVh/1IunQU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42129},"main":"./cjs/index.js","types":"./cjs/index.d.ts","module":"./esm/index.mjs","exports":{"import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"b1dc3e1fa3a6a92a47190e44d8d69192c45f0a65","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc","build:esm":"awk '!/sourceMappingURL/' cjs/index.d.ts > esm/index.d.mts","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","postpublish":"pinst --enable","_postinstall":"husky install","prepublishOnly":"pinst --disable && run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"9.8.1","description":"Converts inline style to object.","directories":{},"_nodeVersion":"18.18.2","dependencies":{"inline-style-parser":"0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"8.0.3","pinst":"3.0.0","eslint":"8.54.0","rollup":"4.6.1","ts-jest":"29.1.1","prettier":"3.1.0","typescript":"5.3.2","@types/jest":"29.5.10","lint-staged":"15.1.0","npm-run-all":"4.1.5","@commitlint/cli":"18.4.3","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.0.1","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.5","@typescript-eslint/parser":"6.13.1","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"18.4.3","@typescript-eslint/eslint-plugin":"6.13.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.5_1701399508303_0.6193514577915118","host":"s3://npm-registry-packages"}},"1.0.6":{"name":"style-to-object","version":"1.0.6","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.6","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"0c28aed8be1813d166c60d962719b2907c26547b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.6.tgz","fileCount":14,"integrity":"sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==","signatures":[{"sig":"MEQCIFA4kqkrkauAo5tG76rUvYY/20ELXAfUyPuJUX9Qpv8nAiBlSQWg9mY6mTesMbZlvqUwFaInHxNzyR8iUACUTEy+6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42064},"main":"./cjs/index.js","types":"./cjs/index.d.ts","module":"./esm/index.mjs","exports":{"import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"ccb7575b116f8f8039dea84087aa99891442c233","scripts":{"lint":"eslint --ignore-path .gitignore .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc","build:esm":"awk '!/sourceMappingURL/' cjs/index.d.ts > esm/index.d.mts","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"10.2.4","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"18.19.1","dependencies":{"inline-style-parser":"0.2.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"9.0.11","eslint":"8.57.0","rollup":"4.13.0","ts-jest":"29.1.2","prettier":"3.2.5","typescript":"5.4.3","@types/jest":"29.5.12","lint-staged":"15.2.2","npm-run-all":"4.1.5","@commitlint/cli":"19.2.1","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.1.3","@rollup/plugin-commonjs":"25.0.7","@rollup/plugin-typescript":"11.1.6","@typescript-eslint/parser":"7.4.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"19.1.0","@typescript-eslint/eslint-plugin":"7.4.0"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.6_1711502511786_0.20146972752466463","host":"s3://npm-registry-packages"}},"1.0.7":{"name":"style-to-object","version":"1.0.7","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.7","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"8604fb6018ac3db83e97207a4f85f579068f661c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.7.tgz","fileCount":14,"integrity":"sha512-uSjr59G5u6fbxUfKbb8GcqMGT3Xs9v5IbPkjb0S16GyOeBLAzSRK0CixBv5YrYvzO6TDLzIS6QCn78tkqWngPw==","signatures":[{"sig":"MEUCIQCo5Mh8r678Y970BCesEpHoFhzBEmbThltJaIaVtBe0zgIgfHEScjsakEeYHgFCPd8h7hc0B5FJnCqhN0q75StKl5A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42204},"main":"./cjs/index.js","types":"./cjs/index.d.ts","module":"./esm/index.mjs","exports":{"import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"82ddba2cbd3aea6fce5e144740cdf48acc013d1b","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc","build:esm":"awk '!/sourceMappingURL/' cjs/index.d.ts > esm/index.d.mts","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"10.8.1","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"20.16.0","dependencies":{"inline-style-parser":"0.2.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"9.1.5","eslint":"9.9.1","rollup":"4.21.1","globals":"15.9.0","ts-jest":"29.2.5","prettier":"3.3.3","@eslint/js":"9.9.1","typescript":"5.5.4","@types/jest":"29.5.12","lint-staged":"15.2.9","npm-run-all":"4.1.5","@eslint/compat":"1.1.1","@commitlint/cli":"19.4.1","@eslint/eslintrc":"3.1.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.2.1","@rollup/plugin-commonjs":"26.0.1","@rollup/plugin-typescript":"11.1.6","@typescript-eslint/parser":"8.3.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"19.4.1","@typescript-eslint/eslint-plugin":"8.3.0","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.7_1724869267702_0.021253882660104084","host":"s3://npm-registry-packages"}},"1.0.8":{"name":"style-to-object","version":"1.0.8","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.8","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"67a29bca47eaa587db18118d68f9d95955e81292","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.8.tgz","fileCount":14,"integrity":"sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==","signatures":[{"sig":"MEYCIQDGLzgu7OI7aiVjfmaxSwZ2OjUmgwLYd59xhAzFQA0T3gIhAI5PKkGLPmr1LDKHM6n3/ZGar2bE8Kzygn2qo2Hf8cXB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42236},"main":"./cjs/index.js","types":"./cjs/index.d.ts","module":"./esm/index.mjs","exports":{"import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"a9e7e74c09bc12c23907dca0fbddda371ec718fb","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc","build:esm":"awk '!/sourceMappingURL/' cjs/index.d.ts > esm/index.d.mts","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"10.8.2","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"20.17.0","dependencies":{"inline-style-parser":"0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"9.1.5","eslint":"9.10.0","rollup":"4.21.2","globals":"15.9.0","ts-jest":"29.2.5","prettier":"3.3.3","@eslint/js":"9.10.0","typescript":"5.6.2","@types/jest":"29.5.12","@types/node":"22.5.4","lint-staged":"15.2.10","npm-run-all":"4.1.5","@eslint/compat":"1.1.1","@commitlint/cli":"19.5.0","@eslint/eslintrc":"3.1.0","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.2.1","@rollup/plugin-commonjs":"26.0.1","@rollup/plugin-typescript":"11.1.6","@typescript-eslint/parser":"8.5.0","@rollup/plugin-node-resolve":"15.2.3","@commitlint/config-conventional":"19.5.0","@typescript-eslint/eslint-plugin":"8.5.0","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.8_1726082637753_0.4790722156838463","host":"s3://npm-registry-packages"}},"1.0.9":{"name":"style-to-object","version":"1.0.9","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.9","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"35c65b713f4a6dba22d3d0c61435f965423653f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.9.tgz","fileCount":14,"integrity":"sha512-G4qppLgKu/k6FwRpHiGiKPaPTFcG3g4wNVX/Qsfu+RqQM30E7Tyu/TEgxcL9PNLF5pdRLwQdE3YKKf+KF2Dzlw==","signatures":[{"sig":"MEUCIQC/SD4LxD438eTMAx1rzXtJjjpsPXQlhcPDYdBpyjyDVgIgFOgKFHRjKcMcNmvW85lxEqHKLyZfVJlH69TZqSKbPOI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.9","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":41917},"main":"./cjs/index.js","types":"./cjs/index.d.ts","module":"./esm/index.mjs","exports":{"import":"./esm/index.mjs","require":"./cjs/index.js"},"gitHead":"36a7d48e2bd9d85a5e43e823d1db5c67557a9586","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build:cjs && node --test __tests__","build:cjs":"tsc","build:esm":"awk '!/sourceMappingURL/' cjs/index.d.ts > esm/index.d.mts","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"10.8.2","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"20.19.2","dependencies":{"inline-style-parser":"0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.7.0","husky":"9.1.7","eslint":"9.28.0","rollup":"4.42.0","globals":"16.2.0","ts-jest":"29.3.4","ts-node":"10.9.2","prettier":"3.5.3","@eslint/js":"9.28.0","typescript":"5.8.3","@types/jest":"29.5.14","@types/node":"22.15.30","lint-staged":"16.1.0","npm-run-all":"4.1.5","@eslint/compat":"1.2.9","@commitlint/cli":"19.8.1","@eslint/eslintrc":"3.3.1","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.4.1","@rollup/plugin-commonjs":"28.0.3","@rollup/plugin-typescript":"12.1.2","@typescript-eslint/parser":"8.33.1","@rollup/plugin-node-resolve":"16.0.1","@commitlint/config-conventional":"19.8.1","@typescript-eslint/eslint-plugin":"8.33.1","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.9_1749230107191_0.4631695129825104","host":"s3://npm-registry-packages-npm-production"}},"1.0.10":{"name":"style-to-object","version":"1.0.10","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.10","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"e142ba320f10bf4163e311e199d26170aa896b2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.10.tgz","fileCount":18,"integrity":"sha512-dt5eKBgPL+13RJ7EWQTMu+PFEW7pfz6xaqWTfKo5LUyAfSW57ELDPSdRZ4MmFvXbZLDB3iTrdhxP/Irsp4ZRLQ==","signatures":[{"sig":"MEUCIQDcTxNDiRGtdtoTfXeI4NGd5K04dLMR3gVw/GOXyWOItQIgJ+89g5/QHkSe+/+sYg00+tBE88uf1wZXcJRBx3cGRNA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.10","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":46267},"main":"./cjs/index.js","types":"./esm/index.d.mts","module":"./esm/index.mjs","exports":{"import":{"types":"./esm/index.d.mts","default":"./esm/index.mjs"},"require":{"types":"./cjs/index.d.ts","default":"./cjs/index.js"}},"gitHead":"0391861ade6487d763cc45bd64c4f627a172d7bc","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist esm","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build && node --test **/*.test.mjs","build:cjs":"tsc --project tsconfig.cjs.json","build:esm":"tsc --project tsconfig.json","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"11.6.0","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"24.9.0","dependencies":{"inline-style-parser":"0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"30.2.0","husky":"9.1.7","tslib":"2.8.1","eslint":"9.36.0","rollup":"4.52.3","globals":"16.4.0","ts-jest":"29.4.4","ts-node":"10.9.2","prettier":"3.6.2","@eslint/js":"9.36.0","typescript":"5.9.3","@types/jest":"30.0.0","@types/node":"24.6.2","lint-staged":"16.2.3","npm-run-all":"4.1.5","@eslint/compat":"1.4.0","@commitlint/cli":"20.1.0","@eslint/eslintrc":"3.3.1","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.5.4","@rollup/plugin-commonjs":"28.0.6","@rollup/plugin-typescript":"12.1.4","@typescript-eslint/parser":"8.45.0","@rollup/plugin-node-resolve":"16.0.1","@commitlint/config-conventional":"20.0.0","@typescript-eslint/eslint-plugin":"8.45.0","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.10_1759430003917_0.330554515266158","host":"s3://npm-registry-packages-npm-production"}},"1.0.11":{"name":"style-to-object","version":"1.0.11","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.11","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"cf252c4051758b7acb18a5efb296f91fb79bb9c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.11.tgz","fileCount":18,"integrity":"sha512-5A560JmXr7wDyGLK12Nq/EYS38VkGlglVzkis1JEdbGWSnbQIEhZzTJhzURXN5/8WwwFCs/f/VVcmkTppbXLow==","signatures":[{"sig":"MEQCIC+d1O0h9H2/u0Yn/Wf8Eo86dctAlScBb+H18Hl2033VAiBcTsQyqiHWMQYpfOwVZ+KamrDP7zIfywgWCCgFJ03gyQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.11","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":46321},"main":"./cjs/index.js","types":"./esm/index.d.ts","module":"./esm/index.mjs","exports":{"import":{"types":"./esm/index.d.ts","default":"./esm/index.mjs"},"require":{"types":"./cjs/index.d.ts","default":"./cjs/index.js"}},"gitHead":"8457786b706e1cc441cc91af10049cd8c654f801","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist esm","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build && node --test **/*.test.mjs","build:cjs":"tsc --project tsconfig.cjs.json","build:esm":"tsc --project tsconfig.json","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","lint:package":"publint","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"11.6.0","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"24.9.0","dependencies":{"inline-style-parser":"0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"30.2.0","husky":"9.1.7","tslib":"2.8.1","eslint":"9.36.0","rollup":"4.52.3","globals":"16.4.0","publint":"0.3.13","ts-jest":"29.4.4","ts-node":"10.9.2","prettier":"3.6.2","@eslint/js":"9.36.0","typescript":"5.9.3","@types/jest":"30.0.0","@types/node":"24.6.2","lint-staged":"16.2.3","npm-run-all":"4.1.5","@eslint/compat":"1.4.0","@commitlint/cli":"20.1.0","@eslint/eslintrc":"3.3.1","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.5.4","@rollup/plugin-commonjs":"28.0.6","@rollup/plugin-typescript":"12.1.4","@typescript-eslint/parser":"8.45.0","@rollup/plugin-node-resolve":"16.0.1","@commitlint/config-conventional":"20.0.0","@typescript-eslint/eslint-plugin":"8.45.0","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.11_1759505505703_0.24261564093677412","host":"s3://npm-registry-packages-npm-production"}},"1.0.12":{"name":"style-to-object","version":"1.0.12","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.12","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"03a30e7f4e555bf50845f8b55c7d5bc2248e03f0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.12.tgz","fileCount":18,"integrity":"sha512-ddJqYnoT4t97QvN2C95bCgt+m7AAgXjVnkk/jxAfmp7EAB8nnqqZYEbMd3em7/vEomDb2LAQKAy1RFfv41mdNw==","signatures":[{"sig":"MEYCIQDdtByWOjjTB6IeOsezslDHCqxScXn5VO8XrJAi5YV+1gIhAN5LUUcmGsjdBanABdw0GwMwqbltMVhlxiVQSxt3EGgo","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.12","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45827},"main":"./cjs/index.js","types":"./esm/index.d.ts","module":"./esm/index.mjs","exports":{"import":{"types":"./esm/index.d.ts","default":"./esm/index.mjs"},"require":{"types":"./cjs/index.d.ts","default":"./cjs/index.js"}},"gitHead":"36f436353f5d0cefc263f84878d24268d79c2623","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist esm","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build && node --test **/*.test.mjs","build:cjs":"tsc --project tsconfig.cjs.json","build:esm":"tsc --project tsconfig.json","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","lint:package":"publint","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"11.6.1","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"24.10.0","dependencies":{"inline-style-parser":"0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"jest":"30.2.0","husky":"9.1.7","tslib":"2.8.1","eslint":"9.38.0","rollup":"4.52.5","globals":"16.4.0","publint":"0.3.15","ts-jest":"29.4.5","ts-node":"10.9.2","prettier":"3.6.2","@eslint/js":"9.38.0","typescript":"5.9.3","@types/jest":"30.0.0","@types/node":"24.9.1","lint-staged":"16.2.6","npm-run-all":"4.1.5","@eslint/compat":"1.4.0","@commitlint/cli":"20.1.0","@eslint/eslintrc":"3.3.1","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.5.4","@rollup/plugin-commonjs":"28.0.9","@rollup/plugin-typescript":"12.3.0","@typescript-eslint/parser":"8.46.2","@rollup/plugin-node-resolve":"16.0.3","@commitlint/config-conventional":"20.0.0","@typescript-eslint/eslint-plugin":"8.46.2","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.12_1761322687940_0.4622032125989455","host":"s3://npm-registry-packages-npm-production"}},"1.0.13":{"name":"style-to-object","version":"1.0.13","keywords":["style-to-object","inline","style","parser","css","object","pojo"],"author":{"name":"Mark","email":"mark@remarkablemark.org"},"license":"MIT","_id":"style-to-object@1.0.13","maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"homepage":"https://github.com/remarkablemark/style-to-object#readme","bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"dist":{"shasum":"2473334b96a12c057144fa09a06f52621c2a2624","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.13.tgz","fileCount":18,"integrity":"sha512-/vyYeGGA3Z3Hno6J9dg8pf8+ooUzImdokbc6mV2PHRDBMw4x0j1ltxeujUYmpH66311kwxZjMPVFOi97IoIx1w==","signatures":[{"sig":"MEUCIQDKlw48ZlnhexNvya9IjFBQ+z2YEO+iEGPbRW5KS+YQwwIgI3+X3wIAg7r5pUBn+piE6xAlXGar0rBOxanUwB01Njg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.13","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45764},"main":"./cjs/index.js","types":"./esm/index.d.ts","module":"./esm/index.mjs","exports":{"import":{"types":"./esm/index.d.ts","default":"./esm/index.mjs"},"require":{"types":"./cjs/index.d.ts","default":"./cjs/index.js"}},"gitHead":"e40a58fd4740eb9b17ff43be2fd82cbff5640010","scripts":{"lint":"eslint .","test":"jest","build":"run-s build:*","clean":"rm -rf cjs coverage dist esm","prepare":"husky","test:ci":"CI=true jest --ci --colors --coverage","lint:fix":"npm run lint -- --fix","lint:tsc":"tsc --noEmit","test:esm":"npm run build && node --test **/*.test.mjs","build:cjs":"tsc --project tsconfig.cjs.json","build:esm":"tsc --project tsconfig.json","build:umd":"rollup --config --failAfterWarnings","test:watch":"npm run test -- --watch","lint:package":"publint","prepublishOnly":"run-s lint lint:tsc test clean build"},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"repository":{"url":"git+https://github.com/remarkablemark/style-to-object.git","type":"git"},"_npmVersion":"11.6.2","description":"Parse CSS inline style to JavaScript object.","directories":{},"_nodeVersion":"24.11.1","dependencies":{"inline-style-parser":"0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"jest":"30.2.0","husky":"9.1.7","tslib":"2.8.1","eslint":"9.39.1","rollup":"4.53.2","globals":"16.5.0","publint":"0.3.15","ts-jest":"29.4.5","ts-node":"10.9.2","prettier":"3.6.2","@eslint/js":"9.39.1","typescript":"5.9.3","@types/jest":"30.0.0","@types/node":"24.10.1","lint-staged":"16.2.6","npm-run-all":"4.1.5","@eslint/compat":"2.0.0","@commitlint/cli":"20.1.0","@eslint/eslintrc":"3.3.1","@rollup/plugin-terser":"0.4.4","eslint-plugin-prettier":"5.5.4","@rollup/plugin-commonjs":"29.0.0","@rollup/plugin-typescript":"12.3.0","@typescript-eslint/parser":"8.46.4","@rollup/plugin-node-resolve":"16.0.3","@commitlint/config-conventional":"20.0.0","@typescript-eslint/eslint-plugin":"8.46.4","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/style-to-object_1.0.13_1763260482716_0.22227418990733883","host":"s3://npm-registry-packages-npm-production"}},"1.0.14":{"name":"style-to-object","version":"1.0.14","description":"Parse CSS inline style to JavaScript object.","author":{"name":"Mark","email":"mark@remarkablemark.org"},"main":"./cjs/index.js","module":"./esm/index.mjs","types":"./esm/index.d.ts","exports":{"import":{"types":"./esm/index.d.ts","default":"./esm/index.mjs"},"require":{"types":"./cjs/index.d.ts","default":"./cjs/index.js"}},"scripts":{"build":"run-s build:*","build:cjs":"tsc --project tsconfig.cjs.json","build:esm":"tsc --project tsconfig.json","build:umd":"rollup --config --failAfterWarnings","clean":"rm -rf cjs coverage dist esm","lint":"eslint .","lint:fix":"npm run lint -- --fix","lint:package":"publint","lint:tsc":"tsc --noEmit","prepare":"husky","prepublishOnly":"run-s lint lint:tsc test clean build","test":"jest","test:ci":"CI=true jest --ci --colors --coverage","test:esm":"npm run build && node --test **/*.test.mjs","test:watch":"npm run test -- --watch"},"repository":{"type":"git","url":"git+https://github.com/remarkablemark/style-to-object.git"},"bugs":{"url":"https://github.com/remarkablemark/style-to-object/issues"},"keywords":["style-to-object","inline","style","parser","css","object","pojo"],"dependencies":{"inline-style-parser":"0.2.7"},"devDependencies":{"@commitlint/cli":"20.1.0","@commitlint/config-conventional":"20.0.0","@eslint/compat":"2.0.0","@eslint/eslintrc":"3.3.1","@eslint/js":"9.39.1","@rollup/plugin-commonjs":"29.0.0","@rollup/plugin-node-resolve":"16.0.3","@rollup/plugin-terser":"0.4.4","@rollup/plugin-typescript":"12.3.0","@types/jest":"30.0.0","@types/node":"24.10.1","@typescript-eslint/eslint-plugin":"8.46.4","@typescript-eslint/parser":"8.46.4","eslint":"9.39.1","eslint-plugin-prettier":"5.5.4","eslint-plugin-simple-import-sort":"12.1.1","globals":"16.5.0","husky":"9.1.7","jest":"30.2.0","lint-staged":"16.2.6","npm-run-all":"4.1.5","prettier":"3.6.2","publint":"0.3.15","rollup":"4.53.2","ts-jest":"29.4.5","ts-node":"10.9.2","tslib":"2.8.1","typescript":"5.9.3"},"license":"MIT","gitHead":"6afc04999b9dbd5500b0670c416a69ac7409ab68","_id":"style-to-object@1.0.14","homepage":"https://github.com/remarkablemark/style-to-object#readme","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==","shasum":"1d22f0e7266bb8c6d8cae5caf4ec4f005e08f611","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/style-to-object/-/style-to-object-1.0.14.tgz","fileCount":18,"unpackedSize":45764,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/style-to-object@1.0.14","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCMVZXOd565IJ01CAqhjbR6uvQvqEWoMfkMUTjeGU+MIgIgfSTOUVRySf3EgNrn4NSjoz5lelzq0RRV4XSj74eeAHI="}]},"_npmUser":{"name":"anonymous","email":"mark@remarkablemark.org"},"directories":{},"maintainers":[{"name":"anonymous","email":"mark@remarkablemark.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/style-to-object_1.0.14_1763274197325_0.15254051902357113"},"_hasShrinkwrap":false}},"name":"style-to-object","time":{"created":"2017-11-23T23:09:16.880Z","modified":"2025-11-16T06:23:17.985Z","0.1.0":"2017-11-23T23:09:16.880Z","0.2.0":"2017-11-26T05:17:12.220Z","0.2.1":"2018-05-09T01:00:51.116Z","0.2.2":"2018-09-14T00:08:53.564Z","0.2.3":"2019-06-23T00:00:37.454Z","0.3.0":"2019-11-07T05:09:12.588Z","0.4.0":"2022-12-03T02:13:08.929Z","0.4.1":"2023-01-16T23:43:33.845Z","0.4.2":"2023-08-02T03:10:20.537Z","0.4.3":"2023-10-14T22:54:13.092Z","0.4.4":"2023-10-15T16:39:24.432Z","1.0.0":"2023-10-15T18:21:05.199Z","1.0.1":"2023-10-17T03:48:51.590Z","1.0.2":"2023-10-19T23:42:00.052Z","1.0.3":"2023-10-20T01:06:51.398Z","1.0.4":"2023-10-31T05:05:47.368Z","1.0.5":"2023-12-01T02:58:28.511Z","1.0.6":"2024-03-27T01:21:51.931Z","1.0.7":"2024-08-28T18:21:07.961Z","1.0.8":"2024-09-11T19:23:57.892Z","1.0.9":"2025-06-06T17:15:07.389Z","1.0.10":"2025-10-02T18:33:24.112Z","1.0.11":"2025-10-03T15:31:45.916Z","1.0.12":"2025-10-24T16:18:08.148Z","1.0.13":"2025-11-16T02:34:42.982Z","1.0.14":"2025-11-16T06:23:17.550Z"},"readmeFilename":"README.md","homepage":"https://github.com/remarkablemark/style-to-object#readme"}