{"_attachments":{},"_id":"sass","_rev":"2995-61f14a704ce7cf8f58268012","author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"description":"A pure JavaScript implementation of Sass.","dist-tags":{"latest":"1.100.0","rc":"1.45.0-rc.2","test":"1.26.0-test.3"},"license":"MIT","maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"}],"name":"sass","readme":"A pure JavaScript implementation of [Sass][sass]. **Sass makes CSS fun again**.\n\n<table>\n  <tr>\n    <td>\n      <img width=\"118px\" alt=\"Sass logo\" src=\"https://rawgit.com/sass/sass-site/master/source/assets/img/logos/logo.svg\" />\n    </td>\n    <td valign=\"middle\">\n      <a href=\"https://www.npmjs.com/package/sass\"><img width=\"100%\" alt=\"npm statistics\" src=\"https://nodei.co/npm/sass.png?downloads=true\"></a>\n    </td>\n    <td valign=\"middle\">\n      <a href=\"https://github.com/sass/dart-sass/actions\"><img alt=\"GitHub actions build status\" src=\"https://github.com/sass/dart-sass/workflows/CI/badge.svg\"></a>\n      <br>\n      <a href=\"https://ci.appveyor.com/project/nex3/dart-sass\"><img alt=\"Appveyor build status\" src=\"https://ci.appveyor.com/api/projects/status/84rl9hvu8uoecgef?svg=true\"></a>\n    </td>\n  </tr>\n</table>\n\n[sass]: https://sass-lang.com/\n\nThis package is a distribution of [Dart Sass][], compiled to pure JavaScript\nwith no native code or external dependencies. It provides a command-line `sass`\nexecutable and a Node.js API.\n\n[Dart Sass]: https://github.com/sass/dart-sass\n\n* [Usage](#usage)\n* [See Also](#see-also)\n* [Behavioral Differences from Ruby Sass](#behavioral-differences-from-ruby-sass)\n\n## Usage\n\nYou can install Sass globally using `npm install -g sass` which will provide\naccess to the `sass` executable. You can also add it to your project using\n`npm install --save-dev sass`. This provides the executable as well as a\nlibrary:\n\n[npm]: https://www.npmjs.com/package/sass\n\n```js\nconst sass = require('sass');\n\nconst result = sass.compile(scssFilename);\n\n// OR\n\n// Note that `compileAsync()` is substantially slower than `compile()`.\nconst result = await sass.compileAsync(scssFilename);\n```\n\nSee [the Sass website][js api] for full API documentation.\n\n[js api]: https://sass-lang.com/documentation/js-api\n\n### Legacy API\n\nDart Sass also supports an older JavaScript API that's fully compatible with\n[Node Sass] (with a few exceptions listed below), with support for both the\n[`render()`] and [`renderSync()`] functions. This API is considered deprecated\nand will be removed in Dart Sass 2.0.0, so it should be avoided in new projects.\n\n[Node Sass]: https://github.com/sass/node-sass\n[`render()`]: https://sass-lang.com/documentation/js-api/functions/render\n[`renderSync()`]: https://sass-lang.com/documentation/js-api/functions/renderSync\n\nSass's support for the legacy JavaScript API has the following limitations:\n\n* Only the `\"expanded\"` and `\"compressed\"` values of [`outputStyle`] are\n  supported.\n\n* Dart Sass doesn't support the [`precision`] option. Dart Sass defaults to a\n  sufficiently high precision for all existing browsers, and making this\n  customizable would make the code substantially less efficient.\n\n* Dart Sass doesn't support the [`sourceComments`] option. Source maps are the\n  recommended way of locating the origin of generated selectors.\n\n[`outputStyle`]: https://sass-lang.com/documentation/js-api/interfaces/LegacySharedOptions#outputStyle\n[`precision`]: https://github.com/sass/node-sass#precision\n[`sourceComments`]: https://github.com/sass/node-sass#sourcecomments\n\n## See Also\n\n* [Dart Sass][], from which this package is compiled, can be used either as a\n  stand-alone executable or as a Dart library. Running Dart Sass on the Dart VM\n  is substantially faster than running the pure JavaScript version, so this may\n  be appropriate for performance-sensitive applications. The Dart API is also\n  (currently) more user-friendly than the JavaScript API. See\n  [the Dart Sass README][Using Dart Sass] for details on how to use it.\n\n* [Node Sass][], which is a wrapper around [LibSass][], the C++ implementation\n  of Sass. Node Sass supports the same API as this package and is also faster\n  (although it's usually a little slower than Dart Sass). However, it requires a\n  native library which may be difficult to install, and it's generally slower to\n  add features and fix bugs.\n\n[Using Dart Sass]: https://github.com/sass/dart-sass#using-dart-sass\n[Node Sass]: https://www.npmjs.com/package/node-sass\n[LibSass]: https://sass-lang.com/libsass\n\n## Behavioral Differences from Ruby Sass\n\nThere are a few intentional behavioral differences between Dart Sass and Ruby\nSass. These are generally places where Ruby Sass has an undesired behavior, and\nit's substantially easier to implement the correct behavior than it would be to\nimplement compatible behavior. These should all have tracking bugs against Ruby\nSass to update the reference behavior.\n\n1. `@extend` only accepts simple selectors, as does the second argument of\n   `selector-extend()`. See [issue 1599][].\n\n2. Subject selectors are not supported. See [issue 1126][].\n\n3. Pseudo selector arguments are parsed as `<declaration-value>`s rather than\n   having a more limited custom parsing. See [issue 2120][].\n\n4. The numeric precision is set to 10. See [issue 1122][].\n\n5. The indented syntax parser is more flexible: it doesn't require consistent\n   indentation across the whole document. See [issue 2176][].\n\n6. Colors do not support channel-by-channel arithmetic. See [issue 2144][].\n\n7. Unitless numbers aren't `==` to unit numbers with the same value. In\n   addition, map keys follow the same logic as `==`-equality. See\n   [issue 1496][].\n\n8. `rgba()` and `hsla()` alpha values with percentage units are interpreted as\n   percentages. Other units are forbidden. See [issue 1525][].\n\n9. Too many variable arguments passed to a function is an error. See\n   [issue 1408][].\n\n10. Allow `@extend` to reach outside a media query if there's an identical\n    `@extend` defined outside that query. This isn't tracked explicitly, because\n    it'll be irrelevant when [issue 1050][] is fixed.\n\n11. Some selector pseudos containing placeholder selectors will be compiled\n    where they wouldn't be in Ruby Sass. This better matches the semantics of\n    the selectors in question, and is more efficient. See [issue 2228][].\n\n12. The old-style `:property value` syntax is not supported in the indented\n    syntax. See [issue 2245][].\n\n13. The reference combinator is not supported. See [issue 303][].\n\n14. Universal selector unification is symmetrical. See [issue 2247][].\n\n15. `@extend` doesn't produce an error if it matches but fails to unify. See\n    [issue 2250][].\n\n16. Dart Sass currently only supports UTF-8 documents. We'd like to support\n    more, but Dart currently doesn't support them. See [dart-lang/sdk#11744][],\n    for example.\n\n[issue 1599]: https://github.com/sass/sass/issues/1599\n[issue 1126]: https://github.com/sass/sass/issues/1126\n[issue 2120]: https://github.com/sass/sass/issues/2120\n[issue 1122]: https://github.com/sass/sass/issues/1122\n[issue 2176]: https://github.com/sass/sass/issues/2176\n[issue 2144]: https://github.com/sass/sass/issues/2144\n[issue 1496]: https://github.com/sass/sass/issues/1496\n[issue 1525]: https://github.com/sass/sass/issues/1525\n[issue 1408]: https://github.com/sass/sass/issues/1408\n[issue 1050]: https://github.com/sass/sass/issues/1050\n[issue 2228]: https://github.com/sass/sass/issues/2228\n[issue 2245]: https://github.com/sass/sass/issues/2245\n[issue 303]: https://github.com/sass/sass/issues/303\n[issue 2247]: https://github.com/sass/sass/issues/2247\n[issue 2250]: https://github.com/sass/sass/issues/2250\n[dart-lang/sdk#11744]: https://github.com/dart-lang/sdk/issues/11744\n\nDisclaimer: this is not an official Google product.\n","time":{"created":"2022-01-26T13:19:44.889Z","modified":"2026-05-22T02:24:26.132Z","1.49.7":"2022-02-01T22:05:05.402Z","1.49.6":"2022-02-01T21:11:26.869Z","1.49.5":"2022-02-01T20:30:54.500Z","1.49.4":"2022-02-01T01:38:48.201Z","1.49.3":"2022-02-01T01:00:39.476Z","1.49.2":"2022-02-01T00:39:13.938Z","1.49.1":"2022-01-31T23:54:12.595Z","1.45.0":"2021-12-10T22:44:51.032Z","1.45.0-rc.2":"2021-12-02T23:16:50.711Z","1.45.0-rc.1":"2021-11-30T23:48:49.322Z","1.44.0":"2021-11-30T02:18:55.545Z","1.43.5":"2021-11-24T23:37:52.530Z","1.43.4":"2021-10-26T21:25:10.644Z","1.43.3":"2021-10-21T20:57:11.562Z","1.43.2":"2021-10-13T22:31:02.844Z","1.42.1":"2021-09-22T07:29:01.310Z","1.42.0":"2021-09-21T00:18:27.467Z","1.41.1":"2021-09-16T22:15:53.270Z","1.41.0":"2021-09-14T23:18:42.600Z","1.40.1":"2021-09-14T09:01:29.634Z","1.40.0":"2021-09-13T23:54:51.422Z","1.39.2":"2021-09-10T00:06:53.569Z","1.39.1":"2021-09-09T23:17:48.864Z","1.39.0":"2021-09-02T01:08:33.919Z","1.38.2":"2021-08-28T08:11:25.747Z","1.38.1":"2021-08-23T23:53:17.775Z","1.38.0":"2021-08-17T00:15:59.226Z","1.37.5":"2021-08-04T01:44:53.974Z","1.37.4":"2021-08-03T23:43:36.691Z","1.37.3":"2021-08-03T22:07:57.731Z","1.37.2":"2021-08-03T00:17:08.276Z","1.37.1":"2021-08-02T22:03:22.252Z","1.37.0":"2021-07-30T23:52:23.434Z","1.36.0":"2021-07-23T21:24:19.133Z","1.35.2":"2021-07-07T19:33:00.426Z","1.35.1":"2021-06-15T20:54:55.843Z","1.35.0":"2021-06-15T00:59:14.498Z","1.34.1":"2021-06-02T22:09:26.072Z","1.34.0":"2021-05-22T06:18:09.675Z","1.33.0":"2021-05-21T00:59:46.796Z","1.32.13":"2021-05-12T16:28:36.709Z","1.32.12":"2021-04-28T21:50:15.798Z","1.32.11":"2021-04-19T20:01:17.576Z","1.32.10":"2021-04-16T23:56:36.541Z","1.32.9":"2021-04-16T20:29:52.908Z","1.32.8":"2021-02-18T22:07:46.319Z","1.32.7":"2021-02-10T01:08:21.848Z","1.32.6":"2021-02-01T23:25:18.943Z","1.32.5":"2021-01-20T04:43:44.758Z","1.32.4":"2021-01-12T02:03:46.663Z","1.32.3":"2021-01-12T00:30:20.442Z","1.32.2":"2021-01-07T00:04:00.005Z","1.32.1":"2021-01-06T21:43:49.163Z","1.32.0":"2020-12-30T00:15:33.696Z","1.30.0":"2020-12-04T23:26:06.232Z","1.29.0":"2020-11-05T01:03:55.611Z","1.28.0":"2020-10-29T23:34:17.137Z","1.27.2":"2020-10-29T21:34:47.248Z","1.27.1":"2020-10-28T23:41:10.836Z","1.27.0":"2020-10-08T00:43:51.884Z","1.26.12":"2020-10-06T03:25:09.949Z","1.26.11":"2020-09-18T01:43:50.409Z","1.26.10":"2020-07-06T23:18:01.925Z","1.26.9":"2020-06-22T22:11:54.066Z","1.26.8":"2020-06-05T00:43:04.279Z","1.26.7":"2020-05-29T00:25:51.207Z","1.26.6":"2020-05-28T21:49:27.985Z","1.26.5":"2020-04-24T02:34:56.717Z","1.26.3":"2020-03-11T22:55:24.076Z","1.26.2":"2020-02-29T00:29:53.540Z","1.26.1":"2020-02-25T22:46:31.901Z","1.26.0":"2020-02-24T20:21:33.762Z","1.26.0-test.3":"2020-02-19T22:21:24.477Z","1.26.0-test.2":"2020-02-14T00:47:40.005Z","1.26.0-test.1":"2020-02-08T02:33:16.773Z","1.25.1-test.1":"2020-01-25T01:29:51.912Z","1.25.0":"2020-01-17T23:48:46.936Z","1.24.5":"2020-01-16T22:27:01.338Z","1.24.4":"2020-01-09T21:57:52.217Z","1.24.3":"2020-01-07T22:41:03.661Z","1.24.2":"2020-01-04T00:17:58.888Z","1.24.1":"2020-01-03T00:51:32.257Z","1.24.0":"2019-12-20T18:52:21.907Z","1.23.7":"2019-11-19T23:31:07.763Z","1.23.6":"2019-11-16T01:46:06.772Z","1.23.5":"2019-11-16T00:34:56.240Z","1.23.3":"2019-11-01T06:33:36.658Z","1.23.2":"2019-10-30T19:30:19.546Z","1.23.1":"2019-10-23T00:32:14.943Z","1.23.0":"2019-10-02T01:29:43.242Z","1.22.12":"2019-09-11T21:23:47.593Z","1.23.0-module.beta.1":"2019-09-03T20:04:57.112Z","1.22.10":"2019-08-16T21:16:48.240Z","1.22.9":"2019-07-29T22:23:03.210Z","1.22.7":"2019-07-18T21:32:53.448Z","1.22.6":"2019-07-17T23:12:09.724Z","1.22.5":"2019-07-15T22:24:43.654Z","1.22.4":"2019-07-12T01:52:22.327Z","1.22.3":"2019-07-04T01:37:33.248Z","1.22.2":"2019-07-01T21:22:53.724Z","1.22.1":"2019-06-27T00:06:01.269Z","1.22.0":"2019-06-25T00:25:09.768Z","1.21.0":"2019-06-06T21:04:42.331Z","1.20.3":"2019-05-31T16:45:01.053Z","1.20.1":"2019-05-03T21:40:52.601Z","1.19.0":"2019-04-19T01:11:37.903Z","1.18.0":"2019-04-08T22:24:16.401Z","1.17.4":"2019-04-03T08:50:25.344Z","1.17.3":"2019-03-15T20:23:53.363Z","1.17.2":"2019-02-23T00:27:03.930Z","1.17.1":"2019-02-20T22:15:08.430Z","1.17.0":"2019-02-04T21:55:59.387Z","1.16.1":"2019-01-17T23:38:53.105Z","1.16.0":"2019-01-10T00:48:15.701Z","1.16.0-dev":"2019-01-09T21:29:19.206Z","1.15.3":"2019-01-04T21:05:15.559Z","1.15.2":"2018-12-06T23:37:44.768Z","1.15.1":"2018-11-16T22:24:29.707Z","1.15.0":"2018-11-14T22:11:38.281Z","1.14.3":"2018-10-18T00:26:39.479Z","1.14.2":"2018-10-11T22:36:58.415Z","1.14.1":"2018-09-27T01:32:53.441Z","1.14.0":"2018-09-19T21:11:38.957Z","1.13.4":"2018-09-11T22:04:34.268Z","1.13.3":"2018-09-11T19:42:37.896Z","1.13.2":"2018-09-05T22:59:24.592Z","1.13.1":"2018-09-01T00:43:32.811Z","1.13.0":"2018-08-17T21:00:15.907Z","1.12.0":"2018-08-15T20:52:25.095Z","1.11.0":"2018-08-13T20:51:11.762Z","1.10.4":"2018-08-10T00:02:25.086Z","1.10.3":"2018-08-03T21:50:56.241Z","1.10.2":"2018-08-02T23:45:50.702Z","1.10.1":"2018-07-25T00:35:19.448Z","1.10.0":"2018-07-18T22:52:45.298Z","1.9.2":"2018-07-13T18:46:28.898Z","1.9.1":"2018-07-11T21:15:17.286Z","1.9.0":"2018-07-04T00:43:06.870Z","1.8.0":"2018-06-30T01:42:35.774Z","1.7.3":"2018-06-28T01:12:30.823Z","1.7.2":"2018-06-27T20:30:48.480Z","1.7.1":"2018-06-25T20:33:44.953Z","1.7.0":"2018-06-22T20:04:23.073Z","1.6.2":"2018-06-20T01:12:09.020Z","1.6.1":"2018-06-15T21:58:59.001Z","1.6.0":"2018-06-15T00:29:37.521Z","1.5.1":"2018-06-01T01:04:20.573Z","1.5.0":"2018-05-31T01:20:36.269Z","1.4.0":"2018-05-28T22:03:16.044Z","1.3.2":"2018-05-04T00:34:48.927Z","1.3.1":"2018-05-03T00:21:01.622Z","1.3.0":"2018-04-26T01:33:12.055Z","1.2.1":"2018-04-19T22:35:36.455Z","1.2.0":"2018-04-14T23:26:22.247Z","1.1.1":"2018-03-27T21:34:15.228Z","1.1.0":"2018-03-27T21:02:48.545Z","1.0.0":"2018-03-26T20:04:17.865Z","1.0.0-rc.1":"2018-03-16T23:49:13.655Z","1.0.0-beta.5.3":"2018-03-06T00:49:07.628Z","1.0.0-beta.5.2":"2018-02-04T03:39:28.901Z","1.0.0-beta.5.1":"2018-02-03T01:43:47.241Z","1.0.0-beta.4":"2017-12-08T23:57:35.781Z","1.0.0-beta.3":"2017-11-03T21:53:46.452Z","1.0.0-beta.2":"2017-07-15T01:57:41.669Z","1.0.0-beta.1":"2017-06-06T22:11:02.700Z","0.5.0":"2017-06-06T20:36:44.615Z","0.4.3":"2017-06-06T20:36:44.615Z","0.4.2":"2017-06-06T20:36:44.615Z","0.4.1":"2017-06-06T20:36:44.615Z","0.4.0":"2017-06-06T20:36:44.615Z","1.45.1":"2021-12-21T00:33:01.149Z","1.45.2":"2021-12-31T00:20:30.029Z","1.46.0":"2022-01-06T00:58:24.134Z","1.47.0":"2022-01-07T23:29:30.661Z","1.48.0":"2022-01-13T02:56:49.395Z","1.49.0":"2022-01-18T22:53:14.100Z","1.49.8":"2022-02-17T21:34:33.195Z","1.49.9":"2022-02-24T20:38:46.977Z","1.49.10":"2022-03-30T22:25:04.695Z","1.49.11":"2022-04-01T22:47:21.354Z","1.50.0":"2022-04-07T02:30:25.045Z","1.50.1":"2022-04-19T00:57:35.481Z","1.51.0":"2022-04-26T02:31:20.630Z","1.52.0":"2022-05-20T00:04:47.126Z","1.52.1":"2022-05-20T22:13:40.889Z","1.52.2":"2022-06-03T02:31:04.242Z","1.52.3":"2022-06-08T23:59:07.990Z","1.53.0":"2022-06-22T19:35:43.528Z","1.54.0":"2022-07-22T21:38:51.939Z","1.54.1":"2022-08-02T23:51:26.383Z","1.54.2":"2022-08-03T23:50:52.225Z","1.54.3":"2022-08-04T20:46:50.458Z","1.54.4":"2022-08-10T00:56:45.450Z","1.54.5":"2022-08-19T22:48:58.132Z","1.54.6":"2022-08-29T23:26:41.286Z","1.54.7":"2022-08-31T00:01:58.756Z","1.54.8":"2022-08-31T21:55:19.708Z","1.54.9":"2022-09-07T21:36:04.977Z","1.55.0":"2022-09-21T22:47:50.235Z","1.56.0":"2022-11-04T00:18:06.832Z","1.56.1":"2022-11-09T01:58:34.658Z","1.56.2":"2022-12-08T21:42:35.880Z","1.57.0":"2022-12-17T00:48:16.535Z","1.57.1":"2022-12-19T23:52:16.592Z","1.58.0":"2023-02-01T01:08:59.989Z","1.58.1":"2023-02-14T00:55:25.751Z","1.58.2":"2023-02-17T01:37:26.776Z","1.58.3":"2023-02-18T00:38:56.458Z","1.59.0":"2023-03-10T22:34:59.340Z","1.59.1":"2023-03-10T23:46:02.557Z","1.59.2":"2023-03-11T01:18:41.768Z","1.59.3":"2023-03-14T21:19:31.045Z","1.60.0":"2023-03-23T23:11:57.410Z","1.61.0":"2023-04-06T21:53:44.326Z","1.62.0":"2023-04-11T22:54:57.230Z","1.62.1":"2023-04-25T23:30:30.347Z","1.63.0":"2023-06-07T20:54:25.404Z","1.63.1":"2023-06-08T00:27:10.495Z","1.63.2":"2023-06-08T01:40:15.721Z","1.63.3":"2023-06-09T15:55:04.137Z","1.63.4":"2023-06-14T00:49:49.412Z","1.63.5":"2023-06-21T01:13:39.991Z","1.63.6":"2023-06-21T22:10:32.371Z","1.64.0":"2023-07-20T00:13:15.533Z","1.64.1":"2023-07-22T00:10:26.300Z","1.64.2":"2023-07-31T23:39:08.698Z","1.65.0":"2023-08-09T21:45:11.359Z","1.65.1":"2023-08-09T22:58:48.488Z","1.66.0":"2023-08-17T19:26:14.641Z","1.66.1":"2023-08-18T22:00:32.157Z","1.67.0":"2023-09-14T00:46:28.967Z","1.68.0":"2023-09-21T01:05:28.045Z","1.69.0":"2023-10-05T22:48:09.876Z","1.69.1":"2023-10-09T23:51:56.977Z","1.69.2":"2023-10-10T18:47:45.480Z","1.69.3":"2023-10-12T00:06:02.812Z","1.69.4":"2023-10-17T21:42:46.346Z","1.69.5":"2023-10-26T00:55:57.857Z","1.69.6":"2023-12-28T23:26:19.921Z","1.69.7":"2024-01-02T22:13:40.130Z","1.70.0":"2024-01-18T03:05:52.646Z","1.71.0":"2024-02-16T01:47:32.044Z","1.71.1":"2024-02-21T01:53:22.294Z","1.72.0":"2024-03-13T21:03:17.354Z","1.74.1":"2024-04-04T01:02:48.922Z","1.75.0":"2024-04-11T23:05:47.435Z","1.76.0":"2024-04-30T21:34:40.376Z","1.77.0":"2024-05-07T01:03:43.974Z","1.77.1":"2024-05-10T23:02:02.551Z","1.77.2":"2024-05-16T22:18:08.178Z","1.77.3":"2024-05-29T21:52:19.971Z","1.77.4":"2024-05-30T23:37:44.289Z","1.77.5":"2024-06-11T23:51:20.861Z","1.77.6":"2024-06-17T20:54:28.583Z","1.77.7":"2024-07-09T21:53:26.607Z","1.77.8":"2024-07-11T19:59:00.512Z","1.78.0":"2024-09-03T22:54:07.113Z","1.79.0":"2024-09-17T23:11:58.130Z","1.79.1":"2024-09-18T00:20:16.596Z","1.79.2":"2024-09-19T22:57:38.180Z","1.79.3":"2024-09-20T21:07:50.729Z","1.79.4":"2024-09-28T03:11:33.759Z","1.79.5":"2024-10-11T00:27:59.831Z","1.79.6":"2024-10-16T23:00:16.650Z","1.80.0":"2024-10-17T00:18:43.656Z","1.80.1":"2024-10-17T03:11:23.556Z","1.80.2":"2024-10-17T20:46:51.433Z","1.80.3":"2024-10-18T23:44:12.093Z","1.80.4":"2024-10-23T22:42:57.897Z","1.80.5":"2024-10-29T22:02:25.395Z","1.80.6":"2024-11-01T23:16:15.961Z","1.80.7":"2024-11-12T23:22:31.612Z","1.81.0":"2024-11-15T01:30:56.500Z","1.81.1":"2024-12-03T01:25:13.208Z","1.82.0":"2024-12-03T23:06:52.291Z","1.83.0":"2024-12-12T22:31:59.445Z","1.83.1":"2025-01-04T01:25:18.746Z","1.83.2":"2025-01-14T00:50:11.807Z","1.83.3":"2025-01-14T01:42:02.690Z","1.83.4":"2025-01-14T06:32:10.642Z","1.84.0":"2025-02-06T00:11:01.852Z","1.85.0":"2025-02-14T00:34:21.581Z","1.85.1":"2025-02-25T01:19:43.650Z","1.86.0":"2025-03-17T21:46:53.750Z","1.86.1":"2025-03-31T20:58:39.721Z","1.86.2":"2025-04-02T23:10:33.621Z","1.86.3":"2025-04-04T00:11:49.974Z","1.87.0":"2025-04-21T23:00:13.947Z","1.88.0":"2025-05-10T22:29:40.076Z","1.89.0":"2025-05-16T00:46:48.909Z","1.89.1":"2025-05-30T23:49:55.478Z","1.89.2":"2025-06-09T19:19:19.001Z","1.90.0":"2025-08-05T22:09:21.665Z","1.91.0":"2025-08-25T21:21:35.214Z","1.92.0":"2025-09-02T20:32:47.256Z","1.92.1":"2025-09-05T23:50:53.223Z","1.93.0":"2025-09-19T22:24:05.055Z","1.93.1":"2025-09-22T22:12:02.552Z","1.93.2":"2025-09-23T21:36:59.613Z","1.93.3":"2025-10-31T14:46:59.955Z","1.94.0":"2025-11-10T23:58:31.269Z","1.94.1":"2025-11-18T01:42:00.336Z","1.94.2":"2025-11-19T23:03:33.230Z","1.94.3":"2025-12-08T18:18:46.448Z","1.95.0":"2025-12-08T19:23:09.092Z","1.95.1":"2025-12-09T23:48:02.273Z","1.96.0":"2025-12-11T00:17:14.898Z","1.97.0":"2025-12-16T06:38:40.003Z","1.97.1":"2025-12-19T21:35:09.703Z","1.97.2":"2026-01-06T00:43:54.589Z","1.97.3":"2026-01-21T23:35:45.264Z","1.98.0":"2026-03-10T22:58:06.714Z","1.99.0":"2026-04-02T23:38:45.760Z","1.100.0":"2026-05-22T00:37:34.033Z"},"versions":{"1.49.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.7","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"e3bf3eb3a3a8708877a86a08c7e3bee92160ac1f","_id":"sass@1.49.7","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-13dml55EMIR2rS4d/RDHHP0sXMY3+30e1TKsyXaSz3iLWVoDWEoboY8WzJd5JMnxrRHffKO3wq2mpJ0jxRJiEQ==","shasum":"22a86a50552b9b11f71404dfad1b9ff44c6b0c49","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.7.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+a6RCRA9TVsSAnZWagAA8bMP/iT6g1Iq5h+Dgd9oOCsn\nIGwWu9T/I3kSDAmETcJ4UrMFCWExIefejlcHw8hGirCsbuuSAtphK1aEPkod\nq5ELrIh88WxsfJtRpCkUO2ml4rGr37iXvrYDjKny0mBgns1RR8VzKpfsJzwz\nb3+fKYdU/OjIcD2E1HKBNdu7AdamySIrtZ+TKAhZuY7G2NUm+ZTrJj+Jdk5i\nOs1zT2gajtb8mMdmaSF5nLomKcr7AiLCQzMatrt/bmzNwQBKAXdHdJHfwd1B\n49oHtlclXcpEQeGtkZWPl0LaC1Y7DQS2BbiZ8v/oI1pbGP5snrygvw1l9bJ8\nyRtYWTwW4jA3+GazOmfMl5/MteoINm5fdQ6Xu/8lvF+84NOI7D8dPRpTJZRK\nRE287YKDijSLZ0WgZZ0rQ3w4JYTO/KwKOIGMHHT5Ozy9VP6XBbp2Go23n7oi\ncH8Nw+rWc4FBW0S6lNgu2ZhftoAAZvvS15Q8tGApx5gUB6QGxLt2qfwjOf+b\nonaL2MJkHUcGRTMCRwUGBwanmZfOQx4pX3Ax9G2VTML7zpom2wmzfA6MZLBq\ngsas+4ePGm9h/rcVpyi25vtRHrjs4FodnCfAxl58WMs9+XYXMGvI4gR+ZfrN\ntEvRa4iRfJAczwJ8/waLs2jN22n3qUVwEiLWcZSqMQE9TteSxkPgEZTSrswP\nIxmC\r\n=LCv5\r\n-----END PGP SIGNATURE-----\r\n","size":682968},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.7_1643753105124_0.9747446854230213"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T22:05:13.112Z"},"1.49.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.6","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"408eddb1ac2a5081417de60ff43a1acf5a1611b2","_id":"sass@1.49.6","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-b6/xpPgSfnM2FObLVsSU8HmNPp9VyVesprFMBDZ+kdLXpRyqhObdn1jjAxW/iDg5cN7Z7pKnkFlKHJKwXJ2Q9w==","shasum":"bc9f30bd450e8007e8601e2e0db8676da08bbea8","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.6.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+aH+CRA9TVsSAnZWagAALjUP/ihm9JJ1Jv9Uro7O6zk/\n/EC5JmLLO+wZRj8eOl5AqiOJUBmwQShdKxN/WAulTI8U6p07/I8s7WMnrTmZ\nLha9ryKCAxMZkd0+PkCZTD1PSb2m9Q7QsOEGajawJNzOampZHGFSyYJDzccV\noUgoJrdBcOjrMXlWocwVlhASLLnGHb8+uCXILRERKj5Yo3kF3B8CmWAqim45\nE5l3cLafHxMc7z3NgAF60tWRbIXt8HgrG4W+nxQ1nI3GjSp3eMwjxW4yZVfd\nFj4oor5PoAYkXjOxUH8hDPNs4nnQV2+A1L/akF7SLBrsLwRB+0UE1cnFykvl\nKYCBvTW2amIAYD3cGIXp3K3OT9hCymQCP8Y+BtBuLN+18riOXx2/oB0np/bE\nFAzkZU3ZUIZV4JIGgIJ72tBnqOep7MQxtgOWplH6qTdydCutEVl7YUdjHBkh\nn8sGvp+n6j9veXNPJQJPsSwMLHPkdXWy6GDhbjO+v0n8TUlvbb1yqkFS7SKk\nUN/XOwKuHv/SRPbX4zwqYsfqHJpsuacdiPPeUbaKiiFb38GSp/MuLfvTQbE7\nA2B19NRIQ5zKSa7FliLGi7+s0xfYUYk0t1lirdHDNke8Fpls67uWig1Pl/7I\nA64Pq7LeS6t/6g702tdTc4Yb4ih6m0FNEC82xDVonNwAeMn+ITYZDyfcVKrG\nwnBb\r\n=rr6S\r\n-----END PGP SIGNATURE-----\r\n","size":682968},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.6_1643749886606_0.21537453130164086"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T21:11:34.629Z"},"1.49.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.5","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"0070b0ebaad8c76d66447a83a74a54d4168d410c","_id":"sass@1.49.5","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-W3wvezIHsi5unpYQ88I3rtLY8ybYkagiVrYfzoZ2cPtr3gzPfOEJKBU9HNp74k9qrQ3mLDaJsreI7qPuUlw6/A==","shasum":"3df799df2a94126aef62ef29dbde389c34e88196","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.5.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+Zh+CRA9TVsSAnZWagAADioQAJafR/6PAaGfhp/JG/YD\npRdfuJpndzxo4KB8YoF3t02MNutAfGWMrqfYJNlE+GEcg/evfYTpdC6Qf9FG\njoE5lgp49arU7yHaRFaA80Aw2JpMGNYFMu4Eg5HqqNXszUVlp1xK2YbjM8p3\njdxG99+ElBeauaR6siRZYPnLZWJPV1t0Lpw2jYiwGJ3wGQ7FOLoRp1jeM+tk\np8CCZ/LXMnq4V5B06mS4HhXWIjFgyY48DMUJkTKtkPOUIYunCDopCDOnPNz1\nd6pclCezJgd+INIVTiOUzAjf8zRI0/RAHM/ArSGRMjTWRcSsN1UbyUNg37QW\n7GamAVrMxQXDStZ+ifM5dBi7eC041Xr8UC3tuHOH33EvPhyU/1Ycd2SgiJHM\npBJjS7C116QQjARpm76FgXDeGHATpCToa1TPTGRvrZTYji98sSAAjB3/5kW9\ns1MzQgF65V3eupFvTSouF3gDvkfi7DXUUDuB8VWKtqgQRnh+BCn6TIwmmRNS\nJ3RwDHA47BunhJ7gOZty4Wh/fILz0hmZj4nL1LpfdVKn1q2tUO9saQ1QI8w/\nhoKeH6VchpJjyV/H9RWUztaDPWH1KaztrqoKUpxBFHUscONnMnwqL5312fg9\nfgKf/9zeHJDiHG0eX+ccKNwE+JUeBh4K5pQWutE1hSWEA8zjVqFdO/ZxqzF0\n7gqk\r\n=L7yq\r\n-----END PGP SIGNATURE-----\r\n","size":682968},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.5_1643747454243_0.43138216598328283"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T20:31:03.423Z"},"1.49.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.4","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"a5b38e21ba42fc54f0784fdbac55a17434ef3518","_id":"sass@1.49.4","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-xUU5ZlppOjgfEyIIcHpnmY+f+3/ieaadp25S/OqZ5+jBPeTAMJJblkhM6UD9jb4j/lzglz7VOL5kglYt+CvNdQ==","shasum":"d2655e03e52b2212ab65d392bdef6d0931d8637c","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.4.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+I8oCRA9TVsSAnZWagAAPLsP/R61sCUFozxzxCjP2JN3\nZ7wyIbR4dyxLccR3QDji1qP+kQHQnR5u/uddSodWeJM59vTqiALCCr1hdAW8\nmovgNH9llGDlo6H4CMAt1UHhH837DX/ev0yywQhBiYGa7CAv712ixKKtY+Qz\nlg1DTTe5FNFJd9a4GZvf2BjbFtXppjyTAkr/qs8RZ/llYrI/ab8aBowpm3pG\nlvesaRKf1/r8D5Sylj/+u9Gc28xacFn7+qWNYcp2gGjx9WclG2g5ClADiYkH\nZwinlUJ8jlvKDWIDLN2U+q51fI/47hMMRz3McryMbRyEWmYmZD36AXu1T9mn\nlUB6gGEZG9TySpR7Zub8TCZ6B8WBYUlBtlgl7Mnxtegl1Sj4TFTNehj4R4RS\n6bL+oAIny8rIXCXXWhJHXDewyfdiBp5DcBatUSrUMDZGWQE06oU8+uKMMvJC\n9lzwdAcbSJ8cRT6P8FlfJFaHzXdD0Ql0pCk8C+uqnQCzDaEL6hyOC7saKymZ\nLfGpLR5UR79KA0djgka4+w2nOfCFKdKm0L8rQZxHBFXzhdWBNnzgyXZVDASv\nKsucYxx5vPx+ohl2HCJN21yZcTG0to6lF8YHVpyB8VlVmRSLur2o1KUHknBS\nXBtsPKFnfWhS8UbLHTQmASJZ7n1CKoocSPRQCsaD2wknTLtvir8n1p8zDp/X\n4P7q\r\n=OUgA\r\n-----END PGP SIGNATURE-----\r\n","size":682968},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.4_1643679527979_0.6163393971130262"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T01:39:00.331Z"},"1.49.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"75c09a010e761f44a588497e6f2d171f6da06abc","_id":"sass@1.49.3","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-scKgxiDgYDlkBpDeo6+Xn/MEAGbPgk4Gi80SgACG2Mr67KXVmNpqhV13/cpOa6bEijrIiNMp0pRGm5ZWsQEiNw==","shasum":"2953c6bb16a968d0b40c225a8025b3a95d6bd188","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.3.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+IY3CRA9TVsSAnZWagAAUooP/2kubHno8S05iomaAu/j\nOEbSB0E90Pzwwa0jd5gmmB4EIW8b6CqFs2Xg6df57HSroetfLULo0mDJ38ES\nQhmY8jqQFaR5QnTZYw6JVRJPkFNpCLQ5tqWIPpIZRxYAr2iYY2lpEN3+gIl7\nfjt0hbZbER1N/mJFx9qAeHA0bclkodvGBfIfJaPtKCkdvzTxBRJ/GZt0XIn2\nQrnkjmnAVULaEMSCfgv8Tkog7fbqMhzL6xL1P/yLPUf2O86bHtlRRS/PIQv0\nVVr0rpcEKRk9sAD8rv7bCN84//q35EDoDD8Ffo9kRef9p3aKpIs0JbJr1Om0\n7tgklm93snUR8VQXmfPlYZjFaJNYcSofH08OX5eUf/CUV5PNj7mNksOEP/bs\nsHd3lpQKPaoYxbVzI24q5hPx0mEcnHRjkGTwUWnj+n/8KXJ/IEqPFkGOyl1A\nH3gX2HT+SpRp77FcktfBr+3WmaNkdfggNYXSCEgt7oOvggXTjK9RSFZZ4fnd\n98NUShKkPHWuEFSOgJm37Zl5PTcQBTDbTJSm1In4UoB2cq+qy4E9RpGiOx0E\nS9+fHiXHOUHic2K3pvxiXhyWA9nQDL+4m+3/SVTH/jYYn0/WUaJEPqMI99w7\ngMch+xnNHafV/bROOT2X9IwLJy1eF0vf/u8RKI1F1sG371Rgc/miOzJjtdzS\nmjNb\r\n=HQAP\r\n-----END PGP SIGNATURE-----\r\n","size":682968},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.3_1643677239318_0.5336790986455298"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T01:00:47.796Z"},"1.49.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"d7d3f49b5bf293db05576d80edccb7f7e3e351c2","_id":"sass@1.49.2","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-GytLeLFxaHgje8aAbfbivPSsRwT01Zj6YBGg6y7d/L63Cw/Gm0MCnT6FtMtMLw32dHpJSWnGwxgQxn+Hh1SyZg==","shasum":"f87c141099cb64a2f529d55d775c18e0916f9fa8","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.2.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+IExCRA9TVsSAnZWagAAvLoP/1sACGkksUVz3pKzFX9K\nfCZIE8aDGWMOrgVI3K8aOwsVvf/vINWXPwXdUIhJDglYs7TOYdOI03GZLT5h\nE5nt0ubPHr7P2A8F9gHXCybnb23OQWdbS13KiKtqd6tmeOIFxhmssanrzc2k\novJeMIuJODnCY2MLG0OKz7m5AVAUdFzSz8FDMeck33gzBp50xKG8eWbTaNSz\n7Ht6mbVBN2nhk3on0Jparx4LdDfKt/RcWyN46C/7VSTFnnQ34K2lqXB7I07P\ndW2gkN8heGGCROv+9toT5TZ0eXPX0B56ZANafeJ6dRURinQPTv+hhBN9egBB\nCSFdHgeb35oWf0kWxj6koOMn0E8gVlG4hwdNpibWCWp0Cyv/AiXSvdH4NeHd\nJ4s7c5fzrbFIdnXGzgaOCn9vs7sEO39j8JZlyyT32ocnwuDlB0qh5WSoPntE\nqEx57PbaUWo+KJAu966Md0zKwYYQRgLTkFHnb1xpF9WBK3I95AHt2WY/QOo/\nXaiANzFN8SPJ97bfck70b7kSy6lV6yHWsc58rNa5IHotxJ413DcTHzxJbmzj\nNgZsb7TbDzzMDY38yiuYnTCfc4tw6/kXIX7bY+MW0YE+jDL1xdZFwz9uQHkp\n5jUVyvZLRZTg46VsrHo4QySWgvIaHIrZR547tOXDkgEx3RlFnAvz8pTccD/v\nqlyn\r\n=+HaD\r\n-----END PGP SIGNATURE-----\r\n","size":682968},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.2_1643675953786_0.3158660061206242"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-01T00:39:23.952Z"},"1.49.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"44a68a3005c0b5755cd3725e00d9143d3689b275","_id":"sass@1.49.1","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-VF/Ov0LVmcQeeScqAc6NVodjtE1mrXbSutEFKYmiyS/9WL1mKPFpZ9kJHha/D6t4ofWWpCDvk1B75lfu+cF1XQ==","shasum":"a4b79241b4f219cf591453e4477db0136b9d41be","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.1.tgz","fileCount":30,"unpackedSize":4460111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+HakCRA9TVsSAnZWagAAtHIP/3QCxbeXpRXreC9DZWOb\nTMm4p/SsxoGqlxJA/PZBWS4m7caC1I1PCvuq8rc7x7It+HEUymoDEhRSLK9q\n0fIU4M/oemeU1zLIVKSLJiv+LqgEQqF1CeHbyXKSkZYlKu2+ozSR4IuqXqmf\nJEfhHuYNgwj6NtZzfkOXo4/ITypkPtq/mi82ND4zxPjPKZNDg4VSH7M5JcCh\nPDEjI4K9h/W3lMwjT+6skPD36c7mLxxII5RbR+o5GESKSIoTC1RF/rSoOD+C\nBYMo/Ubc9kPXA0Z/re8y39ArMWkcu9mXsDjluH3oQHOGYATePeJB6q+IAT5B\nxaCZvJKms9wXOrA8WdmO0Qtb2xS8bhcQdCNrGcgqa/abUNi9VAyCAj1yJ/V+\n+rD4VZYZLlu0gGVsI/vKJ5sGNHJZ1V0b71Kaw6PRSV/DNiMLBPg6H0UmzuQ1\nTstUtp//S04I7DFDVPNCvXvvxckHCgmR/esJHaqFyQ5cUYOXoLQdd3mYIyrK\nPrZWCeOGpcSx8Svz97XqBW5eXJwLPNI191m5V0dAeKO+BkYQxbyD1cesVM+w\nJKMalCu1iVq7CW/8Inesc3mlg0Kb6+mhJi5clWPHbDznQ0ZQEMj45F6vkpsv\niQ3kSbN/0G/r9EuDp2uHP9Equyj3rmScDxwTlw+YXG/BvoSGtbJ+S3GGyLXZ\ntTo2\r\n=n2bV\r\n-----END PGP SIGNATURE-----\r\n","size":682965},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.1_1643673252373_0.685483978469269"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-31T23:54:23.106Z"},"1.45.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.45.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"c59fee03c9c19d30082974dfce24e89d2db7ab20","_id":"sass@1.45.0","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-ONy5bjppoohtNkFJRqdz1gscXamMzN3wQy1YH9qO2FiNpgjLhpz/IPRGg0PpCjyz/pWfCOaNEaiEGCcjOFAjqw==","shasum":"192ede1908324bb293a3e403d1841dbcaafdd323","tarball":"https://registry.npmmirror.com/sass/-/sass-1.45.0.tgz","fileCount":30,"unpackedSize":4452213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhs9hjCRA9TVsSAnZWagAAyfEP/2hZngMM8Q3wvdZ42vfU\nA95w6aQHXjEC8v9q6RxZewoDqug7WXnXMGTmWRFmFKRsgayXs7V3NRoDdNtJ\n2IibhwCRx6UyMqRdAUsojkj2Z09CR6OXEA4ZIHuWeFdFXCPQ6JeAN9Q95clD\nCdjo64GCJAs1tBb+ZKdrqY9aAkrwJz+NFl9ns9s0YhSg6b6NEOcn2veQMcBc\n6nxjWwSLmBPqzw+xbYQvB+mHWUuJqcErb5BBwuTXJtto0P9yffpfIBQwtUCe\n6rz3SyDZxAB7VSrAqrUKVSXdS5U7cDxwD9sqHg0MyEEnR9C7BcJicvou5KLY\npsV/XZKbPgCoBGgpeKyRkmXGQS5eW2C0UwuyI8/4yG1MAqinIcaRbmgPiZ5P\n6drJivFl0zDZBs970XO6gsbBYCW3/GPv8kw3AortIKfIxCYBYyY2W+ACKppX\nW5icdDOu6QOsspzANzwom/gU9q8ZgGEMSDtsz/rRslQyHV4W3lVQ4FbYqWtc\nm5kHWKZq901WcCWhp9EjgsteKNwd/HacbuxmvL+R+0Xt8ipDtmwRNwwX4STr\nTBs/FuDpF8r2NziivSTIgurY8Bqc2IA7bM4rau3+llKzsb52sHLFalCuR+wW\npQyT7NxaHIFuKNQbAoPcgNI0hu2EEih4ezG9hV8AgF9XFnPKryaVHIvSHxZq\nsacm\r\n=6Mbo\r\n-----END PGP SIGNATURE-----\r\n","size":681284,"noattachment":false},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.45.0_1639176290732_0.8481147614263049"},"_hasShrinkwrap":false,"publish_time":1639176291032,"_cnpm_publish_time":1639176291032,"_cnpmcore_publish_time":"2021-12-13T12:16:02.351Z"},"1.45.0-rc.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.45.0-rc.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"readmeFilename":"README.md","gitHead":"fcdaa4e3f418d322f3736df1bba291e0351ff4a0","_id":"sass@1.45.0-rc.2","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-gDVYIIIGf5LKC/5NmLLEGqS6eBb5ZVWIHerHUwH4laZF0fwimBghaIU94ULVxE78oM73us0S+IAh18zL6qPsJg==","shasum":"f2a9e4239cac150b279d4e84f239fd6ab8b0f8c6","tarball":"https://registry.npmmirror.com/sass/-/sass-1.45.0-rc.2.tgz","fileCount":30,"unpackedSize":4461219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqVPiCRA9TVsSAnZWagAAEJkP/0xIt1D7/ZSaOPNbzelp\nsYY67NWpcz+LGJhXSpLTmJD2S1b8UK0FdJv/YtXNi+Wl9NhQKoF7PS/3qz6x\nfYeEoCdR7XdbtctiRoSO5ywL47gBn+YwNSMK3FeTJXPs3QRLTVKUF+q2wyaR\nR1+L7rtSKtccqZ3qSZ2Jxv6EJOTF1SqbbM81GNqICtmQM3O4CPEPphaPPuQB\nFfZRNVR8Uq5HRjblbypem7XNs1MmufR/iORVsTAaq3ZuqJw8ZryiJ7UOdHyU\nsuv7zp3CNPUwA0e+DHKwf3lnYLq0g4cD2gIBYEEtD/myJjJ6YLv4YJYRsneA\nwjxJzq3V9rsAaGE+ZotP44vuCzYDFeP/60Pfn7pVycg9Xh4FL6uMtaDRUbqw\n0dRF+wMwTDATlTPcFp9bIiSxETMu2kHY+cUTvBrJz7j7+0+Mzw/AuIUWaBxN\nldTKg4lD9BlhGORWn49J/34yt2gdKTReakCBIKoxbPm9TBwGg5MBznFBoHFO\nRp1D+Gwnb+T6BouUMgzFxwHYielGlESjcbS6Z9pajcBM0C4XR8eMwirFuF4a\nVj7GHoa3ZivQpWqtH41Y7fpFVt8RrXYoLo/vqLxfctV2hPhMl0Z1Ir3OA1sX\nrMJiD3n9kKWdz0FBUJdYrpSsM6xk+CsapJn/hoFKMPSvjRLzsqhE9lAEr06+\noABF\r\n=iSQa\r\n-----END PGP SIGNATURE-----\r\n","size":671964,"noattachment":false},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.45.0-rc.2_1638487010449_0.5771123967173326"},"_hasShrinkwrap":false,"publish_time":1638487010711,"_cnpm_publish_time":1638487010711,"_cnpmcore_publish_time":"2021-12-13T12:16:03.173Z"},"1.45.0-rc.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.45.0-rc.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"readmeFilename":"README.md","gitHead":"79541905bc47432c8876f6ef1b3d201b745ea191","_id":"sass@1.45.0-rc.1","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-8jDxST9s45+RbKO+xPDlTf2IJ6YuSRrNkVzMFU9sD29WS+0hzkAoa7viayr6ZnuP5j/IKEhT4az5ejZQ9WEIIw==","shasum":"c78396bc0611b30ed320524a0a5959cb61f8ea74","tarball":"https://registry.npmmirror.com/sass/-/sass-1.45.0-rc.1.tgz","fileCount":6,"unpackedSize":4340831,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhprhhCRA9TVsSAnZWagAARAcQAJyPpIfGda5uZGMvejtw\nH28Vk9cQP+BhF78TNIfxIdmTvDx1fz3lHvAJb/h6AqdnKbQvtU8P2zkgAC20\nLB2zduniYAxpoJaMtDlj/orhcL0vQa6Xw/3xMZmyE2jZ8toal3Sm32jds4XP\n+bljFw5OzWKV+XakuLUXF6Sb0h6TYoWBLBnR9GUn3Qxb+wPLFh/tV0HTMDGS\n7S+pMbKrHO8KTjHvRb5imxgcaz8o+vxQEfJJ5ShomK4RuCEYhPCWAg/a//Bj\ntcv4uFHQcrQSS43XB7TNFr1jhUD7z9eN+PzCwV5lepr1d6mPY1l9EIiJsozo\n5JNWwxBhRQGtoG4voLfcjXCS5TzYJcyu3QztLOD6EWDSpeJ4WBr65gNwMN7F\n7p3wiSgIaWQHyWRlhcEzK3XyK6RtDYkpEkzYOxA46xwXnjK0zwRujfK8LnCv\n3Xzfi1aRO8gedK16cegjr5472McK5SPAb30NS2xaf76aOhHZQ7CJuLbXJiGo\neMpHdZGopZVZlL/h1i/DJo2ZLr2tHaH2/8AkL0cIIzPtFV7Zzn/D1ZNEF2Cj\nweWxLmbgyMHuPQjRcoJgEJOtUjXcV9Tebm2Rbv4GhJFFDKioroddfYj9epu3\nDCgnhtJluDclZxXe4NBoa3D2wRWsch3BgHyJ+OvB55YRQqWYGSJo2NPFRzIi\n8ofp\r\n=FvPL\r\n-----END PGP SIGNATURE-----\r\n","size":645826,"noattachment":false},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.45.0-rc.1_1638316129088_0.03990860672140206"},"_hasShrinkwrap":false,"publish_time":1638316129322,"_cnpm_publish_time":1638316129322,"_cnpmcore_publish_time":"2021-12-13T12:16:03.927Z"},"1.44.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.44.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"3e231f784b8b29425917a36d33c65eb52b6ab186","_id":"sass@1.44.0","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-0hLREbHFXGQqls/K8X+koeP+ogFRPF4ZqetVB19b7Cst9Er8cOR0rc6RU7MaI4W1JmUShd1BPgPoeqmmgMMYFw==","shasum":"619aa0a2275c097f9af5e6b8fe8a95e3056430fb","tarball":"https://registry.npmmirror.com/sass/-/sass-1.44.0.tgz","fileCount":6,"unpackedSize":4241047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpYoPCRA9TVsSAnZWagAAzqAQAJ94ENiJC1pDUWBHTU1z\ndznXZeZRSDZdP/5wLbAbT61bqcwMcP9UFvNEkljEzk/MFGOajOiPsJu8cWEY\n5onYKSjO8MIoZPVRQtevtolat0tymh5TILXWDOkErgnZ4k92yHZAO/MVv19M\nYzJza7kwjoSN2Bl9UJcsSrBz70LhLXnMD5nbQ8m/n4ayaWkqJ8PzFcg49CGr\nZoKwvkInmMIWtvk0fKzQA5PjqhgNBh8ZV/WXZfsfjjq2iBMOYl20rKrN/p+V\nUrS8r1RVlwnkST1MkH3CPK+CR4XY7RFUIwPQ5dyA6AAdYuuMTg7JtSV8w+Ew\nMOhhkk4Z5NraMxC9VcuJXsTrTj5sWSsja7R6isaSOc2Gd6m+0r9u0m6Odh39\nDmqFYd/VDoSqowNao3WS7zJxfN8VLpWRn0wPRdvdvLBr+yx/1hxVsFUvwnvq\nzqpKmnePmkk3H4DFIh4Rc3wfvIxoBZkGuNQWKpzut5cIvmN5RR68iBbn5XwT\njRQ977z3thvTf/UyXkl5jRc6jBoemX9G8owBpXCS4Plo7HjNKjRl+VJR06DL\niymSJOV/64YA59OJAi+MQVfnmqTobIDqNVwoWuHXUk3lZsa+0nO7QwRcI1+f\nUGkCOf+vw0FCycJQhYOsKdaXusDMmgPyg/gC8RcthFpVbC52ks+j9SSoHOiM\nwcA/\r\n=qKx2\r\n-----END PGP SIGNATURE-----\r\n","size":629452,"noattachment":false},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.44.0_1638238735324_0.8313730166955025"},"_hasShrinkwrap":false,"publish_time":1638238735545,"_cnpm_publish_time":1638238735545,"_cnpmcore_publish_time":"2021-12-13T12:16:04.556Z"},"1.43.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.43.5","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"926781b782d09f6b1c3ebc84df4e21c9badf4d55","_id":"sass@1.43.5","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-WuNm+eAryMgQluL7Mbq9M4EruyGGMyal7Lu58FfnRMVWxgUzIvI7aSn60iNt3kn5yZBMR7G84fAGDcwqOF5JOg==","shasum":"25a9d91dd098793ef7229d7b04dd3daae2fc4a65","tarball":"https://registry.npmmirror.com/sass/-/sass-1.43.5.tgz","fileCount":6,"unpackedSize":4228262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnszQCRA9TVsSAnZWagAADeEP/RQBomGcYEyHBBZvMjD9\nnzld+FwgITzMJnyqRHfvdTpN5Xd4+Hzq1FdvWilFe9cxtXf4dCKaquWFaMQ8\n/nzevFLYthReSM1NwWO6T4jjqshdR+2HPz4TZwPsTHEHMbjOjzZJT7Cx+0x7\n3SRf95z1PP0nv1ZOVQRATEtKey0O+BXld7BC8i4Os3WSxw3wjs2XldhQbffa\ntLr73W4cBNkANTn2HVJh03zTveMDbJeOnYhORNEv98lzbp2bQ1nNNCY8hVIK\ncfKnmhiA/RLnY9RjrWWPu6Q17mF7qLfiAU+Jr4nwbvtaE+cXANyeADwlcRmi\neyaVLWk+p/Rssy9DGNuyc2lW6/ySJLe4x9+TM/OI9XLiUBxn4JdPYBirf+wJ\nJkkW6d+d3lLS/x5m+ixfu+o1Jc4CGtYjKfOAPlwTRb6mVMVs+9xen8fNvwOY\n9ukI6sQ5yutfTauOuo3Xnqf3BvZCLPf91kmHl9BBUZFnAlVjspNl/ZzOP1E9\nyDXsNHtoML5J7Pg4zFeCIYIjeY6IdgOgqcRzSggMu/nl/r46uedcntGn0V3Z\nt8D8tEoNo7inX76kaXlZhTC/ORvhDu/k01iZDLu96Z7IWh+Cn9CQMHWBIViS\nde1JuDfom0dntSW3w8napsxOp1QhQJVHGyh0MrdRN7P9kaY+2erBCcOWFB6U\ngwil\r\n=IX5c\r\n-----END PGP SIGNATURE-----\r\n","size":627488,"noattachment":false},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.43.5_1637797072306_0.822231499667561"},"_hasShrinkwrap":false,"publish_time":1637797072530,"_cnpm_publish_time":1637797072530,"_cnpmcore_publish_time":"2021-12-13T12:16:05.194Z"},"1.43.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.43.4","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"756fcd391122e1580f9293cb62897ba0bee73222","_id":"sass@1.43.4","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"shasum":"68c7d6a1b004bef49af0d9caf750e9b252105d1f","size":624085,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.43.4.tgz","integrity":"sha512-/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.43.4_1635283510238_0.26209970889766665"},"_hasShrinkwrap":false,"publish_time":1635283510644,"_cnpm_publish_time":1635283510644,"_cnpmcore_publish_time":"2021-12-13T12:16:05.871Z"},"1.43.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.43.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"6f5f20051b99c99a9761b29944ed1ad7ad5fc7e6","_id":"sass@1.43.3","_nodeVersion":"16.12.0","_npmVersion":"8.1.0","dist":{"shasum":"aa16a69131b84f0cd23189a242571e8905f1ce43","size":624118,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.43.3.tgz","integrity":"sha512-BJnLngqWpMeS65UvlYYEuCb3/fLxDxhHtOB/gWPxs6NKrslTxGt3ZxwIvOe/0Jm4tWwM/+tIpE3wj4dLEhPDeQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.43.3_1634849831329_0.8996663544266881"},"_hasShrinkwrap":false,"publish_time":1634849831562,"_cnpm_publish_time":1634849831562,"_cnpmcore_publish_time":"2021-12-13T12:16:06.536Z"},"1.43.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.43.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"9678e1ae5214b41778b7c04babc4b6c9d33a7269","_id":"sass@1.43.2","_nodeVersion":"16.11.1","_npmVersion":"8.0.0","dist":{"shasum":"c02501520c624ad6622529a8b3724eb08da82d65","size":622608,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.43.2.tgz","integrity":"sha512-DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.43.2_1634164262629_0.5419262490072674"},"_hasShrinkwrap":false,"publish_time":1634164262844,"_cnpm_publish_time":1634164262844,"_cnpmcore_publish_time":"2021-12-13T12:16:07.127Z"},"1.42.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.42.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.42.1","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"5ab17bebc1cb1881ad2e0c9a932c66ad64e441e2","size":632065,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.42.1.tgz","integrity":"sha512-/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.42.1_1632295741090_0.69847118090874"},"_hasShrinkwrap":false,"publish_time":1632295741310,"_cnpm_publish_time":1632295741310,"_cnpmcore_publish_time":"2021-12-13T12:16:07.686Z"},"1.42.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.42.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.42.0","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"dc485e5cf7890a22fd6ccc6856c64f297239d595","size":631437,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.42.0.tgz","integrity":"sha512-kcjxsemgaOnfl43oZgO/IePLvXQI0ZKzo0/xbCt6uyrg3FY/FF8hVK9YoO8GiZBcEG2Ebl79EKnUc+aiE4f2Vw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.42.0_1632183507234_0.7622473824935398"},"_hasShrinkwrap":false,"publish_time":1632183507467,"_cnpm_publish_time":1632183507467,"_cnpmcore_publish_time":"2021-12-13T12:16:08.264Z"},"1.41.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.41.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.41.1","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"bca5bed2154192779c29f48fca9c644c60c38d98","size":632237,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.41.1.tgz","integrity":"sha512-vIjX7izRxw3Wsiez7SX7D+j76v7tenfO18P59nonjr/nzCkZuoHuF7I/Fo0ZRZPKr88v29ivIdE9BqGDgQD/Nw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.41.1_1631830553097_0.9175530162678593"},"_hasShrinkwrap":false,"publish_time":1631830553270,"_cnpm_publish_time":1631830553270,"_cnpmcore_publish_time":"2021-12-13T12:16:08.790Z"},"1.41.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.41.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.41.0","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"f7b41dc00336a4c03429c37b9680b86758af61d4","size":631786,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.41.0.tgz","integrity":"sha512-wb8nT60cjo9ZZMcHzG7TzdbFtCAmHEKWrH+zAdScPb4ZxL64WQBnGdbp5nwlenW5wJPcHva1JWmVa0h6iqA5eg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.41.0_1631661522372_0.6289798968333571"},"_hasShrinkwrap":false,"publish_time":1631661522600,"_cnpm_publish_time":1631661522600,"_cnpmcore_publish_time":"2021-12-13T12:16:09.387Z"},"1.40.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.40.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.40.1","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"55d3fc38fe9dc579e7324ce0eb9185bede7992a9","size":631186,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.40.1.tgz","integrity":"sha512-M6WskYLzTfdZdb09W9SftIScjudL8jNkhdh9z96U+olQaKIcw2Knb6QLL9bUhnuSm4VD+1yJVaO2/ENDPMTtAQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.40.1_1631610089380_0.027281266813535376"},"_hasShrinkwrap":false,"publish_time":1631610089634,"_cnpm_publish_time":1631610089634,"_cnpmcore_publish_time":"2021-12-13T12:16:09.897Z"},"1.40.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.40.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.40.0","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"ffa7106d9c0185169f5b08eaab13d634def948f2","size":629953,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.40.0.tgz","integrity":"sha512-2nLdBmvcxhsYlH6VDsHMhEoc9iYvH7uIkgGJXXNPfTqwKpvXsZyYPMwNLntqoY4zxDKU8wSSqA7XLKHy1o8nVA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.40.0_1631577291093_0.5542360790338527"},"_hasShrinkwrap":false,"publish_time":1631577291422,"_cnpm_publish_time":1631577291422,"_cnpmcore_publish_time":"2021-12-13T12:16:10.407Z"},"1.39.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.39.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.39.2","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"1681964378f58d76fc64a6a502619bd5ac99f660","size":618256,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.39.2.tgz","integrity":"sha512-4/6Vn2RPc+qNwSclUSKvssh7dqK1Ih3FfHBW16I/GfH47b3scbYeOw65UIrYG7PkweFiKbpJjgkf5CV8EMmvzw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.39.2_1631232413365_0.44678965930939807"},"_hasShrinkwrap":false,"publish_time":1631232413569,"_cnpm_publish_time":1631232413569,"_cnpmcore_publish_time":"2021-12-13T12:16:10.941Z"},"1.39.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.39.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.39.1","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"98d3d3b356f9f4c34ccc7210c282037de1da1a35","size":618005,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.39.1.tgz","integrity":"sha512-IGIP3DtAFmrNCBDdq4Zxw8kodWeNjYCuykz37tu6LEoOH8AzqT6z8o6udeNZgzoLOkvd4nejVyK2U9o3/0pPJw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.39.1_1631229468622_0.051317613217084945"},"_hasShrinkwrap":false,"publish_time":1631229468864,"_cnpm_publish_time":1631229468864,"_cnpmcore_publish_time":"2021-12-13T12:16:11.556Z"},"1.39.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.39.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.39.0","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"6c64695d1c437767c8f1a4e471288e831f81d035","size":624790,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.39.0.tgz","integrity":"sha512-F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.39.0_1630544913543_0.07328623814639368"},"_hasShrinkwrap":false,"publish_time":1630544913919,"_cnpm_publish_time":1630544913919,"_cnpmcore_publish_time":"2021-12-13T12:16:12.169Z"},"1.38.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.38.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.38.2","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"970045d9966180002a8c8f3820fc114cddb42822","size":624628,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.38.2.tgz","integrity":"sha512-Bz1fG6qiyF0FX6m/I+VxtdVKz1Dfmg/e9kfDy2PhWOkq3T384q2KxwIfP0fXpeI+EyyETdOauH+cRHQDFASllA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.38.2_1630138285519_0.2756024382383673"},"_hasShrinkwrap":false,"publish_time":1630138285747,"_cnpm_publish_time":1630138285747,"_cnpmcore_publish_time":"2021-12-13T12:16:12.769Z"},"1.38.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.38.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.38.1","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"54dfb17fb168846b5850324b82fc62dc68f51bad","size":624628,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.38.1.tgz","integrity":"sha512-Lj8nPaSYOuRhgqdyShV50fY5jKnvaRmikUNalMPmbH+tKMGgEKVkltI/lP30PEfO2T1t6R9yc2QIBLgOc3uaFw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.38.1_1629762797597_0.6054318319334622"},"_hasShrinkwrap":false,"publish_time":1629762797775,"_cnpm_publish_time":1629762797775,"_cnpmcore_publish_time":"2021-12-13T12:16:13.353Z"},"1.38.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.38.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.38.0","_nodeVersion":"14.17.4","_npmVersion":"6.14.14","dist":{"shasum":"2f3e60a1efdcdc910586fa79dc89d3399a145b4f","size":623926,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.38.0.tgz","integrity":"sha512-WBccZeMigAGKoI+NgD7Adh0ab1HUq+6BmyBUEaGxtErbUtWUevEbdgo5EZiJQofLUGcKtlNaO2IdN73AHEua5g=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.38.0_1629159358990_0.951670906795449"},"_hasShrinkwrap":false,"publish_time":1629159359226,"_cnpm_publish_time":1629159359226,"_cnpmcore_publish_time":"2021-12-13T12:16:13.995Z"},"1.37.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.37.5","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.37.5","_nodeVersion":"14.17.4","_npmVersion":"6.14.14","dist":{"shasum":"f6838351f7cc814c4fcfe1d9a20e0cabbd1e7b3c","size":623544,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.37.5.tgz","integrity":"sha512-Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.37.5_1628041493773_0.49851896873822543"},"_hasShrinkwrap":false,"publish_time":1628041493974,"_cnpm_publish_time":1628041493974,"_cnpmcore_publish_time":"2021-12-13T12:16:14.600Z"},"1.37.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.37.4","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.37.4","_nodeVersion":"14.17.4","_npmVersion":"6.14.14","dist":{"shasum":"84647f84e7f1ff71001d648df03e69c7e930ff36","size":623544,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.37.4.tgz","integrity":"sha512-iu+n+HyIXZBXQW2TNirT+faHpd7xDNwsD9b3bon3aOuEWGH5KuBCDy1LrchQvJNN2bO9OrPCGyFRRelHGsNDeA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.37.4_1628034216346_0.024352406308648433"},"_hasShrinkwrap":false,"publish_time":1628034216691,"_cnpm_publish_time":1628034216691,"_cnpmcore_publish_time":"2021-12-13T12:16:15.299Z"},"1.37.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.37.3","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.37.3","_nodeVersion":"14.17.4","_npmVersion":"6.14.14","dist":{"shasum":"d6ec47690f190c77c0bacd0e4eeb1b403c5850ec","size":623544,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.37.3.tgz","integrity":"sha512-6rHg+pRK74lxbDM9xfhQ3So9vikEOTmJvRcjZEWVvH7u/oNXsye6LjL9Ed5mxvMwauw77ZtKX5b8fH6CICAsew=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.37.3_1628028477407_0.6167975703646573"},"_hasShrinkwrap":false,"publish_time":1628028477731,"_cnpm_publish_time":1628028477731,"_cnpmcore_publish_time":"2021-12-13T12:16:15.957Z"},"1.37.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.37.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.37.2","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"eb87c01a1e6ec12e50fa69571b69628ea043a372","size":623544,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.37.2.tgz","integrity":"sha512-+XMg8QOg7OGLo4F5R3fLYEti/3MxFkyX0NxYbqWycU8xYMAhPDN5FuCO2ZJudnM1wcnZ3CeJRnpqUBZpLOitCQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.37.2_1627949828049_0.8825534667641808"},"_hasShrinkwrap":false,"publish_time":1627949828276,"_cnpm_publish_time":1627949828276,"_cnpmcore_publish_time":"2021-12-13T12:16:16.557Z"},"1.37.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.37.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.37.1","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"5886f31d3991197b78e03e0db2c5753c6769dbc2","size":623544,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.37.1.tgz","integrity":"sha512-0t1nEcF+DyzhTLKTY49siPk2JI1ZPF1MWn49UY99RGre9/6A8rNGQmgWOhJF4h8elI8iC1v2w5SuZc2R9j4rkQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.37.1_1627941802013_0.7780977793819983"},"_hasShrinkwrap":false,"publish_time":1627941802252,"_cnpm_publish_time":1627941802252,"_cnpmcore_publish_time":"2021-12-13T12:16:17.172Z"},"1.37.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.37.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.37.0","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"f1b03a9d072ee9053a29d125c8130c78e92827c2","size":622337,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.37.0.tgz","integrity":"sha512-B+Tu6cSAG8ffs/cqsZl/bgSH2pCmavDaPTYAoW8QA1qNHh/RqndNfVKuABKYkLjUQ5aq/BnCENVpE80cqdSM1w=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.37.0_1627689143213_0.6270350195866992"},"_hasShrinkwrap":false,"publish_time":1627689143434,"_cnpm_publish_time":1627689143434,"_cnpmcore_publish_time":"2021-12-13T12:16:17.786Z"},"1.36.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.36.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.36.0","_nodeVersion":"14.17.3","_npmVersion":"6.14.13","dist":{"shasum":"5912ef9d5d16714171ba11cb17edb274c4bbc07e","size":622342,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.36.0.tgz","integrity":"sha512-fQzEjipfOv5kh930nu3Imzq3ie/sGDc/4KtQMJlt7RRdrkQSfe37Bwi/Rf/gfuYHsIuE1fIlDMvpyMcEwjnPvg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.36.0_1627075458909_0.02352750520641167"},"_hasShrinkwrap":false,"publish_time":1627075459133,"_cnpm_publish_time":1627075459133,"_cnpmcore_publish_time":"2021-12-13T12:16:18.446Z"},"1.35.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.35.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.35.2","_nodeVersion":"14.17.1","_npmVersion":"6.14.13","dist":{"shasum":"b732314fcdaf7ef8d0f1698698adc378043cb821","size":622792,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.35.2.tgz","integrity":"sha512-jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.35.2_1625686380164_0.7661710725289377"},"_hasShrinkwrap":false,"publish_time":1625686380426,"_cnpm_publish_time":1625686380426,"_cnpmcore_publish_time":"2021-12-13T12:16:19.299Z"},"1.35.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.35.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.35.1","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"shasum":"90ecf774dfe68f07b6193077e3b42fb154b9e1cd","size":621632,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.35.1.tgz","integrity":"sha512-oCisuQJstxMcacOPmxLNiLlj4cUyN2+8xJnG7VanRoh2GOLr9RqkvI4AxA4a6LHVg/rsu+PmxXeGhrdSF9jCiQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.35.1_1623790495676_0.35705735133773975"},"_hasShrinkwrap":false,"publish_time":1623790495843,"_cnpm_publish_time":1623790495843,"_cnpmcore_publish_time":"2021-12-13T12:16:20.201Z"},"1.35.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.35.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.35.0","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"shasum":"37c39e60eb3f82149488a9ca9ae48f888bf9324d","size":621569,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.35.0.tgz","integrity":"sha512-9joxNu7CoIEdZTDZFnH67NoWE/1VTofGPYiSIntWSE391SfmPu6Kd2Y0ZclDu9WQhVvvPwvo8LHeb/8wHIj95Q=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.35.0_1623718754272_0.22296344559230175"},"_hasShrinkwrap":false,"publish_time":1623718754498,"_cnpm_publish_time":1623718754498,"_cnpmcore_publish_time":"2021-12-13T12:16:21.092Z"},"1.34.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.34.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.34.1","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"shasum":"30f45c606c483d47b634f1e7371e13ff773c96ef","size":620714,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.34.1.tgz","integrity":"sha512-scLA7EIZM+MmYlej6sdVr0HRbZX5caX5ofDT9asWnUJj21oqgsC+1LuNfm0eg+vM0fCTZHhwImTiCU0sx9h9CQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.34.1_1622671765906_0.044223637522010195"},"_hasShrinkwrap":false,"publish_time":1622671766072,"_cnpm_publish_time":1622671766072,"_cnpmcore_publish_time":"2021-12-13T12:16:21.856Z"},"1.34.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.34.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.34.0","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","dist":{"shasum":"e46d5932d8b0ecc4feb846d861f26a578f7f7172","size":620504,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.34.0.tgz","integrity":"sha512-rHEN0BscqjUYuomUEaqq3BMgsXqQfkcMVR7UhscsAVub0/spUrZGBMxQXFS2kfiDsPLZw5yuU9iJEFNC2x38Qw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.34.0_1621664289466_0.7603850499244922"},"_hasShrinkwrap":false,"publish_time":1621664289675,"_cnpm_publish_time":1621664289675,"_cnpmcore_publish_time":"2021-12-13T12:16:22.755Z"},"1.33.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.33.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.33.0","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"a26186902ee56585b9db6751fd151237f561dbc2","size":617639,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.33.0.tgz","integrity":"sha512-9v0MUXnSi62FtfjqcwZ+b8B9FIxdwFEb3FPUkjEPXWd0b5KcnPGSp2XF9WrzcH1ZxedfgJVTdA3A1j4eEj53xg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.33.0_1621558786564_0.026392039906656173"},"_hasShrinkwrap":false,"publish_time":1621558786796,"_cnpm_publish_time":1621558786796,"_cnpmcore_publish_time":"2021-12-13T12:16:23.594Z"},"1.32.13":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.13","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.13","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"8d29c849e625a415bce71609c7cf95e15f74ed00","size":614525,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.13.tgz","integrity":"sha512-dEgI9nShraqP7cXQH+lEXVf73WOPCse0QlFzSD8k+1TcOxCMwVXfQlr0jtoluZysQOyJGnfr21dLvYKDJq8HkA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.13_1620836916472_0.16878671554605718"},"_hasShrinkwrap":false,"publish_time":1620836916709,"_cnpm_publish_time":1620836916709,"_cnpmcore_publish_time":"2021-12-13T12:16:24.336Z"},"1.32.12":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.12","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.12","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"a2a47ad0f1c168222db5206444a30c12457abb9f","size":614177,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.12.tgz","integrity":"sha512-zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.12_1619646615609_0.8417113234403264"},"_hasShrinkwrap":false,"publish_time":1619646615798,"_cnpm_publish_time":1619646615798,"_cnpmcore_publish_time":"2021-12-13T12:16:25.058Z"},"1.32.11":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.11","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.11","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"b236b3ea55c76602c2ef2bd0445f0db581baa218","size":613689,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.11.tgz","integrity":"sha512-O9tRcob/fegUVSIV1ihLLZcftIOh0AF1VpKgusUfLqnb2jQ0GLDwI5ivv1FYWivGv8eZ/AwntTyTzjcHu0c/qw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.11_1618862477411_0.10198705774925587"},"_hasShrinkwrap":false,"publish_time":1618862477576,"_cnpm_publish_time":1618862477576,"_cnpmcore_publish_time":"2021-12-13T12:16:25.960Z"},"1.32.10":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.10","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.10","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"d40da4e20031b450359ee1c7e69bc8cc89569241","size":612936,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.10.tgz","integrity":"sha512-Nx0pcWoonAkn7CRp0aE/hket1UP97GiR1IFw3kcjV3pnenhWgZEWUf0ZcfPOV2fK52fnOcK3JdC/YYZ9E47DTQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.10_1618617396304_0.9319624492151384"},"_hasShrinkwrap":false,"publish_time":1618617396541,"_cnpm_publish_time":1618617396541,"_cnpmcore_publish_time":"2021-12-13T12:16:26.883Z"},"1.32.9":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.9","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.9","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"053322b8903a984702285bed35d9568e9f214a71","size":612937,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.9.tgz","integrity":"sha512-DGXRkoCF5w+WnlcfolMiNsZ/D0UfmOi4CW2ORMgrXg1eMF6Aoq7kj5qlMrkiXhXdRufTYclMsJUtxYozQT65Ig=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.9_1618604992670_0.312724801339197"},"_hasShrinkwrap":false,"publish_time":1618604992908,"_cnpm_publish_time":1618604992908,"_cnpmcore_publish_time":"2021-12-13T12:16:27.758Z"},"1.32.8":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.8","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.8","_nodeVersion":"14.15.5","_npmVersion":"6.14.11","dist":{"shasum":"f16a9abd8dc530add8834e506878a2808c037bdc","size":603177,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.8.tgz","integrity":"sha512-Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.8_1613686065964_0.8911132726348279"},"_hasShrinkwrap":false,"publish_time":1613686066319,"_cnpm_publish_time":1613686066319,"_cnpmcore_publish_time":"2021-12-13T12:16:28.652Z"},"1.32.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.7","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.7","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"shasum":"632a9df2b85dc4b346977fcaf2d5e6f2b7039fd8","size":603107,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.7.tgz","integrity":"sha512-C8Z4bjqGWnsYa11o8hpKAuoyFdRhrSHcYjCr+XAWVPSIQqC8mp2f5Dx4em0dKYehPzg5XSekmCjqJnEZbIls9A=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.7_1612919301651_0.42367613325698694"},"_hasShrinkwrap":false,"publish_time":1612919301848,"_cnpm_publish_time":1612919301848,"_cnpmcore_publish_time":"2021-12-13T12:16:29.603Z"},"1.32.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.6","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.6","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"shasum":"e3646c8325cd97ff75a8a15226007f3ccd221393","size":600135,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.6.tgz","integrity":"sha512-1bcDHDcSqeFtMr0JXI3xc/CXX6c4p0wHHivJdru8W7waM7a1WjKMm4m/Z5sY7CbVw4Whi2Chpcw6DFfSWwGLzQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.6_1612221918725_0.4081910314189465"},"_hasShrinkwrap":false,"publish_time":1612221918943,"_cnpm_publish_time":1612221918943,"_cnpmcore_publish_time":"2021-12-13T12:16:30.464Z"},"1.32.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.5","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.5","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"shasum":"2882d22ad5748c05fa9bff6c3b0ffbc4f4b9e1dc","size":600128,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.5.tgz","integrity":"sha512-kU1yJ5zUAmPxr7f3q0YXTAd1oZjSR1g3tYyv+xu0HZSl5JiNOaE987eiz7wCUvbm4I9fGWGU2TgApTtcP4GMNQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.5_1611117824570_0.3613398307565452"},"_hasShrinkwrap":false,"publish_time":1611117824758,"_cnpm_publish_time":1611117824758,"_cnpmcore_publish_time":"2021-12-13T12:16:31.581Z"},"1.32.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.4","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.4","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"308bf29dd7f53d44ae4f06580e9a910ad9aa411e","size":599585,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.4.tgz","integrity":"sha512-N0BT0PI/t3+gD8jKa83zJJUb7ssfQnRRfqN+GIErokW6U4guBpfYl8qYB+OFLEho+QvnV5ZH1R9qhUC/Z2Ch9w=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.4_1610417026455_0.45924280963687125"},"_hasShrinkwrap":false,"publish_time":1610417026663,"_cnpm_publish_time":1610417026663,"_cnpmcore_publish_time":"2021-12-13T12:16:32.617Z"},"1.32.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.3","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.3","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"045755b8b4e2d924408c897bcf24f873defc66ee","size":599587,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.3.tgz","integrity":"sha512-iJ+rkT0f00GCo/yO8gskzC/12QDdtwyZGFip4nRt3MstRetldRB7/k8gs55Zm5tfhuNDYfHjR5CyWLc8kE8gYg=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.3_1610411420223_0.7473855694114617"},"_hasShrinkwrap":false,"publish_time":1610411420442,"_cnpm_publish_time":1610411420442,"_cnpmcore_publish_time":"2021-12-13T12:16:33.584Z"},"1.32.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.2","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"shasum":"66dc0250bc86c15d19ddee7135e93d0cf3d3257b","size":599189,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.2.tgz","integrity":"sha512-u1pUuzqwz3SAgvHSWp1k0mRhX82b2DdlVnP6UIetQPZtYbuJUDaPQhZE12jyjB7vYeOScfz9WPsZJB6Rpk7heA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.2_1609977839805_0.19168305758623339"},"_hasShrinkwrap":false,"publish_time":1609977840005,"_cnpm_publish_time":1609977840005,"_cnpmcore_publish_time":"2021-12-13T12:16:34.609Z"},"1.32.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.1","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"shasum":"ee479edd7d09067c0c0d4bb70a596e310e7fdf68","size":599133,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.1.tgz","integrity":"sha512-SLhQ8do4vKsjIGMh1n6JPiARIFVOhBvdKPlZTNNOfwCIwKOc8EP+0QZlXI/ZWGy0W9KVO+54fVSbUZehXtECNQ=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.1_1609969428888_0.8619260411055318"},"_hasShrinkwrap":false,"publish_time":1609969429163,"_cnpm_publish_time":1609969429163,"_cnpmcore_publish_time":"2021-12-13T12:16:35.565Z"},"1.32.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.32.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.32.0","_nodeVersion":"14.15.3","_npmVersion":"6.14.9","dist":{"shasum":"10101a026c13080b14e2b374d4e15ee24400a4d3","size":598591,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.32.0.tgz","integrity":"sha512-fhyqEbMIycQA4blrz/C0pYhv2o4x2y6FYYAH0CshBw3DXh5D5wyERgxw0ptdau1orc/GhNrhF7DFN2etyOCEng=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.32.0_1609287333469_0.7496352411131002"},"_hasShrinkwrap":false,"publish_time":1609287333696,"_cnpm_publish_time":1609287333696,"_cnpmcore_publish_time":"2021-12-13T12:16:36.677Z"},"1.30.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.30.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.30.0","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"60bbbbaf76ba10117e61c6c24f00161c3d60610e","size":596435,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.30.0.tgz","integrity":"sha512-26EUhOXRLaUY7+mWuRFqGeGGNmhB1vblpTENO1Z7mAzzIZeVxZr9EZoaY1kyGLFWdSOZxRMAufiN2mkbO6dAlw=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.30.0_1607124365972_0.36510868642560834"},"_hasShrinkwrap":false,"publish_time":1607124366232,"_cnpm_publish_time":1607124366232,"_cnpmcore_publish_time":"2021-12-13T12:16:37.786Z"},"1.29.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.29.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.29.0","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"ec4e1842c146d8ea9258c28c141b8c2b7c6ab7f1","size":595788,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.29.0.tgz","integrity":"sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA=="},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.29.0_1604538235373_0.430016074384461"},"_hasShrinkwrap":false,"publish_time":1604538235611,"_cnpm_publish_time":1604538235611,"_cnpmcore_publish_time":"2021-12-13T12:16:38.821Z"},"1.28.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.28.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.28.0","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"546f1308ff74cc4ec2ad735fd35dc18bc3f51f72","size":593881,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.28.0.tgz","integrity":"sha512-9FWX/0wuE1KxwfiP02chZhHaPzu6adpx9+wGch7WMOuHy5npOo0UapRI3FNSHva2CczaYJu2yNUBN8cCSqHz/A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.28.0_1604014456990_0.08012326111441359"},"_hasShrinkwrap":false,"publish_time":1604014457137,"_cnpm_publish_time":1604014457137,"_cnpmcore_publish_time":"2021-12-13T12:16:39.847Z"},"1.27.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.27.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.27.2","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"4e7128b25c523c06e0df1601bbbf9f49227f6670","size":593754,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.27.2.tgz","integrity":"sha512-8gUAdqW1sdNKcZ6ccf37WKIkuS/wP5tlK52QLNLV3e3JqqgT5ACuT/0CboDElnXJRD7ld+SRAd8oZ++nMI1mrQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.27.2_1604007287040_0.3430695340933221"},"_hasShrinkwrap":false,"publish_time":1604007287248,"_cnpm_publish_time":1604007287248,"_cnpmcore_publish_time":"2021-12-13T12:16:41.236Z"},"1.27.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.27.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.27.1","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"shasum":"fe4c730f2abfe1502ecff047798b35a7b792dc03","size":593753,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.27.1.tgz","integrity":"sha512-Co5i3s4kN0AgXe8ZFfIl4pfjHjPgotT81O68m3buwdj7v3oHjYiWNqp0oXTKXnEqyKU30KAYC5u8uUF4x+BKfw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.27.1_1603928470630_0.047545723031431564"},"_hasShrinkwrap":false,"publish_time":1603928470836,"_cnpm_publish_time":1603928470836,"_cnpmcore_publish_time":"2021-12-13T12:16:42.333Z"},"1.27.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.27.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.27.0","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"0657ff674206b95ec20dc638a93e179c78f6ada2","size":591462,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.27.0.tgz","integrity":"sha512-0gcrER56OkzotK/GGwgg4fPrKuiFlPNitO7eUJ18Bs+/NBlofJfMxmxqpqJxjae9vu0Wq8TZzrSyxZal00WDig=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.27.0_1602117831662_0.8561702498596375"},"_hasShrinkwrap":false,"publish_time":1602117831884,"_cnpm_publish_time":1602117831884,"_cnpmcore_publish_time":"2021-12-13T12:16:43.336Z"},"1.26.12":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.12","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.12","_nodeVersion":"12.18.4","_npmVersion":"6.14.6","dist":{"shasum":"79eddaa1773fff32ccf19e00d1ce380fc2afc7d0","size":588084,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.12.tgz","integrity":"sha512-hmSwtBOWoS9zwe0yAS+QmaseVCUELiGV22gXHDR7+9stEsVuEuxfY1GhC8XmUpC+Ir3Hwq7NxSUNbnmkznnF7g=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.12_1601954709767_0.4837887380135031"},"_hasShrinkwrap":false,"publish_time":1601954709949,"deprecated":"JS API regression","_cnpm_publish_time":1601954709949,"_cnpmcore_publish_time":"2021-12-13T12:16:44.309Z"},"1.26.11":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.11","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.11","_nodeVersion":"12.18.4","_npmVersion":"6.14.6","dist":{"shasum":"0f22cc4ab2ba27dad1d4ca30837beb350b709847","size":587296,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.11.tgz","integrity":"sha512-W1l/+vjGjIamsJ6OnTe0K37U2DBO/dgsv2Z4c89XQ8ZOO6l/VwkqwLSqoYzJeJs6CLuGSTRWc91GbQFL3lvrvw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.11_1600393430199_0.5482633172986364"},"_hasShrinkwrap":false,"publish_time":1600393430409,"_cnpm_publish_time":1600393430409,"_cnpmcore_publish_time":"2021-12-13T12:16:45.223Z"},"1.26.10":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.10","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.10","_nodeVersion":"12.18.2","_npmVersion":"6.14.5","dist":{"shasum":"851d126021cdc93decbf201d1eca2a20ee434760","size":584180,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.10.tgz","integrity":"sha512-bzN0uvmzfsTvjz0qwccN1sPm2HxxpNI/Xa+7PlUEMS+nQvbyuEK7Y0qFqxlPHhiNHb1Ze8WQJtU31olMObkAMw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.10_1594077481784_0.10362575930256557"},"_hasShrinkwrap":false,"publish_time":1594077481925,"_cnpm_publish_time":1594077481925,"_cnpmcore_publish_time":"2021-12-13T12:16:46.490Z"},"1.26.9":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.9","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.9","_nodeVersion":"12.18.1","_npmVersion":"6.14.5","dist":{"shasum":"73c10cbb88c12b22a9e0107725bfd62296f4978f","size":583947,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.9.tgz","integrity":"sha512-t8AkRVi+xvba4yZiLWkJdgJHBFCB3Dh4johniQkPy9ywkgFHNasXFEFP+RG/F6LhQ+aoE4aX+IorIWQjS0esVw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.9_1592863913900_0.6215079394016538"},"_hasShrinkwrap":false,"publish_time":1592863914066,"_cnpm_publish_time":1592863914066,"_cnpmcore_publish_time":"2021-12-13T12:16:47.650Z"},"1.26.8":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.8","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.8","_nodeVersion":"12.18.0","_npmVersion":"6.14.4","dist":{"shasum":"312652530721f9568d4c4000b0db07ec6eb23325","size":585575,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.8.tgz","integrity":"sha512-yvtzyrKLGiXQu7H12ekXqsfoGT/aTKeMDyVzCB675k1HYuaj0py63i8Uf4SI9CHXj6apDhpfwbUr3gGOjdpu2Q=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.8_1591317784032_0.4172312414504471"},"_hasShrinkwrap":false,"publish_time":1591317784279,"_cnpm_publish_time":1591317784279,"_cnpmcore_publish_time":"2021-12-13T12:16:48.769Z"},"1.26.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.7","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.7","_nodeVersion":"12.17.0","_npmVersion":"6.14.4","dist":{"shasum":"d3c9f3dd9771632bfb60af8746c308da3765166d","size":585515,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.7.tgz","integrity":"sha512-xgNazdkr6yvgHEfNaOjKtZzhDZmKYMCmoRKMPrTDo7YvjaITIzU2DDYsIUuN/atAg7/JOxPeCQHH7TtCo5Tq2g=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.7_1590711950892_0.7600534240967134"},"_hasShrinkwrap":false,"publish_time":1590711951207,"_cnpm_publish_time":1590711951207,"_cnpmcore_publish_time":"2021-12-13T12:16:49.774Z"},"1.26.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.6","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.6","_nodeVersion":"12.17.0","_npmVersion":"6.14.4","dist":{"shasum":"f1b095c2a5693db953678d6c7bc96ca9567c9eed","size":585515,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.6.tgz","integrity":"sha512-U6ZmX+Bymjz5NavdfjUqmLjgVrEBFgmn/3/OOMktI45xJeH/AQEhHAm/Aj19WhiHXixiP1HzdYusZX1sQ8XWmw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.6_1590702567230_0.7363979323879684"},"_hasShrinkwrap":false,"publish_time":1590702567985,"_cnpm_publish_time":1590702567985,"_cnpmcore_publish_time":"2021-12-13T12:16:51.131Z"},"1.26.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.5","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.5","_nodeVersion":"12.16.2","_npmVersion":"6.14.4","dist":{"shasum":"2d7aecfbbabfa298567c8f06615b6e24d2d68099","size":573437,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.5.tgz","integrity":"sha512-FG2swzaZUiX53YzZSjSakzvGtlds0lcbF+URuU9mxOv7WBh7NhXEVDa4kPKN4hN6fC2TkOTOKqiqp6d53N9X5Q=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.5_1587695696541_0.1493961005352673"},"_hasShrinkwrap":false,"publish_time":1587695696717,"_cnpm_publish_time":1587695696717,"_cnpmcore_publish_time":"2021-12-13T12:16:52.509Z"},"1.26.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.3","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.3","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"shasum":"412df54486143b76b5a65cdf7569e86f44659f46","size":571422,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.3.tgz","integrity":"sha512-5NMHI1+YFYw4sN3yfKjpLuV9B5l7MqQ6FlkTcC4FT+oHbBRUZoSjHrrt/mE0nFXJyY2kQtU9ou9HxvFVjLFuuw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.3_1583967323889_0.1577432910231502"},"_hasShrinkwrap":false,"publish_time":1583967324076,"_cnpm_publish_time":1583967324076,"_cnpmcore_publish_time":"2021-12-13T12:16:53.712Z"},"1.26.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.2","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"shasum":"4e17c5c2394e2ee7ffd653ac1d862314a6a5767b","size":571423,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.2.tgz","integrity":"sha512-9TRp1d1NH0mWH8rqaR/jCS05f/TFD1ykPF2zSYviprMhLb0EmXVqtKMUHsvDt3YIT/jbSK6qAvUlfCW/HJkdCw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.2_1582936193323_0.9537169895801341"},"_hasShrinkwrap":false,"publish_time":1582936193540,"_cnpm_publish_time":1582936193540,"_cnpmcore_publish_time":"2021-12-13T12:16:55.068Z"},"1.26.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.1","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"shasum":"79a36c957530c1dfffa2958968b90cb736794e91","size":571200,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.1.tgz","integrity":"sha512-DWtzW0jDu+96MYkEdM8vUigjpisvM9qSlDwNvTFcr+XC7o2+3aXSAbHNcJ+8HzD1857uW9Opbxgu39esytVUKA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.1_1582670791745_0.6435691819293716"},"_hasShrinkwrap":false,"publish_time":1582670791901,"_cnpm_publish_time":1582670791901,"_cnpmcore_publish_time":"2021-12-13T12:16:56.432Z"},"1.26.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.0","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.26.0","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"shasum":"58dd90f9a2ff6e3d953cf15bfb1cfd0823bed92d","size":570898,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.0.tgz","integrity":"sha512-akOxgCUOjRtBUgKiWVYrUxKnDIN5+z/m7NKmav5RU9q4oXMVAXYStn1pXvTECyTIe6WupElREKgDRbFvHb2anA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.0_1582575693617_0.935317797049591"},"_hasShrinkwrap":false,"publish_time":1582575693762,"_cnpm_publish_time":1582575693762,"_cnpmcore_publish_time":"2021-12-13T12:16:57.674Z"},"1.26.0-test.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.0-test.3","bin":{"sass":"sass.js"},"main":"sass.dart.js","readmeFilename":"README.md","_id":"sass@1.26.0-test.3","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"shasum":"348908c7cf40e0f292bbe18c1ec80fcf01e65936","size":570915,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.0-test.3.tgz","integrity":"sha512-7PtKRG6W73zY0dX9ryrCCviMllxi4rZoCm7YVpfmjlucA6vjuVGi4tM9lJTld6qHiqqQs3LA8hq+uX0+76lqsw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.0-test.3_1582150884307_0.055051693275310676"},"_hasShrinkwrap":false,"publish_time":1582150884477,"_cnpm_publish_time":1582150884477,"_cnpmcore_publish_time":"2021-12-13T12:16:58.771Z"},"1.26.0-test.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.0-test.2","bin":{"sass":"sass.js"},"main":"sass.dart.js","readmeFilename":"README.md","_id":"sass@1.26.0-test.2","_nodeVersion":"12.16.0","_npmVersion":"6.13.4","dist":{"shasum":"1f2da2690c0ed15374ac8207814300015bd13054","size":570915,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.0-test.2.tgz","integrity":"sha512-PXSwlLoRW+Tk+F61lk4kRU6gC4wgEERl7Tl12PP7GxShDhdvO5EUl4deemGMOgNbpyAOX3QTDFk7bpCODg1brw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.0-test.2_1581641259842_0.41402159438226604"},"_hasShrinkwrap":false,"publish_time":1581641260005,"_cnpm_publish_time":1581641260005,"_cnpmcore_publish_time":"2021-12-13T12:17:00.080Z"},"1.26.0-test.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.0-test.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","readmeFilename":"README.md","_id":"sass@1.26.0-test.1","_nodeVersion":"12.15.0","_npmVersion":"6.13.4","dist":{"shasum":"b23764d90142e0751cf31a7488fbbaee0d910ba0","size":571032,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.26.0-test.1.tgz","integrity":"sha512-oOFZTBatNJDEI0z52lSVQLN7B7q0ZHd1WEsBOSpZo24MIydEm75Lw9NWpkhKKkMQT7DHF7o1mEnAMigSXhEdIw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.26.0-test.1_1581129196430_0.03791066360577022"},"_hasShrinkwrap":false,"publish_time":1581129196773,"_cnpm_publish_time":1581129196773,"_cnpmcore_publish_time":"2021-12-13T12:17:01.448Z"},"1.25.1-test.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.25.1-test.1","bin":{"sass":"sass.js"},"main":"sass.dart.js","_id":"sass@1.25.1-test.1","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"23529419f9b11d01df3a5f31ebfb81d8b3c7e181","size":570025,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.25.1-test.1.tgz","integrity":"sha512-159duJa887wy9CKy7d9MUrKQhQvkwb3+l0C17HaJofFTLyHXdEbN5ean5l1gh2xI09ZpMmEJW7075b1VgtSSNA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.25.1-test.1_1579915791735_0.16310612481255626"},"_hasShrinkwrap":false,"publish_time":1579915791912,"_cnpm_publish_time":1579915791912,"_cnpmcore_publish_time":"2021-12-13T12:17:02.588Z"},"1.25.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.25.0","_id":"sass@1.25.0","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"f8bd7dfbb39d6b0305e27704a8ebe637820693f3","size":375014,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.25.0.tgz","integrity":"sha512-uQMjye0Y70SEDGO56n0j91tauqS9E1BmpKHtiYNQScXDHeaE9uHwNEqQNFf4Bes/3DHMNinB6u79JsG10XWNyw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.25.0_1579304926760_0.48504527097932804"},"_hasShrinkwrap":false,"publish_time":1579304926936,"_cnpm_publish_time":1579304926936,"_cnpmcore_publish_time":"2021-12-13T12:17:03.783Z"},"1.24.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.24.5","_id":"sass@1.24.5","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"7fecab3c4db486c584fecb1a79fbc156e52c6c44","size":372355,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.24.5.tgz","integrity":"sha512-vVtXAVGAcR2ZSwxi8poB1+sj8yQo6GfB1gNHeBRJtxpT7JqN8uXWpJorC1yGQN8ScBbcccGENwyfEwIBGudV3w=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.24.5_1579213621157_0.3828467789867709"},"_hasShrinkwrap":false,"publish_time":1579213621338,"_cnpm_publish_time":1579213621338,"_cnpmcore_publish_time":"2021-12-13T12:17:05.207Z"},"1.24.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.24.4","_id":"sass@1.24.4","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"aa50575a9ed2b9e9645b5599156fd149bdad9eaa","size":364299,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.24.4.tgz","integrity":"sha512-SqizkIEEcVPzmK1tYdlNRl/RSXMEwGcifL9GD+S2p9rEPdj6ycRbk4PWZs0jwlajNSyBPo/SXRB81i22SG0jmw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.24.4_1578607072124_0.8134818579129037"},"_hasShrinkwrap":false,"publish_time":1578607072217,"_cnpm_publish_time":1578607072217,"_cnpmcore_publish_time":"2021-12-13T12:17:06.652Z"},"1.24.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.24.3","_id":"sass@1.24.3","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"shasum":"ee2ced4953e79343da0d54d96d6e6e1af6d44290","size":364229,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.24.3.tgz","integrity":"sha512-RGpAeX0xAKUCcT9bNjVd2qcnqz9JkeDFXXLTclpuHJ4JfE8F1xC8SkasNroXqyDTRNFL4phPkvAN2Q8auAJfBQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.24.3_1578436863510_0.2321905963015065"},"_hasShrinkwrap":false,"publish_time":1578436863661,"_cnpm_publish_time":1578436863661,"_cnpmcore_publish_time":"2021-12-13T12:17:07.859Z"},"1.24.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.24.2","_id":"sass@1.24.2","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"shasum":"0a0e0f00368be6808b2e94470172266ac45498fe","size":364230,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.24.2.tgz","integrity":"sha512-0JxdMMRd0fOmGFQFRI91vh4n0Ed766ib9JwPUa+1C37zn3VaqlHxbknUn/6LqP/MSfvNPxRYoCrYf5g8vu4OHw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.24.2_1578097078621_0.5421154810089284"},"_hasShrinkwrap":false,"publish_time":1578097078888,"_cnpm_publish_time":1578097078888,"_cnpmcore_publish_time":"2021-12-13T12:17:09.476Z"},"1.24.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.24.1","_id":"sass@1.24.1","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"shasum":"5b32ef0ee04403939d96a4963a42fd90e9408691","size":364199,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.24.1.tgz","integrity":"sha512-lMhl1V4Bj/lm+5c4sIt3fVzfmkyqqztpypr9dI8N0XsaeLs+gWow0der0e+I9WsRQK86SLXfEUgleERqPbR5Jw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.24.1_1578012692074_0.9415793128704046"},"_hasShrinkwrap":false,"publish_time":1578012692257,"_cnpm_publish_time":1578012692257,"_cnpmcore_publish_time":"2021-12-13T12:17:11.028Z"},"1.24.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.24.0","_id":"sass@1.24.0","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"shasum":"e8b9931bc5d18a37d271749311ef2edc83102a77","size":363586,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.24.0.tgz","integrity":"sha512-1TsPyMhLTx+9DLlmwg02iBW2p4poGA7LlkWJLpUY/XticFKNhPcx+l4FsIJLKl6oSUfXmAKpVljHEez1hwjqiw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.24.0_1576867941601_0.7360090859229966"},"_hasShrinkwrap":false,"publish_time":1576867941907,"_cnpm_publish_time":1576867941907,"_cnpmcore_publish_time":"2021-12-13T12:17:12.291Z"},"1.23.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.7","_id":"sass@1.23.7","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"090254e006af1219d442f1bff31e139d5e085dff","size":359018,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.7.tgz","integrity":"sha512-cYgc0fanwIpi0rXisGxl+/wadVQ/HX3RhpdRcjLdj2o2ye/sxUTpAxIhbmJy3PLQgRFbf6Pn8Jsrta2vdXcoOQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.7_1574206267640_0.3310516182452681"},"_hasShrinkwrap":false,"publish_time":1574206267763,"_cnpm_publish_time":1574206267763,"_cnpmcore_publish_time":"2021-12-13T12:17:13.827Z"},"1.23.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.6","_id":"sass@1.23.6","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"7cce6dbeac1b8caeb33301a817642ee2708f7d7e","size":359018,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.6.tgz","integrity":"sha512-awBvj9xrAuiS2TOCcYSUGCmaBV3UW6fVSK4oJ2LHS8IRfnRLc5EJihw90C7ZJ/skcEwFGSf9/XO5NlMiKupBCg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.6_1573868766639_0.2027551876855016"},"_hasShrinkwrap":false,"publish_time":1573868766772,"_cnpm_publish_time":1573868766772,"_cnpmcore_publish_time":"2021-12-13T12:17:15.321Z"},"1.23.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.5","_id":"sass@1.23.5","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"7f6fefa62ab9eb3d194eb0f6c39ac3c75c197946","size":359018,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.5.tgz","integrity":"sha512-bjrN5UZgB1oKroQOJng8q2Kwe6DyBM0Yu8z3hafATJchTkw3kzoO4rbykPNlnD/Pj+cr/bzI6sexTLXVlvhBjw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.5_1573864496096_0.16915654949572834"},"_hasShrinkwrap":false,"publish_time":1573864496240,"_cnpm_publish_time":1573864496240,"_cnpmcore_publish_time":"2021-12-13T12:17:16.924Z"},"1.23.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.3","_id":"sass@1.23.3","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"f07503b9e8d2bcf06ef69e8beea5d085589b1620","size":358649,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.3.tgz","integrity":"sha512-1DKRZxJMOh4Bme16AbWTyYeJAjTlrvw2+fWshHHaepeJfGq2soFZTnt0YhWit+bohtDu4LdyPoEj6VFD4APHog=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.3_1572590016501_0.4115752756377593"},"_hasShrinkwrap":false,"publish_time":1572590016658,"_cnpm_publish_time":1572590016658,"_cnpmcore_publish_time":"2021-12-13T12:17:18.662Z"},"1.23.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.2","_id":"sass@1.23.2","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"eef0163c7670c80e8824ff75e76a5b4004fe2fd2","size":358659,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.2.tgz","integrity":"sha512-ZfOl81QxcWmjxOgjPbyog3uELzOxd4X9OaqEIAi9r/d2kEjtEYaMAD9a3E+xgjcKeP3NDLMhU9GB/WMv+rAeSw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.2_1572463819259_0.16205710082833336"},"_hasShrinkwrap":false,"publish_time":1572463819546,"_cnpm_publish_time":1572463819546,"_cnpmcore_publish_time":"2021-12-13T12:17:20.253Z"},"1.23.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.1","_id":"sass@1.23.1","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"0e5b72ba2bd9f0229a637d33f8dd5bf2d810beb3","size":358615,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.1.tgz","integrity":"sha512-zQzJ3UETUWOMd/pJJGH/zvRsBVO97m11RcpfUhcQUHEXf0yHUBgOIE/Nw8aK0m1XyVJPeq228iIK7gVxsJ/Puw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.1_1571790734794_0.51160583308974"},"_hasShrinkwrap":false,"publish_time":1571790734943,"_cnpm_publish_time":1571790734943,"_cnpmcore_publish_time":"2021-12-13T12:17:21.649Z"},"1.23.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.0","_id":"sass@1.23.0","_nodeVersion":"12.11.1","_npmVersion":"6.11.3","dist":{"shasum":"bd526ff40dbc5d09a4ed69e2cffa849749977710","size":358668,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.0.tgz","integrity":"sha512-W4HT8+WE31Rzk3EPQC++CXjD5O+lOxgYBIB8Ohvt7/zeE2UzYW+TOczDrRU3KcEy3+xwXXbmDsOZFkoqgD4TKw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.0_1569979783090_0.21708997379145245"},"_hasShrinkwrap":false,"publish_time":1569979783242,"_cnpm_publish_time":1569979783242,"_cnpmcore_publish_time":"2021-12-13T12:17:23.102Z"},"1.22.12":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.12","_id":"sass@1.22.12","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"shasum":"5cbdd38720ffd1857da695331faee9f634bcb5d7","size":352222,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.12.tgz","integrity":"sha512-u5Rxn+dKTPCW5/11kMNxtmqKsxCjcpnqj9CaJoru1NqeJ0DOa9rOM00e0HqmseTAatGkKoLY+jaNecMYevu1gg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.12_1568237027380_0.7000938702563684"},"_hasShrinkwrap":false,"publish_time":1568237027593,"_cnpm_publish_time":1568237027593,"_cnpmcore_publish_time":"2021-12-13T12:17:24.428Z"},"1.23.0-module.beta.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.23.0-module.beta.1","_id":"sass@1.23.0-module.beta.1","_nodeVersion":"12.0.0","_npmVersion":"6.10.1","dist":{"shasum":"9d0f823dcdcd58fc1c1345993ff0306289320963","size":357624,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.23.0-module.beta.1.tgz","integrity":"sha512-Cb6l+z/z5mIpOe8lPp+DttHhHyb6J8SsscSIhLUzqDH2Ta2+9mpz8TRvYezD1n+Ey1TWi3EKz8VUPg42Zc1vmA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.23.0-module.beta.1_1567541096927_0.7707063048875795"},"_hasShrinkwrap":false,"publish_time":1567541097112,"_cnpm_publish_time":1567541097112,"_cnpmcore_publish_time":"2021-12-13T12:17:25.873Z"},"1.22.10":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.10","_id":"sass@1.22.10","_nodeVersion":"12.8.1","_npmVersion":"6.10.2","dist":{"shasum":"b9f01440352ba0be5d99fa64a2040b035cc6e5ff","size":351354,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.10.tgz","integrity":"sha512-DUpS1tVMGCH6gr/N9cXCoemrjoNdOLhAHfQ37fJw2A5ZM4gSI9ej/8Xi95Xwus03RqZ2zdSnKZGULL7oS+jfMA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.10_1565990208029_0.45396364560559554"},"_hasShrinkwrap":false,"publish_time":1565990208240,"_cnpm_publish_time":1565990208240,"_cnpmcore_publish_time":"2021-12-13T12:17:27.590Z"},"1.22.9":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.9","_id":"sass@1.22.9","_nodeVersion":"12.7.0","_npmVersion":"6.10.0","dist":{"shasum":"41a2ed6038027f58be2bd5041293452a29c2cb84","size":351297,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.9.tgz","integrity":"sha512-FzU1X2V8DlnqabrL4u7OBwD2vcOzNMongEJEx3xMEhWY/v26FFR3aG0hyeu2T965sfR0E9ufJwmG+Qjz78vFPQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.9_1564438983036_0.0786244315606961"},"_hasShrinkwrap":false,"publish_time":1564438983210,"_cnpm_publish_time":1564438983210,"_cnpmcore_publish_time":"2021-12-13T12:17:29.242Z"},"1.22.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.7","_id":"sass@1.22.7","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"shasum":"5a1a77dc11aa659db4e782d238bf9f3d44a60546","size":350993,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.7.tgz","integrity":"sha512-ahREi0AdG7RTovSv14+yd1prQSfIvFcrDpOsth5EQf1+RM7SvOxsSttzNQaFmK1aa/k/3vyYwlYF5l0Xl+6c+g=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.7_1563485573259_0.2935955649069033"},"_hasShrinkwrap":false,"publish_time":1563485573448,"_cnpm_publish_time":1563485573448,"_cnpmcore_publish_time":"2021-12-13T12:17:30.675Z"},"1.22.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.6","_id":"sass@1.22.6","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"shasum":"1192aeb55b954576c67eafd560bd17f417903ce9","size":350393,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.6.tgz","integrity":"sha512-tkOvFnETGZShLiRHylzzLai6aQLhBHTG3t15FMgWy+UsRx99ZdQcSBxwPYbiapl+2DndQtr6N4fXbCwjhon9yw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.6_1563405129439_0.9408398371898117"},"_hasShrinkwrap":false,"publish_time":1563405129724,"_cnpm_publish_time":1563405129724,"_cnpmcore_publish_time":"2021-12-13T12:17:32.374Z"},"1.22.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.5","_id":"sass@1.22.5","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"shasum":"0436ba64eaad4c9eb523480c141becc330ddd90b","size":350911,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.5.tgz","integrity":"sha512-Z06zPez82QqlQbqvGKMMEs2bBpLUsmFQxd+8wZJedkptMn8jyk+fccMhfUloD8HsfsYw572ca7Be3zbMBsip4A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.5_1563229483463_0.5157077852562144"},"_hasShrinkwrap":false,"publish_time":1563229483654,"_cnpm_publish_time":1563229483654,"_cnpmcore_publish_time":"2021-12-13T12:17:34.142Z"},"1.22.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.4","_id":"sass@1.22.4","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"shasum":"00b433055f00a25ed5f060ca4abc332facaf02fc","size":210585,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.4.tgz","integrity":"sha512-gQFNzYKlAn9ee6Qy1UhTxy0G24QR5BWP61AN61jAEqwauzVCP5qjUveO/WkIj72po0ljncdVXo96EQR+ig2lRw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.4_1562896342114_0.703810418306013"},"_hasShrinkwrap":false,"publish_time":1562896342327,"_cnpm_publish_time":1562896342327,"_cnpmcore_publish_time":"2021-12-13T12:17:35.678Z"},"1.22.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.3","_id":"sass@1.22.3","_nodeVersion":"12.6.0","_npmVersion":"6.9.0","dist":{"shasum":"b3591191ab0f3caece39ed9384c90caccacf471c","size":210543,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.3.tgz","integrity":"sha512-9ECcSAEgGStxZkpOCT+Z8F6jEJq+jjPonxgX52QVNeJbRL1CmrjN9qcoO78gob6M1bY4ocGVwPWjGDNMeOgvbg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.3_1562204253105_0.8937446231318993"},"_hasShrinkwrap":false,"publish_time":1562204253248,"_cnpm_publish_time":1562204253248,"_cnpmcore_publish_time":"2021-12-13T12:17:37.460Z"},"1.22.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.2","_id":"sass@1.22.2","_nodeVersion":"12.5.0","_npmVersion":"6.9.0","dist":{"shasum":"ed9abee7a3e409fe2ccfdc1b66c64c7c841e0c62","size":210380,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.2.tgz","integrity":"sha512-enuQuy/CbfrZLA2vOy9tB7CK7pP5bZllnMbr5nPGWCFelwt0EMUVGC11gsv9rybkWc8pp/NKVY/c5+AKyjbnXg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.2_1562016173529_0.9681198348165463"},"_hasShrinkwrap":false,"publish_time":1562016173724,"_cnpm_publish_time":1562016173724,"_cnpmcore_publish_time":"2021-12-13T12:17:39.235Z"},"1.22.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":">=2.0.0 <4.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.1","_id":"sass@1.22.1","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"shasum":"9dc3cb2ea37d12fec94ef5c0e1112055f23e5bc8","size":211046,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.1.tgz","integrity":"sha512-VsWrNdfIzCLbD2TO2bq9tCaUzEE0UUSGtP3r9IhHi8ypAPCb3FOVP99kMRil+ZROEcTnKReZcQP9vk6ArV2eLw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.1_1561593961147_0.9154942248581872"},"_hasShrinkwrap":false,"publish_time":1561593961269,"_cnpm_publish_time":1561593961269,"_cnpmcore_publish_time":"2021-12-13T12:17:40.857Z"},"1.22.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.22.0","_id":"sass@1.22.0","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"shasum":"70fcfa86d78450d98a54c7459d3f2c93d7abf30b","size":211039,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.22.0.tgz","integrity":"sha512-6BEkdLYPP26cKggrMuBjMWpguMFgeayW+35LGnzXqCipm86fUboSVAdRLFKRpk1ClMNzFZums6kKkjgWF00WoA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.22.0_1561422309583_0.3490924729499234"},"_hasShrinkwrap":false,"publish_time":1561422309768,"_cnpm_publish_time":1561422309768,"_cnpmcore_publish_time":"2021-12-13T12:17:42.580Z"},"1.21.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.21.0","_id":"sass@1.21.0","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"shasum":"cc565444e27c2336746b09c45d6e8c46caaf6b04","size":204316,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.21.0.tgz","integrity":"sha512-67hIIOZZtarbhI2aSgKBPDUgn+VqetduKoD+ZSYeIWg+ksNioTzeX+R2gUdebDoolvKNsQ/GY9NDxctbXluTNA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.21.0_1559855081982_0.5196646509685843"},"_hasShrinkwrap":false,"publish_time":1559855082331,"_cnpm_publish_time":1559855082331,"_cnpmcore_publish_time":"2021-12-13T12:17:44.210Z"},"1.20.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.20.3","_id":"sass@1.20.3","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"shasum":"18284a7bac6eab9cbb80453288473194f29efb84","size":201675,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.20.3.tgz","integrity":"sha512-kvf+w5XT7FrmFrCKz1gPHqegufG+gxifC8oQesX/s8gkShdeiTqiuvP0c8TvfBwMAuI1YGOgobZQ2KIJGn//jA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.20.3_1559321100865_0.5398951644239021"},"_hasShrinkwrap":false,"publish_time":1559321101053,"_cnpm_publish_time":1559321101053,"_cnpmcore_publish_time":"2021-12-13T12:17:45.778Z"},"1.20.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.20.1","_id":"sass@1.20.1","_nodeVersion":"12.1.0","_npmVersion":"6.9.0","dist":{"shasum":"737b901fe072336da540b6d00ec155e2267420da","size":189540,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.20.1.tgz","integrity":"sha512-BnCawee/L5kVG3B/5Jg6BFwASqUwFVE6fj2lnkVuSXDgQ7gMAhY9a2yPeqsKhJMCN+Wgx0r2mAW7XF/aTF5qtA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.20.1_1556919652435_0.10747061909345446"},"_hasShrinkwrap":false,"publish_time":1556919652601,"_cnpm_publish_time":1556919652601,"_cnpmcore_publish_time":"2021-12-13T12:17:47.606Z"},"1.19.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.19.0","_id":"sass@1.19.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"5de82c713d4299fac57384ef5219534a37fe3e6c","size":188947,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.19.0.tgz","integrity":"sha512-8kzKCgxCzh8/zEn3AuRwzLWVSSFj8omkiGwqdJdeOufjM+I88dXxu9LYJ/Gw4rRTHXesN0r1AixBuqM6yLQUJw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.19.0_1555636297671_0.16707495137615758"},"_hasShrinkwrap":false,"publish_time":1555636297903,"_cnpm_publish_time":1555636297903,"_cnpmcore_publish_time":"2021-12-13T12:17:49.469Z"},"1.18.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.18.0","_id":"sass@1.18.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"f34371c31e268e555c2ac8e43d2b64d194e7d090","size":188900,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.18.0.tgz","integrity":"sha512-Mc579V+BhH693tqt+lvph+gmRqmC6BjtsEVsjkW1944DEA5a0wPuCi781hL3fY4EDuqZnEVPbu42CZRywwE97g=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.18.0_1554762256297_0.37402817223263374"},"_hasShrinkwrap":false,"publish_time":1554762256401,"_cnpm_publish_time":1554762256401,"_cnpmcore_publish_time":"2021-12-13T12:17:51.117Z"},"1.17.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.17.4","_id":"sass@1.17.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"b65b9d11f5cef9b96d6c44566ab91d6357210dbd","size":188752,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.17.4.tgz","integrity":"sha512-NM/RkY54d6C5xJMWk7Z+p0/TfIB71/46/T335Egc0O3G+NeKKVFz1s9EwBlekRnYq3fUCTsbk0zPNMpee5LIdA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.17.4_1554281425142_0.5478748419421473"},"_hasShrinkwrap":false,"publish_time":1554281425344,"_cnpm_publish_time":1554281425344,"_cnpmcore_publish_time":"2021-12-13T12:17:52.978Z"},"1.17.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.17.3","_id":"sass@1.17.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"19f9164cf8653b9fca670a64e53285272c96d192","size":188628,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.17.3.tgz","integrity":"sha512-S4vJawbrNUxJUBiHLXPYUKZCoO6cvq3/3ZFBV66a+PafTxcDEFJB+FHLDFl0P+rUfha/703ajEXMuGTYhJESkQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.17.3_1552681433207_0.027957977604428974"},"_hasShrinkwrap":false,"publish_time":1552681433363,"_cnpm_publish_time":1552681433363,"_cnpmcore_publish_time":"2021-12-13T12:17:54.718Z"},"1.17.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.17.2","_id":"sass@1.17.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"b5a28f2f13c6a219f28084c03623bb2c8d176323","size":186712,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.17.2.tgz","integrity":"sha512-TBNcwSIEXpXAIaFxQnWbHzhciwPKpHRprQ+1ww+g9eHCiY3PINJs6vQTu+LcBt1vIhrtQGRFIoxJO39TfLrptA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.17.2_1550881623755_0.8878077645790412"},"_hasShrinkwrap":false,"publish_time":1550881623930,"_cnpm_publish_time":1550881623930,"_cnpmcore_publish_time":"2021-12-13T12:17:56.421Z"},"1.17.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.17.1","_id":"sass@1.17.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"0963dd58d624a7e2a17fafcbfc9241aaeae70ce5","size":186467,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.17.1.tgz","integrity":"sha512-Wc3FoEClXIhRh7uVkKU04PTkJpGY32qlots+zbPXSqmL2MgnBONTq8gjSTf/ZwlF1MAqrSltGQacJuw1nbYRGA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.17.1_1550700908165_0.9116112101757878"},"_hasShrinkwrap":false,"publish_time":1550700908430,"_cnpm_publish_time":1550700908430,"_cnpmcore_publish_time":"2021-12-13T12:17:58.038Z"},"1.17.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.17.0","_id":"sass@1.17.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"e370b9302af121c9eadad5639619127772094ae6","size":187990,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.17.0.tgz","integrity":"sha512-aFi9RQqrCYkHB2DaLKBBbdUhos1N5o3l1ke9N5JqWzgSPmYwZsdmA+ViPVatUy/RPA21uejgYVUXM7GCh8lcdw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.17.0_1549317359097_0.23577385426589692"},"_hasShrinkwrap":false,"publish_time":1549317359387,"_cnpm_publish_time":1549317359387,"_cnpmcore_publish_time":"2021-12-13T12:17:59.986Z"},"1.16.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.16.1","_id":"sass@1.16.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"3abbb04562c9e3a3ee11c3056956294ed333f6e6","size":184859,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.16.1.tgz","integrity":"sha512-lKoiOI/zsAHrdYAdcWBM0pynYCmK0t7N9OAVjxAoYvo0mDBQmlhM6w+zNuFQYeS6d3VF+7KVWwkX6oWNMJxVag=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.16.1_1547768332970_0.06104320829285714"},"_hasShrinkwrap":false,"publish_time":1547768333105,"_cnpm_publish_time":1547768333105,"_cnpmcore_publish_time":"2021-12-13T12:18:01.897Z"},"1.16.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.16.0","_id":"sass@1.16.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"c7912449b5c93463e7e7f267d55fc1b8816d122b","size":184716,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.16.0.tgz","integrity":"sha512-uJu+dH8XlyN7WCTLg1L1L49EK9mBJyNgS0qDd9NW2eb1h0EnIs50Z0Y+XFev5ae7NdHY/xi1wVnJiLLOE/ojnQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.16.0_1547081295508_0.4616015610264921"},"_hasShrinkwrap":false,"publish_time":1547081295701,"_cnpm_publish_time":1547081295701,"_cnpmcore_publish_time":"2021-12-13T12:18:03.938Z"},"1.16.0-dev":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.16.0-dev","_id":"sass@1.16.0-dev","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"44f7f8bb27fe64aa20c3d69ed192e8e39a5af385","size":184730,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.16.0-dev.tgz","integrity":"sha512-ahtquwSFJz0ThP05Ren4eptBRdEVWkSp0UpjLiYXGB4D03waHX2zEkrfzDTM8lQO4DCG4Hl/5/9xeeIgAyA5jA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.16.0-dev_1547069358989_0.6153362606170343"},"_hasShrinkwrap":false,"publish_time":1547069359206,"_cnpm_publish_time":1547069359206,"_cnpmcore_publish_time":"2021-12-13T12:18:06.393Z"},"1.15.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.15.3","_id":"sass@1.15.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"12c8c62f707a9cd28856e9463914fcb5a7f556c7","size":184677,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.15.3.tgz","integrity":"sha512-9e6zdkLEjMAX/zXUWKs9GreDLFYozFOEu4gMZBZpkp+AiQgaofimqGZm9qMhS5V+4V2OWBapnM5xoJn2Rw9pQg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.15.3_1546635915413_0.6659700843670755"},"_hasShrinkwrap":false,"publish_time":1546635915559,"_cnpm_publish_time":1546635915559,"_cnpmcore_publish_time":"2021-12-13T12:18:08.604Z"},"1.15.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.15.2","_id":"sass@1.15.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"539f464a61e29a9e4f560ec9dc2ccc5236db8474","size":188735,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.15.2.tgz","integrity":"sha512-YFncPpx3ewKEhMg9sWdCxKUpPN/jwVLa0Q9iO2tcV5Y5Z/YAlFV6k6JaQwq3tmbN6FXKjUYElXRHcG0g4D1zkQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.15.2_1544139464621_0.023957163907118773"},"_hasShrinkwrap":false,"publish_time":1544139464768,"_cnpm_publish_time":1544139464768,"_cnpmcore_publish_time":"2021-12-13T12:18:10.649Z"},"1.15.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.15.1","_id":"sass@1.15.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"25a03f6813413540210580b670628360c36267d3","size":188760,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.15.1.tgz","integrity":"sha512-WiDa5BsePB/rQEbh/Fv2pVDUCasxuRYjW7GsWx8Ld23LY61vx1VV5Mzf/7mu5kLWKMryMqo65fzYL34HgaM47w=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.15.1_1542407069505_0.4756008335086974"},"_hasShrinkwrap":false,"publish_time":1542407069707,"_cnpm_publish_time":1542407069707,"_cnpmcore_publish_time":"2021-12-13T12:18:12.694Z"},"1.15.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.15.0","_id":"sass@1.15.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"80cd374ad9db9f4a24942cf927552d31d8b6f376","size":190562,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.15.0.tgz","integrity":"sha512-xY+n0MB/KAjwwNJYXBD5yJOG2mS2Ac8AXB7Ci2KbWxivbiDVMxhy3vbvXAllVABAHjBqZYUPq1qOJeqZ2XMVIQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.15.0_1542233498122_0.9516276295851851"},"_hasShrinkwrap":false,"publish_time":1542233498281,"_cnpm_publish_time":1542233498281,"_cnpmcore_publish_time":"2021-12-13T12:18:14.846Z"},"1.14.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.14.3","_id":"sass@1.14.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"b8e73fee303ab97aa4ca84b8251862257e610095","size":189424,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.14.3.tgz","integrity":"sha512-yMpd6lYHSXX9JQ0nZzzHNa+7OuAehP7eUMOom18Z6WaITyyE+hXyKYSzsFspFotMszbwXQxfytSSJVPjEUzglg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.14.3_1539822399330_0.9390776787423425"},"_hasShrinkwrap":false,"publish_time":1539822399479,"_cnpm_publish_time":1539822399479,"_cnpmcore_publish_time":"2021-12-13T12:18:16.816Z"},"1.14.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.14.2","_id":"sass@1.14.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"6fabdb10939a3f6848cda59b7d91d6a3103923c0","size":189150,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.14.2.tgz","integrity":"sha512-2tv+ROdMomDr9+uc+LCSUPFTZwOZ0MB7BbidrRZ5s3pbg1qKTKS7pL71dVvkOUjrSicHuk7fnqEVG73oa9FJtg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.14.2_1539297418257_0.9424171743105989"},"_hasShrinkwrap":false,"publish_time":1539297418415,"_cnpm_publish_time":1539297418415,"_cnpmcore_publish_time":"2021-12-13T12:18:18.849Z"},"1.14.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.14.1","_id":"sass@1.14.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"6f7b083b880104caa19e45841cdb0889d9bdadbf","size":188227,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.14.1.tgz","integrity":"sha512-XjTTos0ocxN4R2vdOoo083PXUt1XZkOO+ynAl4auomOSAbLr4/aGg19cSpR7w90nUtP6cIRysytboJRUGfw03A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.14.1_1538011973305_0.7616466487045117"},"_hasShrinkwrap":false,"publish_time":1538011973441,"_cnpm_publish_time":1538011973441,"_cnpmcore_publish_time":"2021-12-13T12:18:20.859Z"},"1.14.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.14.0","_id":"sass@1.14.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"ace6b0230efd2b1fb2cd622e69118fe450852f97","size":178243,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.14.0.tgz","integrity":"sha512-fXh9+eVDd1SRlllgSookDmPxcTZXrY1TYjsL5HGhN41rVWd1bd5GGGEmKBhqEPIu8bDPJteAWmcktOf31bshIQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.14.0_1537391498768_0.9931671058118574"},"_hasShrinkwrap":false,"publish_time":1537391498957,"_cnpm_publish_time":1537391498957,"_cnpmcore_publish_time":"2021-12-13T12:18:22.945Z"},"1.13.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.13.4","_id":"sass@1.13.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"c6d8e08623b6f11ac1fc55c7581c395c9d5c65a8","size":178551,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.13.4.tgz","integrity":"sha512-h7CaGauRQV78CdwHlVws4+yvjTYJn91ymUNuLWqrGpnbPULqzMNGNCIVFzXlPrw/Stm2itbx5T1tZe7jidlFbQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.13.4_1536703474107_0.8538177736962766"},"_hasShrinkwrap":false,"publish_time":1536703474268,"_cnpm_publish_time":1536703474268,"_cnpmcore_publish_time":"2021-12-13T12:18:24.989Z"},"1.13.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.13.3","_id":"sass@1.13.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"60b836397e3f82495606001750715123af459908","size":189375,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.13.3.tgz","integrity":"sha512-8/1aBUHyPVaW9dOTesZXuz57vnw7fwcoOFKQ/84UKHwewK1JBfTb27jDMAs9If/34uHglBcSg/Ukb7P/s7D84w=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.13.3_1536694957687_0.14663981068766851"},"_hasShrinkwrap":false,"publish_time":1536694957896,"_cnpm_publish_time":1536694957896,"_cnpmcore_publish_time":"2021-12-13T12:18:27.248Z"},"1.13.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.13.2","_id":"sass@1.13.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"e4c43cf3cc9e8451960831dc66a5b76a3b038024","size":189118,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.13.2.tgz","integrity":"sha512-nun9ao2lDIN8f4RScP6eCfkp0QRxHeMy4cKq1eUKHs3T1t48oAZ/AQG3TJMOIYyqs4TTdK/bshXvZ5sefPagZA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.13.2_1536188364431_0.5877252685988521"},"_hasShrinkwrap":false,"publish_time":1536188364592,"_cnpm_publish_time":1536188364592,"_cnpmcore_publish_time":"2021-12-13T12:18:29.550Z"},"1.13.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.13.1","_id":"sass@1.13.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"1e556f15962269a2732d7d849921a7b7783d90b1","size":189034,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.13.1.tgz","integrity":"sha512-200GEQgfCOGaBXkvVexPG5xVwNjqQmlekf+42Hi9m3I8iY4M90ucNG/AlqWIuTWFYTZxHkeLNc7jR3uz0rVelw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.13.1_1535762612556_0.5895083945794695"},"_hasShrinkwrap":false,"publish_time":1535762612811,"_cnpm_publish_time":1535762612811,"_cnpmcore_publish_time":"2021-12-13T12:18:31.613Z"},"1.13.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.13.0","_id":"sass@1.13.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"1b2dbd3e6d45a9d0fcf36203c2f1791bd3f4e876","size":189182,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.13.0.tgz","integrity":"sha512-FmA4D73dULJ2WsnbMar3P9Fj1Kd83T3YA+QTfbb2+T61epdIgAvfCR+m9mK/mQrN45stlipKoVqsdaEdLe+iDQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.13.0_1534539615736_0.5965511430287813"},"_hasShrinkwrap":false,"publish_time":1534539615907,"_cnpm_publish_time":1534539615907,"_cnpmcore_publish_time":"2021-12-13T12:18:33.499Z"},"1.12.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.12.0","_id":"sass@1.12.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"351d36aa44f5ab5acf407291aa529dc291997a19","size":189284,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.12.0.tgz","integrity":"sha512-VcBVNb+N1gwlAZd2yMf/9NlQ6d6i/R+okYJ058oA7clTIPJktKi8J6dLgWGjlSesfFt4Ry+RjWENtEs1WJwjzA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.12.0_1534366344918_0.9733836285223096"},"_hasShrinkwrap":false,"publish_time":1534366345095,"_cnpm_publish_time":1534366345095,"_cnpmcore_publish_time":"2021-12-13T12:18:35.655Z"},"1.11.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.11.0","_id":"sass@1.11.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"2fb679a874d3ce50af9b93dcd8a671b714acd890","size":189464,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.11.0.tgz","integrity":"sha512-sIkg6ISfQDfCfwZ7lexbgT0+C2C0DK1xahR13CtZiUQRQeHn0WiSQI8OHdQReiSDg1svoyIKaPKUdYLNb6Juww=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.11.0_1534193471429_0.2066665758087849"},"_hasShrinkwrap":false,"publish_time":1534193471762,"_cnpm_publish_time":1534193471762,"_cnpmcore_publish_time":"2021-12-13T12:18:37.750Z"},"1.10.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.10.4","_id":"sass@1.10.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"3dbbb000b868ec13cb95a6a2f1ab8e877688f50d","size":188014,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.10.4.tgz","integrity":"sha512-cXKgAKUaYJjTOahjK8xITbZXoJPE8mpDefiG6RDZbWdtjg0VAPq9mXoxFy9p8rdVuoqXQ4qo68Ic/KtLZNx6NQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.10.4_1533859344963_0.8787796198384668"},"_hasShrinkwrap":false,"publish_time":1533859345086,"_cnpm_publish_time":1533859345086,"_cnpmcore_publish_time":"2021-12-13T12:18:39.799Z"},"1.10.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.10.3","_id":"sass@1.10.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"a3e4ce08e279e7d12fb1f15a86327aeef9edd21a","size":188018,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.10.3.tgz","integrity":"sha512-6ZOovA5xNZ19epFifIqqC8befpyZgXw8uygiW3v+IdHAE24catMGHcXltdEX1Hk5lHDY7gzapBHXQfIO3hnluQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.10.3_1533333056119_0.4422436248474473"},"_hasShrinkwrap":false,"publish_time":1533333056241,"_cnpm_publish_time":1533333056241,"_cnpmcore_publish_time":"2021-12-13T12:18:42.066Z"},"1.10.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.10.2","_id":"sass@1.10.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"67627ec81724b75675ed4d9aa6bdb4e84b352c80","size":188018,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.10.2.tgz","integrity":"sha512-CcfIcZQTfHl7PRsU+rmsfVyH0AQYwHjqa0f01AK82iM62/RIXrYRSCpW3Jbl6oo0pHcu1GuN/FLYe010aMMqdQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.10.2_1533253550602_0.808223829627039"},"_hasShrinkwrap":false,"publish_time":1533253550702,"_cnpm_publish_time":1533253550702,"_cnpmcore_publish_time":"2021-12-13T12:18:44.259Z"},"1.10.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.10.1","_id":"sass@1.10.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"3e17cbcf8984a977731c7ecdeefaf5798c68c5f1","size":188021,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.10.1.tgz","integrity":"sha512-tmDf4uHAifn3WHydSn7BZY1Q39zdXdfjDlzYYgN/CuwwYWVVOBhFCKeF3QUdJNP9LvSXl6lSft0YRhYSRLc5dA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.10.1_1532478918534_0.414434903217747"},"_hasShrinkwrap":false,"publish_time":1532478919448,"_cnpm_publish_time":1532478919448,"_cnpmcore_publish_time":"2021-12-13T12:18:46.477Z"},"1.10.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.10.0","_id":"sass@1.10.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"0a2d52b2d74696802169f83598344caefd1c6e7d","size":188007,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.10.0.tgz","integrity":"sha512-J/QFqrMyRFcSUTjJ45rDfKA97cM8G5pA0imNOa9IPEg1/EMdPbx7OhuzHjTBIWkoDBiW9/aHap05JS2JNUjUVw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.10.0_1531954365172_0.4033708179827018"},"_hasShrinkwrap":false,"publish_time":1531954365298,"_cnpm_publish_time":1531954365298,"_cnpmcore_publish_time":"2021-12-13T12:18:48.343Z"},"1.9.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.9.2","_id":"sass@1.9.2","_npmVersion":"5.7.1","_nodeVersion":"8.4.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"29e306a6e839f10f3029465b66e2020239c2c347","size":187673,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.9.2.tgz","integrity":"sha512-ySh8RtZgblpq5PY4S58WSpm7Wk5H1rjRkDMdH6VSNj1erm4y6zzqq+euQWXkaDbqowomNCLWm4LbQY6KciGcCg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.9.2_1531507588716_0.36301444141425043"},"_hasShrinkwrap":false,"publish_time":1531507588898,"_cnpm_publish_time":1531507588898,"_cnpmcore_publish_time":"2021-12-13T12:18:50.133Z"},"1.9.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.9.1","_id":"sass@1.9.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"f7a0ae702c48dcab71613ae2e2a5e4f38095f159","size":187940,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.9.1.tgz","integrity":"sha512-rsq4YcEV8UFw9FBRi281xNWH8K5HYimyFp+XsLl6wXaA9HJcm6GAFDoBJM2ZKSOZqASF0WWtsyd+qSsIbbGx2A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.9.1_1531343717131_0.998019603323707"},"_hasShrinkwrap":false,"publish_time":1531343717286,"_cnpm_publish_time":1531343717286,"_cnpmcore_publish_time":"2021-12-13T12:18:52.465Z"},"1.9.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.9.0","_id":"sass@1.9.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"6199d8e91a08cadc9d5bcf4f223aa8ccdca257da","size":187842,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.9.0.tgz","integrity":"sha512-404qrJbeZaxhS/tXemM5CNQ1OuvqcVGiqYEYx9wkr7btCqaGn3pMsnC8x7Z4Mnv+QusXbDPNZzPVRdtd+hm5lg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.9.0_1530664986700_0.4117626319715535"},"_hasShrinkwrap":false,"publish_time":1530664986870,"_cnpm_publish_time":1530664986870,"_cnpmcore_publish_time":"2021-12-13T12:18:54.705Z"},"1.8.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.8.0","_id":"sass@1.8.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"e3b2ca8db898c5e28a827b525cf91b3c5efd239c","size":187586,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.8.0.tgz","integrity":"sha512-1ttLcK4J51vGSpz64ZRKOgHNOiCJh3N2SxfLsFpq3ue+GtFs2b0nkDvap2ugRRIKV4PMNyrCVCnCCfHQoWce+A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.8.0_1530322955659_0.3861662841884417"},"_hasShrinkwrap":false,"publish_time":1530322955774,"_cnpm_publish_time":1530322955774,"_cnpmcore_publish_time":"2021-12-13T12:18:57.104Z"},"1.7.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.7.3","_id":"sass@1.7.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"7f211024e18361cb91f8a5527b2d90a5e2b0d6da","size":187239,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.7.3.tgz","integrity":"sha512-XfAeECplGb5FLQd0sHhIzUNR+iab9p9tbwzirDtNVsZHRBe7Jl9qvFMDKLKTTZIqTXG5r6seuBnRVjrpO7d4qA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.7.3_1530148350689_0.5554968275359848"},"_hasShrinkwrap":false,"publish_time":1530148350823,"_cnpm_publish_time":1530148350823,"_cnpmcore_publish_time":"2021-12-13T12:18:59.174Z"},"1.7.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.7.2","_id":"sass@1.7.2","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"a8ff878ad9dcba65e226c1ccb2c2f3c7a1009578","size":176312,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.7.2.tgz","integrity":"sha512-zUm2NXL77WtQDbp4MKgysAxH41Fzs5BnBUogEPi8IKNQ1M5rKoFe46YBXfxr0I+cQX+xbSc//psSdq5eyYhJsg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.7.2_1530131448411_0.9355099852894773"},"_hasShrinkwrap":false,"publish_time":1530131448480,"_cnpm_publish_time":1530131448480,"_cnpmcore_publish_time":"2021-12-13T12:19:01.216Z"},"1.7.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.7.1","_id":"sass@1.7.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"09d4a3fab8b42db3aad1a31dcaf3e24a54b838a7","size":176219,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.7.1.tgz","integrity":"sha512-w+xtCkxgRwCtsY6MeXVwIjai+MJKtXsAlzsvFrlcnhpwDPnigYqkaYoYuuMT3unFYWYGJJJHs9Ptbk2YqTZVZQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.7.1_1529958824753_0.8699657431628411"},"_hasShrinkwrap":false,"publish_time":1529958824953,"_cnpm_publish_time":1529958824953,"_cnpmcore_publish_time":"2021-12-13T12:19:03.231Z"},"1.7.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.7.0","_id":"sass@1.7.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"02fa8b4a9e7b2b8441b839fc8558213718819c81","size":187504,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.7.0.tgz","integrity":"sha512-dNtUeD9auEL0w6SyR8AEEe9EF516hsfdY+fNnZ3OKcH7qupStfcyPRb5FFs1eO9yHaWv7koJMi3aPGEq7LV2Ew=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.7.0_1529697862942_0.26128232882103086"},"_hasShrinkwrap":false,"publish_time":1529697863073,"_cnpm_publish_time":1529697863073,"_cnpmcore_publish_time":"2021-12-13T12:19:05.197Z"},"1.6.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.6.2","_id":"sass@1.6.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"665cadcbd853e9e497cbd298de645440a992cd1a","size":175961,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.6.2.tgz","integrity":"sha512-JMHF6cno1mRz7fppIyww6JRtMwYteARiBYMYKIZ3eu9j8ISqcN5jvvZvWnipLhZsLiGD5ASU8RpJo4D57VnxoQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.6.2_1529457128925_0.9499790159027699"},"_hasShrinkwrap":false,"publish_time":1529457129020,"_cnpm_publish_time":1529457129020,"_cnpmcore_publish_time":"2021-12-13T12:19:07.227Z"},"1.6.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.6.1","_id":"sass@1.6.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"4ece39699c08785fe85af7775410d524f88e1090","size":175963,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.6.1.tgz","integrity":"sha512-I0XDkghpA1qtev3NL66s3HdAOfnLLZthbiSQycrzMihasuxldWbJiZo9xqLWqPF2k7stZKNlPJXsN1RD/84myg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.6.1_1529099938934_0.7967081094528274"},"_hasShrinkwrap":false,"publish_time":1529099939001,"_cnpm_publish_time":1529099939001,"_cnpmcore_publish_time":"2021-12-13T12:19:09.431Z"},"1.6.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"dependencies":{"chokidar":"^2.0.0"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.6.0","_id":"sass@1.6.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"4ca3043519dda77b53043a304236ec81eec51f85","size":299378,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.6.0.tgz","integrity":"sha512-00BCCvnDLafk2vx/sguNfjcSD1xfsaiK4YRJZQXjr9+AeUF3d/MYouDg64wnt8xaAdI7zFLImxxMVuLHGeZLVg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.6.0_1529022577412_0.5669530336244268"},"_hasShrinkwrap":false,"publish_time":1529022577521,"_cnpm_publish_time":1529022577521,"_cnpmcore_publish_time":"2021-12-13T12:19:11.788Z"},"1.5.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.5.1","_id":"sass@1.5.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"5ac0ce58eb90f67378b0f77270e40b3422788510","size":167852,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.5.1.tgz","integrity":"sha512-C9s7SFttwy5OnXDs0ZFVv7c659A7GG/0R0VyrQaGXR07cucSJA2E5XN2ZhLF3kklN90aXuPD2rphkNWyeb6y2A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.5.1_1527815060475_0.9778856954338333"},"_hasShrinkwrap":false,"publish_time":1527815060573,"_cnpm_publish_time":1527815060573,"_cnpmcore_publish_time":"2021-12-13T12:19:14.198Z"},"1.5.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.5.0","_id":"sass@1.5.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"7f28e43d0006083e7f7606416b0b0c20c1de163b","size":167510,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.5.0.tgz","integrity":"sha512-nAFMKUaIVDp2XdcioHpJK86K8cSj4x/gUk4p8ilffWiOxQ/rU4tdPuw+Mk3uD9XSA+tKLPxqZS3a4drcnDti4Q=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.5.0_1527729636112_0.9700519454777172"},"_hasShrinkwrap":false,"publish_time":1527729636269,"_cnpm_publish_time":1527729636269,"_cnpmcore_publish_time":"2021-12-13T12:19:16.694Z"},"1.4.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.4.0","_id":"sass@1.4.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"37b2eb8ef6172db570392564d2bef1db936a2dfd","size":159288,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.4.0.tgz","integrity":"sha512-sxV8ya7mqZpJejAkMKsSrlPWseFY3ZpNHyllXkBeTYS0tE8/CqpC4EwQHawso1270o4whhrwiSkSFZxplWvGcQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.4.0_1527544995741_0.33006939638989596"},"_hasShrinkwrap":false,"publish_time":1527544996044,"_cnpm_publish_time":1527544996044,"_cnpmcore_publish_time":"2021-12-13T12:19:19.100Z"},"1.3.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.3.2","_id":"sass@1.3.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"331fea13fb8d32cc3ffb3d1f352c917cfbae1950","size":161055,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.3.2.tgz","integrity":"sha512-1dBIuVtEc5lcgHaEUY8FE50YlTZB59pyodpaVoPkBppxm9JcE6X2u+IcVitMxoQnvJvpjk8esR7UlnbNmFTH+Q=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.3.2_1525394088789_0.42060067467751416"},"_hasShrinkwrap":false,"publish_time":1525394088927,"_cnpm_publish_time":1525394088927,"_cnpmcore_publish_time":"2021-12-13T12:19:21.266Z"},"1.3.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.3.1","_id":"sass@1.3.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"432a6a455e0bb50fd8f2364b9d5257c88f87f5ff","size":160975,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.3.1.tgz","integrity":"sha512-+7vyOsEIjss1oUWobiutQgvSCgQM8SOImmXnnzb6TDPppId0dqzymrso5otGkNLUtZ6MdqpxdryeNq2B95rbug=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.3.1_1525306861463_0.831381331361047"},"_hasShrinkwrap":false,"publish_time":1525306861622,"_cnpm_publish_time":1525306861622,"_cnpmcore_publish_time":"2021-12-13T12:19:23.750Z"},"1.3.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.3.0","_id":"sass@1.3.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"570f2ac1c868dacf2101648056f40423284a557c","size":160963,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.3.0.tgz","integrity":"sha512-YdPvqr6GCzh70dB0NMdQ+95YS5WxdCSrJ1eql3+o+t/GOQQTNgb4qXAY+b8e6dIHx7fa3LT73EpsjeZTXdCZkQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.3.0_1524706391945_0.8267289322790308"},"_hasShrinkwrap":false,"publish_time":1524706392055,"_cnpm_publish_time":1524706392055,"_cnpmcore_publish_time":"2021-12-13T12:19:25.953Z"},"1.2.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.2.1","_id":"sass@1.2.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"c6e49068a62b8237b29343c8b27c89e7d8a55af9","size":154332,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.2.1.tgz","integrity":"sha512-y1dN4TSLSlvKNvwdxLD6gH7T5yQc59CLtwD4+Tv0IYS964KWBAqb4/EQH6usyzko8jnKdJgYlM5uVghBOwP9bA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.2.1_1524177336336_0.2294648862888391"},"_hasShrinkwrap":false,"publish_time":1524177336455,"_cnpm_publish_time":1524177336455,"_cnpmcore_publish_time":"2021-12-13T12:19:28.566Z"},"1.2.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.2.0","_id":"sass@1.2.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"9e557ccc2a00bff22162d8fb38d2ee9303401df6","size":154235,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.2.0.tgz","integrity":"sha512-9uxRxzED43paANIah+2IHxCZvwuew72j2sqgDelSVGVMQwKMpbbr8ibmGeTMd1UfYtTAq7DMDOI1iKvfVAtqsw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.2.0_1523748382137_0.604767791384448"},"_hasShrinkwrap":false,"publish_time":1523748382247,"_cnpm_publish_time":1523748382247,"_cnpmcore_publish_time":"2021-12-13T12:19:30.953Z"},"1.1.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.1.1","_id":"sass@1.1.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"e4415c480c68e054a618e5b2d595bab894018967","size":171541,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.1.1.tgz","integrity":"sha512-vYtJx3bSvcYy2INuvwu1WWg8zaQrg7+wTM0/bOdwf6MrX/hVp2doZvXHIYJYPVlMonKvv+5gotLCNgdBlQWz9g=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.1.1_1522186455098_0.2847726156500521"},"_hasShrinkwrap":false,"publish_time":1522186455228,"_cnpm_publish_time":1522186455228,"_cnpmcore_publish_time":"2021-12-13T12:19:33.848Z"},"1.1.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.1.0","_id":"sass@1.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"2f6c893181aa8784f5a8e884b11611114f2a3e0a","size":171341,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.1.0.tgz","integrity":"sha512-d1CvbI1JLWIv/oZlmFP3GSn/csQ70KFRc85l0RjMGrDKhcxz135JaEybRT06qX8+J7qo91syobPkjLD+n8jnxw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.1.0_1522184568353_0.32884509453298727"},"_hasShrinkwrap":false,"publish_time":1522184568545,"_cnpm_publish_time":1522184568545,"_cnpmcore_publish_time":"2021-12-13T12:19:36.463Z"},"1.0.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0","_id":"sass@1.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"88e3ef544457ff471cde76035641775b54578a2e","size":171338,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0.tgz","integrity":"sha512-xTPPjkPjsGVgbKO23y1C/Cgjb3CsIHDHrcDqY2+hekleKLU8n0N9AT5hVz4DlBmznlhD+LkeJgGxjiHqZ/HLpw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.0.0_1522094657620_0.710452734162059"},"_hasShrinkwrap":false,"publish_time":1522094657865,"_cnpm_publish_time":1522094657865,"_cnpmcore_publish_time":"2021-12-13T12:19:39.130Z"},"1.0.0-rc.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-rc.1","_id":"sass@1.0.0-rc.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"4e46d6af256bfce5a153658da223be42dc412a9a","size":171918,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-rc.1.tgz","integrity":"sha512-QX6hpmo7PVA0O+ZXLPBenc3oNvrPIicaU1GLK8EY/xWLzzLdFN86lR73JRxLS4I6KGTUvXqm7XNUgRR6oH7vYQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.0.0-rc.1_1521244153524_0.24433229604392204"},"_hasShrinkwrap":false,"publish_time":1521244153655,"_cnpm_publish_time":1521244153655,"_cnpmcore_publish_time":"2021-12-13T12:19:41.824Z"},"1.0.0-beta.5.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.5.3","_id":"sass@1.0.0-beta.5.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"dist":{"shasum":"f7d422dcd3fc87d7c8dff3f1872ef6ee98b29638","size":171263,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.5.3.tgz","integrity":"sha512-iZ2fsJ63T45nFhnnBz6P4qV3pjcIBfzco/jg0kq9RvMzOxuzDGhuaZMexCaiWwIPqDxkFXfQ7KJpSrZmz4IVxg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.0.0-beta.5.3_1520297347424_0.3179569662640813"},"_hasShrinkwrap":false,"publish_time":1520297347628,"_cnpm_publish_time":1520297347628,"_cnpmcore_publish_time":"2021-12-13T12:19:44.338Z"},"1.0.0-beta.5.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.5.2","_id":"sass@1.0.0-beta.5.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"25d025064f051507665ef1371e24cdc62b6d5829","size":171009,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.5.2.tgz","integrity":"sha512-JM34UDy1QS074OVExFfwKdeWuD4sbVrYOsdEzN3crAYcdp3FyIc5ZPIQDV4ttGVq10fDqyRtO9W7SN8USuMhxw=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass-1.0.0-beta.5.2.tgz_1517715567400_0.3631945208180696"},"directories":{},"publish_time":1517715568901,"_hasShrinkwrap":false,"_cnpm_publish_time":1517715568901,"_cnpmcore_publish_time":"2021-12-13T12:19:46.698Z"},"1.0.0-beta.5.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.5.1","_id":"sass@1.0.0-beta.5.1","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"b1c9102b4e167b67a36fab13ba353b6f81c19436","size":171008,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.5.1.tgz","integrity":"sha512-GRGXOoOnPHJqmsoxIVlLoI4zzMfpEUiaVBi58sXwXqVfaTHyNOk2na3stNhP/LwgUlAtjUjIZJeTqucPBEH86A=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass-1.0.0-beta.5.1.tgz_1517622227111_0.9202828563284129"},"directories":{},"publish_time":1517622227241,"_hasShrinkwrap":false,"_cnpm_publish_time":1517622227241,"_cnpmcore_publish_time":"2021-12-13T12:19:49.376Z"},"1.0.0-beta.4":{"name":"sass","description":"A Dart implementation of Sass, compiled to JS.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.4","_id":"sass@1.0.0-beta.4","scripts":{},"_shasum":"8ace58451904070c308699e756f6a9d4f92024b5","_from":"build/npm","_resolved":"file:build/npm","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"8ace58451904070c308699e756f6a9d4f92024b5","size":159385,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.4.tgz","integrity":"sha512-c/9qgt9gHIm6IAvhi8UztI1qqSMNK7rOeqaNcElprulZAX1PBc7/ElvQGgbHD2CtU/WfAbfP8CzUfjQg5cI3Pg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass-1.0.0-beta.4.tgz_1512777455621_0.07925860770046711"},"directories":{},"publish_time":1512777455781,"_hasShrinkwrap":false,"_cnpm_publish_time":1512777455781,"_cnpmcore_publish_time":"2021-12-13T12:19:51.588Z"},"1.0.0-beta.3":{"name":"sass","description":"A Dart implementation of Sass, compiled to JS.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.3","_id":"sass@1.0.0-beta.3","scripts":{},"_shasum":"b3aa1b8e760471340dfe11014c9af59c0bf48cdc","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"b3aa1b8e760471340dfe11014c9af59c0bf48cdc","size":143816,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.3.tgz","integrity":"sha512-A3b7JUx7MqfW5IP8Mwebmbp4yRJnl3ehfUtHMmmUjaKgdfhT1HBV2zI3XE+7xM1GfJefe0yapGRuQ4QpJVChiQ=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass-1.0.0-beta.3.tgz_1509746026283_0.3649024651385844"},"directories":{},"publish_time":1509746026452,"_hasShrinkwrap":false,"_cnpm_publish_time":1509746026452,"_cnpmcore_publish_time":"2021-12-13T12:19:53.898Z"},"1.0.0-beta.2":{"name":"sass","description":"A Dart implementation of Sass, compiled to JS.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.2","_id":"sass@1.0.0-beta.2","scripts":{},"_shasum":"910071f16ddcde0b946392aadfa12d347128eb5d","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"910071f16ddcde0b946392aadfa12d347128eb5d","size":134123,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.2.tgz","integrity":"sha512-ha8eWkdqo2+HyMCfoJrQYM2oXclkKgNRRYEMUT07PwuTaC76z734eJupcXfOPEgpfaJiy800+bWxthjSeHCNmA=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass-1.0.0-beta.2.tgz_1500083861344_0.10499136056751013"},"directories":{},"publish_time":1500083861669,"_hasShrinkwrap":false,"_cnpm_publish_time":1500083861669,"_cnpmcore_publish_time":"2021-12-13T12:19:56.331Z"},"1.0.0-beta.1":{"name":"sass","description":"A Dart implementation of Sass, compiled to JS.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=0.11.8"},"main":"sass.dart.js","bin":{"sass":"sass.js"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.0.0-beta.1","_id":"sass@1.0.0-beta.1","scripts":{},"_shasum":"d236c3a84a62de0c0b81d78435fe83925cf332d4","_from":"build/npm","_resolved":"file:build/npm","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"nex3","email":"nex342@gmail.com"},"dist":{"shasum":"d236c3a84a62de0c0b81d78435fe83925cf332d4","size":133207,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-1.0.0-beta.1.tgz","integrity":"sha512-JYljjv1ZRxCpff8fKU1sytnMeSESePKPJkZ1rQD0JRFphYy/jo61q9QdCjnuToz+FUIFWESHFcGbsL7mvFWGFg=="},"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass-1.0.0-beta.1.tgz_1496787062547_0.4719900747295469"},"directories":{},"publish_time":1496787062700,"_hasShrinkwrap":false,"_cnpm_publish_time":1496787062700,"_cnpmcore_publish_time":"2021-12-13T12:19:58.988Z"},"0.5.0":{"name":"sass","description":"Syntactically Awesome Stylesheets (compiles to css)","version":"0.5.0","keywords":["sass","template","css","view"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"contributors":[{"name":"Chris Pickel","email":"sfiera@gmail.com"}],"main":"./lib/sass","_id":"sass@0.5.0","engines":{"node":"*"},"_nodeSupported":true,"_npmVersion":"0.2.7-2","_nodeVersion":"v0.3.1-pre","dist":{"shasum":"9dee1183a0f400361f2c5d3453bf2e54705e03f9","size":35423,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-0.5.0.tgz","integrity":"sha512-liAkSJ68rEPg8LybaB7jX3j6hT1yq0p+BHhA/ar/tFL//F3iQr+bqQH4+s7Csb8DdIBr7SCIinkxvxLd2mQMjw=="},"directories":{},"publish_time":1496781404615,"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_hasShrinkwrap":false,"_cnpm_publish_time":1496781404615,"_cnpmcore_publish_time":"2021-12-13T12:20:01.629Z"},"0.4.3":{"name":"sass","description":"Syntactically Awesome Stylesheets (compiles to css)","version":"0.4.3","keywords":["sass","template","css","view"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"directories":{"lib":"."},"_id":"sass@0.4.3","engines":{"node":"*"},"_nodeSupported":true,"_npmVersion":"0.2.7-2","_nodeVersion":"v0.3.1-pre","dist":{"shasum":"56997a8fa8033619c98e7e33f011e165dc68b6b0","size":34732,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-0.4.3.tgz","integrity":"sha512-Aq0NNRkeMNyaqohFGr/oPBuUkAzxccRIV8zjsPp3IrYevBm6WlSSyb1e0IfMlfotftHaDaGB9Q1oW55jJ0N6SA=="},"publish_time":1496781404615,"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_hasShrinkwrap":false,"_cnpm_publish_time":1496781404615,"_cnpmcore_publish_time":"2021-12-13T12:20:04.327Z"},"0.4.2":{"name":"sass","description":"Syntactically Awesome Stylesheets (compiles to css)","version":"0.4.2","keywords":["sass","template","css","view"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"directories":{"lib":"."},"_id":"sass@0.4.2","engines":{"node":"*"},"_nodeSupported":true,"_npmVersion":"0.2.7-2","_nodeVersion":"v0.3.1-pre","dist":{"shasum":"f866ef0f4bd9095e934c11c44b76159be5839a74","size":34708,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-0.4.2.tgz","integrity":"sha512-IJAFyA+zmbWsJs9bFIAVEgCQaRbm1hclZiVCi+7JTeb6CmouxCE8SgB6Q2nu6YdJaTd/W7hYbPTaanMJhCA2YA=="},"publish_time":1496781404615,"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_hasShrinkwrap":false,"_cnpm_publish_time":1496781404615,"_cnpmcore_publish_time":"2021-12-13T12:20:06.661Z"},"0.4.1":{"name":"sass","description":"Syntactically Awesome Stylesheets (compiles to css)","version":"0.4.1","keywords":["sass","template","css","view"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"_id":"sass@0.4.1","engines":{"node":"*"},"_nodeSupported":true,"_npmVersion":"0.2.7-2","_nodeVersion":"v0.3.1-pre","dist":{"shasum":"0bad456c7a159c563ebafb425975ddff2e9332f5","size":34707,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-0.4.1.tgz","integrity":"sha512-mKjxG2/SYxtjgsXIrDq/U7SA1jjo/Fgrgkpb62rGWXht9R8cOqK/ncL8maGV3VYOqvLp9bpbIu9ntWD1ZvkLuw=="},"directories":{},"publish_time":1496781404615,"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_hasShrinkwrap":false,"_cnpm_publish_time":1496781404615,"_cnpmcore_publish_time":"2021-12-13T12:20:09.404Z"},"0.4.0":{"name":"sass","description":"Syntactically Awesome Stylesheets (compiles to css)","version":"0.4.0","keywords":["sass","template","css","view"],"author":{"name":"TJ Holowaychuk","email":"tj@vision-media.ca"},"directories":{"lib":"./lib"},"_id":"sass@0.4.0","engines":{"node":"*"},"_nodeSupported":true,"_npmVersion":"0.2.7-2","_nodeVersion":"v0.3.1-pre","dist":{"shasum":"3c940f5e0204ac30c4144d00ec540e0c3d82252d","size":34530,"noattachment":false,"tarball":"https://registry.npmmirror.com/sass/-/sass-0.4.0.tgz","integrity":"sha512-IfEhs55pmnOBKI8e4vosJT30H6liImRDwAyuqYQ5haYJzuqEM3oqLgntqBnlBhe7uQidsbBLuxu/frTIHt5oAQ=="},"publish_time":1496781404615,"maintainers":[{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_hasShrinkwrap":false,"_cnpm_publish_time":1496781404615,"_cnpmcore_publish_time":"2021-12-13T12:20:11.501Z"},"1.45.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.45.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"a32000ea9af30ad443a9e1847f09ec1070d82f36","_id":"sass@1.45.1","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-pwPRiq29UR0o4X3fiQyCtrESldXvUQAAE0QmcJTpsI4kuHHcLzZ54M1oNBVIXybQv8QF2zfkpFcTxp8ta97dUA==","shasum":"fa03951f924d1ba5762949567eaf660e608a1ab0","tarball":"https://registry.npmmirror.com/sass/-/sass-1.45.1.tgz","fileCount":30,"unpackedSize":4455634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwSC9CRA9TVsSAnZWagAAnhcQAJ8sNfJ8jg6HKERJPPNo\na5w56ifFT5+qhb05bf5C7K5DB7XfFZfv8VqXxOdfhSK7uAsK5ZOzTRxrtBbw\ny/0SQOX5Gbs7nZIBbaelubU2dCZ7q7/aC6W+LOF54VWrzkGpPsfY7pPbSVOd\nyBphvjoCcBNcYj2/XWOSqnMPake1BNhxvdJDvrWMPOe590XbRpQ/1ZNLtQra\ns8NQUEbPg9W5b8NHKkOqMiMe+YMIEHpK0Kkk70OSPzYkMEyzINGIg7/3l5R6\nTS2/C0QA34enyV/gEGXVu8dsmE/007nLLWxAfvWNTlKPwRFyj8IwnS0FmSte\nRhp0M1Ewm+uI2mV//xaUiER+qdrrFabH9ENt36ypxh7/fQ/olx0mZJ8XbeOG\n7EtT6IFilp/LJegjK6vC/gVtqCYWw3pAYmuRcO7E+6Mua/TN6OhuB0mQ4bYF\n1tT8RAV7HWGB+1RsIrCgbyw12BszJSjxpfKWByETlnmMxakPaXhhR8Cy9UZv\ngvsF6GFLNrjUEOfm3KFdotEaZrg4orbj8vpTNJ/Oufs9ZhrwqAy8hFuprNoM\nwFGSzT43zEWX56bKm57evD/BJndvtG7HocZwchJZy9KZOnbPHFulxjfJ0Fc+\nEncKspqbQk682Ysgqx5TaZhbaWNr/pSRuyWzceZopeEWwSvTzb/LKAGXjVSA\nA+0j\r\n=ZqP8\r\n-----END PGP SIGNATURE-----\r\n","size":682227},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.45.1_1640046780775_0.4789136005672576"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-21T00:35:04.692Z"},"1.45.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.45.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"169178af6c6414d01bc66144b437701057ff3684","_id":"sass@1.45.2","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-cKfs+F9AMPAFlbbTXNsbGvg3y58nV0mXA3E94jqaySKcC8Kq3/8983zVKQ0TLMUrHw7hF9Tnd3Bz9z5Xgtrl9g==","shasum":"130b428c1692201cfa181139835d6fc378a33323","tarball":"https://registry.npmmirror.com/sass/-/sass-1.45.2.tgz","fileCount":30,"unpackedSize":4455632,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzkzOCRA9TVsSAnZWagAAXSQP/3UP4F+MPqlTR1QGuF1W\nEgraY6hfEwaZCwMB/5I7cUFyghzKui6FqGsSF8bGHm7+cJEwv5/CfnhFJPIf\nywnWWuuQX/UzGCs9oAx1T92F7F0g/7y+8Fcp2H21BIGGkhQdgaIsbJzybMf9\nGPFBZIWV/SinoviRfhdOBOuC/PKe+Yo6/dGVGi64eeLCKi4YK4s8Xhxeibrt\n8QmtE1AhnLmOGkgjy8tXgSat+gFSzVJgq6UZdCDmI+1OQ8cx3f2Q8E8/wY52\nJDb4HGpQ9wF2/A2WnAGioM90vSWtgLQQmo61drUPiZ/SkhgRUoJAAR+OeDS8\niLZqzRbfxpxqhJYGCg+/pzf+kygVkeV3lV7Anv3hCBl38fBSiZ81ltZ4P3Gs\nkVzJfCiK3vIbDIeZctbP8q6QFwguNdHDe5aElt9vokj88wMkV5Pp3xRLyWM6\nnzZJaZacYxvPIrVkN7Sz2PnOKqhAsokluEe8s/cF86948/mhfoaErd0VuBTe\nmE665dTEmDrk9fHbxOzVj9jCzwId6WrYVtS/9ZwzyYbLhWmBbWnsz8jKn0si\noTRZ+IjEp5hvgFE0xfjBwChrd1ZFjIbLNXpyHjXNQphcmy63hCft7PlDWPxy\njVlGnxAK7trTqV09EHgi2ro5yritwXm4Vl5GihDSd+I6ODhwfpXd/TC3hNIr\nHi8r\r\n=b/ej\r\n-----END PGP SIGNATURE-----\r\n","size":682236},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.45.2_1640910029745_0.7236884793285778"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-31T00:20:46.848Z"},"1.46.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.46.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"f9dff2ecffb1c7e46772c8e7459ce94f224819b6","_id":"sass@1.46.0","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-Z4BYTgioAOlMmo4LU3Ky2txR8KR0GRPLXxO38kklaYxgo7qMTgy+mpNN4eKsrXDTFlwS5vdruvazG4cihxHRVQ==","shasum":"923117049525236026a7ede69715580eb0fac751","tarball":"https://registry.npmmirror.com/sass/-/sass-1.46.0.tgz","fileCount":30,"unpackedSize":4457924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1j6wCRA9TVsSAnZWagAA4mQP/20Oy5nMM5E780jClvU2\n4P8cmu8tZBeO95D0CyuE90Ee0VCz2vWgRUYZgerkcGwmiueAhICyzlpSrMNd\nL3Cfy/UddIQft+WH42Xkpxx627DmriyHcXXmpPSOZ4jMvKTYJBrZL6g8RpPi\ngZ+FGPfjVfqcvh6p0pL595411dTzEdRw5LxSxAk5b84izooVw3qppYY8kSPN\nVROG+w2IMYwSDRqGwEpbjO5oHrf1QPmYI0p3vh9RaQ1hS0oUOaF0+6z4QWUY\nD2MpuYeKaChkmx07w3e6B/3VJJec/si3inSFSMSax6NjgIJ4XCcdCiBzdtzd\nQ03PoFn3oe8z6UmFR1Cmu6IrdKozo71Jgb74pfIuIVJnBp/joROfGXMM2+ON\nPBEFO9F8MNqF3K9DMoQC2Hwf5ok8t5Rirr5RQIWO+PGXG2bY/8SUbVghvS1G\nHs5LApxN8z4Fyw44XZ0PGLcJCOaSuI1EBgpzO60ydv43Bw+/dr187zH0vwjC\nccpN15FCiW2/3w5L6viGPTwxrpbcQ8GjnbnwimSKfQ2V2AsH6rTnmoH562+A\nIlpIfKS2GmaMZZveg37QV7N2LljYJ0umXf8wNqCdyKKCNxVgAV1bFw4Oos+F\naiu6aMlJqXblarc83aTeTfS/8BbmSLEZDYLEfR1TmWajlKArDIZaj10PgwOE\napDb\r\n=3KBz\r\n-----END PGP SIGNATURE-----\r\n","size":682627},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.46.0_1641430703941_0.46258803632127843"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-06T01:08:31.212Z"},"1.47.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.47.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"54fd309079725a086360935c56f895c58bd90ebc","_id":"sass@1.47.0","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-GtXwvwgD7/6MLUZPnlA5/8cdRgC9SzT5kAnnJMRmEZQFRE3J56Foswig4NyyyQGsnmNvg6EUM/FP0Pe9Y2zywQ==","shasum":"c22dd0eed2e4a991430dae0b03c8e694bc41c2b4","tarball":"https://registry.npmmirror.com/sass/-/sass-1.47.0.tgz","fileCount":30,"unpackedSize":4458559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2MzaCRA9TVsSAnZWagAAp9gP/j37vNEGKqUAMB+p733R\nlnW3h04a49NR7MltxQCBfWOQuVxmS9lFG3S56FdjGYE1yUe7opZi2xCoujm8\nd+18V4N2/ExT1MRXqwErMvmYHEeCNjL/FVc+EzcmjwNvGdFr2gkdUQggIHOU\n/wPcCLnyePq25kaLyS+HaI0Nvwjfn1FsT3E1OfiFRXvqmxlmLnv7YqKBl8bI\n7r4+zXI3lxYGYErYMMbLKBHAOelYCTebJ+vUpBBxkqfL6huSwNgjzLoLRN3p\nFYogb/oT2OrOps1iwhPDblpjUQX6MFpSZnjKec26+ZKkhu7rqsGLJsNxYy4F\ndH40xyaIGHU6b5i9kfrdpducWJxq/DunmsByCr+aMQQuEwHCNeBAZ9LJg0nf\niuCEsxnBmTard7SwbkTpIdnIdv7GOXQMnFex27MJGxZ+0Skgh5CysmRruSm0\n5yzyhC3yAG6UypbM21bFRisRUibOHLmg//1zcKD+SZMZaDvhf4YBDQGYeGRV\nIg4qlKhzboHWTtYIJtIrYLVtO0mE+OfGqbRr26OTlfvflgY/LhY8/S2d0DQQ\nk1at0c/JtJUTyPVN0yCy4Z0Wj58N3VsgV7T7jlHIU7Uw5Bxqk2MwzjzTRjKx\nEol5/W+XbIt0qalyj9PZV5vAAVlqP/y+G0b5ao0H9daBYdN/ld5Zks/fsxhu\nP4LD\r\n=0RRN\r\n-----END PGP SIGNATURE-----\r\n","size":682700},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.47.0_1641598170403_0.9913717987103348"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-07T23:39:35.188Z"},"1.48.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.48.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"8fd0ffdb4be424a908c271a14930a425087556ee","_id":"sass@1.48.0","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-hQi5g4DcfjcipotoHZ80l7GNJHGqQS5LwMBjVYB/TaT0vcSSpbgM8Ad7cgfsB2M0MinbkEQQPO9+sjjSiwxqmw==","shasum":"b53cfccc1b8ab4be375cc54f306fda9d4711162c","tarball":"https://registry.npmmirror.com/sass/-/sass-1.48.0.tgz","fileCount":30,"unpackedSize":4458890,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh35TxCRA9TVsSAnZWagAA3WwP/iK6d4fe1qPIhBPW6by5\n4twpvnuCOi30G8WpmFqrHAl44ZxBJlEjmQO8bAPPNK7ctPi9Gl1VMVUBGFSh\n8ZL9XwaVcpUNM0uRBtAZzb+a7LGEJUoWVkSqGwus/0ORrkXU62IOT4HJtiAc\nFuOqqaEMC2lj09YPG4mrZBsMxsNZ4fdQcESWB+oqOwACefqkfwATOPwgjQwS\n57ui9jwlGnUSsK1kPhyJFwHHLFe1Ul+ooZVFstt9UYA/H9CLtvM7JjyPXCYM\nA+ZHiu8Z/3q4YO9niOzoIt8v8WGQavfq4M89t/E2PpJY8JmOt7t80BwQ+IG/\na9+pdogAahxt9tLw5r8qv3N1kGfKtdc4AWRHJ/Ngy5lTkMp41e0e0snlfoXy\ngoN6LX0SoZZUNNk4Bs6RPSglZvuVhE8mS+l8DB3P2lFqtecRKkS8DGcRhiPz\nVh0RkQRvFBy9G5uVNSQ2akGdznDmca+uFxq2PllNs/voX6DNopzDu4bX37yD\nm0OioqgWiLz3SrkR2/nP1G4EfcVNqCRSLLEGz/S46aHi+LHLqDvCJBpYJohO\nktbdhaXzrUlRwhdiGhcSHeU5hWY7ZCRxj34WrLvRZLFWMRoGifLeNomO4+6H\nwl0mgEUWEkwaAyk+3nWzhGPnxfHedKjn/u1MoYBDiNB5W8JfJP5ELC1nUmZq\nOrNt\r\n=fOYk\r\n-----END PGP SIGNATURE-----\r\n","size":682734},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.48.0_1642042609173_0.621467808851871"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-13T02:57:02.342Z"},"1.49.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"13099d497a6b6b6afd0b458e751eeab1661633ca","_id":"sass@1.49.0","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-TVwVdNDj6p6b4QymJtNtRS2YtLJ/CqZriGg0eIAbAKMlN8Xy6kbv33FsEZSF7FufFFM705SQviHjjThfaQ4VNw==","shasum":"65ec1b1d9a6bc1bae8d2c9d4b392c13f5d32c078","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.0.tgz","fileCount":30,"unpackedSize":4460110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh50TaCRA9TVsSAnZWagAAkPUQAIZicGjSZGdXRBBDeZSO\n5BGOQgLZLOjIRiNtWiK2ZKzT2TrQaCmXR3GCmeNJ3+Opyz0uYZ++zRYJUDB+\n0jGyunqX99yobs0CdF/xBVwunh7Y6dpFdeqYQM3+fqShPTos5hACKQIVQH0y\nhozbUVLdGXEX4orvjmeMN5skreUibQkL6iofDgkI1DJFWA/FPkNQretKFc7B\nXIGvXSeLvuBwls6f9wIZ2Yb0PXF2dUZnOwN5+wtnI1epK+t1HODwQAkOhuZS\n3kf76Or1UvzG642V4rygYtSXisRI/wC9DK56ls0ZsKmxKPCoQczjNI6ABsVi\n293JPvxw1dVSKWltE+r2k2+0jX7H4IJBqJKfvyFACnCmz/tF1o9WnDZk2jpV\nVDGh5fAi4wLMRPT7tAcmIwnAIiSt7W5LtMad0hFzsBzIPsaswbHEb548aglv\n1Sgi1riQ8Q1pZwFJwp9DJNA5KTMBue9CMSWu+j9EGYsbJBElKhvGnRnHU2i6\nwr5bMypDrX7KUWznrqxwy7GULoqRbquEWQEbv3dhWus7EEd621j18UaTNX/5\nnuHhdbvUL946m/vcL+qvYYD6Q1HCcrPr7lItcgqWJayHHoyBg26FcG6uD+xC\nv05X7zm6lpfC9LoIaoVimIyRMN147TzSyqfVvoOsDnQHZ8pqj5cyi49QPoQI\n3MVA\r\n=2vaB\r\n-----END PGP SIGNATURE-----\r\n","size":682969},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.0_1642546393864_0.6678650636434866"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-18T22:59:12.228Z"},"1.49.8":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.8","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"c66ea3f9a53e00c8a81e9781c2e62c5940dbe6fe","_id":"sass@1.49.8","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-NoGOjvDDOU9og9oAxhRnap71QaTjjlzrvLnKecUJ3GxhaQBrV6e7gPuSPF28u1OcVAArVojPAe4ZhOXwwC4tGw==","shasum":"9bbbc5d43d14862db07f1c04b786c9da9b641828","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.8.tgz","fileCount":30,"unpackedSize":4462114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiDr9pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4sw/9HlT0h07wjCB2qkolmg7H8LZBe+00OGp4Ig2euBHwylujLs+Y\r\nWUloQQNPbyeMt6gDHaz450sd3KzMdsxyGkEsAeJ2lsC4Adzufh4oMEb6aW0E\r\nMkB7YvbXYWx5TAYzgh30hlVyoXEDVLufsfr3Xz/sK6+xNevruniqS8j8vPQx\r\nNjmdwR7INUMQwfsaDsKlo08pAdmoBSuNFW+O1IiPRDbQ1WXOzJXKLJ/g73h0\r\n7Hh6xkl9oiw9cfwZMqhNYjCosbk3qYb2dWIG67ioRR37UU6JO2ZCv4dNuvMY\r\nQZ4HfVqRNyJKOnlHpsNB9AbGks2EUNwELqxA517yVnsOHV/awEoBA907mDTc\r\nztV7h0WkQ1kwl7+1Ma2iB07xWBOcDqxSGDzwwyXhxvoaa7imzWYCaxzPkvoX\r\nHbYmgTVpMAoSEmGtd0adcu+NJ0xaIDhRA2KXcMZh5grapuWfgwH82w6+epY2\r\ndY0n7VPnmI72In/4EfxBZyOzqZARdcKzppWZGtrafmN0dbiwok/UdcHEO9fg\r\nHrgPj+pWhlVt7bBWtfYuF3HbG+S96m5pbIeumkWyQyH1ZayA1+YSViiK3Q+K\r\nXpG4NZv2DcBcM5k/TbN5eEh8SyzbRHYeR43L60K/ZWxHevg9N0LOSj6/Z8VN\r\npYbdcQc0UDo8Ekd7fuOxJtNZxwv1hLIMfK8=\r\n=tGkh\r\n-----END PGP SIGNATURE-----\r\n","size":683267},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.8_1645133672895_0.14751028945875233"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-17T21:34:38.862Z"},"1.49.9":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.9","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"2baa2f6f9df86eef323927033ad8b72057a1f0e4","_id":"sass@1.49.9","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==","shasum":"b15a189ecb0ca9e24634bae5d1ebc191809712f9","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.9.tgz","fileCount":30,"unpackedSize":4462114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiF+zWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpzUQ//Wi8HG1fvQgYGI0ooIHafAxFbJcpARpNEcIl2pGeHCOvk8DE+\r\nJPIYc7MTIOPzWOX3QF2wNc+jKpeYvUY+ZxxwmGURp+KuD7jf80+rzmNYVuXY\r\nhDZ3cF3GSmkcL3rw8mS98Ksr7t4+MAo2FaRLiGBmD2lcKFaZ/LVToOkh+7cL\r\niXcVISUYx94540ZNPOVKu/vWqOpuBb+XC24KMcu5mj4eDJ3gWVjWOXbY/0qn\r\nDpOnVI54HOrYCUoGhwqP1KJuBPNlGFhjpehpGJLnSh92vVpRh0OnldLEFM4V\r\nBYxPmq3WQCQEO52c2eky5pD9Jb+0sQn65I0HBTHOAJGDOJIxdtzMhO6wIpzG\r\n8d4F+Sx5qMZP0f2kk86M6Q/QjGqSRWChJv5/zYllTNb1UmKg8lf4a5UPT8EI\r\nh8CLJD5rDXk74Yweu4pg4lc/Iwvie27GGSMQdrjdbVUueCccXQ25amthw3iC\r\nFI7tmjCM6r9SxAvXEHsaYQZR5FKZ1EdZ3b1uqFPewT+/XcNE87aq9zt9VGlY\r\nNOFr8k0WsMdSo2GYxwijdHJ3Ig5tZl0ugeJMffLoHRfvBcD5yiOeaXl+VtLO\r\nF+mOK1TqcS9f1YQ+NapCo3tFj9ZCdixqAEhTNX+ZeIKlWS5O/2Lu936tmYXK\r\ny4fSqaSsksQzxsSu1GBW+xzk3ggT6bccoEM=\r\n=5Skn\r\n-----END PGP SIGNATURE-----\r\n","size":683267},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.9_1645735126728_0.337862549598805"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-24T20:38:59.428Z"},"1.49.10":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.10","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"6652001f19710f96947ad02341d67e522a1739ac","_id":"sass@1.49.10","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-w37zfWJwKu4I78U4z63u1mmgoncq+v3iOB4yzQMPyAPVHHawaQSnu9C9ysGQnZEhW609jkcLioJcMCqm75JMdg==","shasum":"7b83cee0f03bbba443111b3f94944fde2b0c7a6b","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.10.tgz","fileCount":30,"unpackedSize":4471927,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDwNFGL3ny6Y5q4qgtUL8kaMQcnTsSSA2MzVd96538MoAiEA79PdM40lzUChZPziKyrwIFGw1oA7clYplDq1/Iqjfgw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRNjAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJwxAAmZ5Pye3dnVY2cXotP0ECh33VWP4bt/DlHP0FyPCVQ58bdDOF\r\n3uv5WMDQEsXd2mnSVK9PDoQOvRkMo4vMW3vuPO6Huvs4DRa3710pI0u9lI8r\r\nY+gJaip05gXPnOuCYMBg7n9x2VWOYHJ2g+jijcOk/OmW11CH3VeMcL5cDO26\r\nJx1SBODQbTpGPszJsCwsqXwvqgAMhDoYcbkDCPEE9XV+sv/SPE99YKA3jjVp\r\nTv+ycrR0N+d7b1x5r7cuDLrLzKmkk9/7JkDG6jQES0toxKs3NnkywPovDmex\r\ngBs2CKdCJbd1EKTAxUpu7DySDkzqXBYQh5/YD5lGe8BmPfdSqnR9o9/yGzti\r\n3K+Px7QVaDWEvccNeSp7FLbroHMNv5SUyabRoN7lXS0XU+AqzaO7uA9YG04i\r\nWV+NHeyuaK3wNiTrH6fMkNg8/z/8rEYuyHEbeVIEM4++ufNQL1SAhtkgsHwB\r\nwrnBsuPEL5IBxNGfgQ4zOivJ2e4c8i7P5cKrPuzAsoBlhj9fxsmrg+LaRvCL\r\nl4Z0jDOZ48qZrS4PTOMRB7zun8h/PSQJJEQKstQy9pJO0vjx7BtFSjXpgWfC\r\nfHUc43J6PCTLvvJjnpXgaL/SKc/52mZVsV3oLjOfFkUFovnM2vYutgdGqIvz\r\ntwnFrN6zPC3klRfQQo2zPuHO5n/UoZ8aBUM=\r\n=+IXL\r\n-----END PGP SIGNATURE-----\r\n","size":684817},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.10_1648679104416_0.4983086521647395"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-30T22:25:09.949Z"},"1.49.11":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.49.11","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"d7d3f8faa2e78263cd096120422e202fdf955b10","_id":"sass@1.49.11","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==","shasum":"1ffeb77faeed8b806a2a1e021d7c9fd3fc322cb7","tarball":"https://registry.npmmirror.com/sass/-/sass-1.49.11.tgz","fileCount":30,"unpackedSize":4471911,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDlVg4uDZ3zlK2oqFywgdXvlYyOJs+oMUwvZ0upV09AWQIhAJ+G29rtf+SGB3ujmhPWwf5/1j8IhFjsL51eCjISOAEM"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiR4D5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpdoA//ZsNHE//VcmPL6nwi/gygsxzj2cbrPSVLPgfLKYHnWK5Wg0XW\r\ngDgSMBRnMtnteeD7TFkFPOKRJJnWVlLTiUh9UJOGVyY9q5KcIUF0oPQybuAA\r\nTEpqe/UODdTpKvczF+TqMJhzslFDRdyk88p6uzxUq0FBEi4N3kIjNN7Sa57W\r\nomcdq56QEgkiSPZBjssc2615VEHvcqVwToQmu1saBJLEDl/53DHWUf3kGBvV\r\n/B5MWxrGgwd9wEkL7rwwfPFs8/oSDTxlCpCg3cBuit/mJJFSmTHS9hrSscz9\r\nA/P3bfWGKa0gF6eYHKQY+JGkEXrFdVQzB0JqQjKH7KLty4+RorRIAcPkwlCV\r\n0IYdfOU93mC9R/ptlFr4k4FNOQ5LaHVk825ieM8zk3JjZtLYJp0Df6Bpwd9X\r\nwAO4E9foC8rv2n9QaD7cYkIt1ApcBp44LopJ1Z5F2b/lmWIXrj6bn4aorUhm\r\nB1X3PtTRs5+zbBMxOzYZVxrMmXLq84HU37AZnvADEgF+N//a7jGRjvUb2Psb\r\nBDunpztQgxvwJKAglw9xJ05BQfahoxuG7a3S9n899n5lFLaSMd966oyMMPZw\r\nG6tf4lfdRfxdf/SWI8707PkGuoC8FWU5Lm5b7024dAQRKARxpJkTYXRskiPL\r\njFH+1yKIBcvQjmUb+tKDGgGCbTMUTMr0ReY=\r\n=/eXT\r\n-----END PGP SIGNATURE-----\r\n","size":684818},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.49.11_1648853241152_0.08635164505492021"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-01T22:47:25.976Z"},"1.50.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.50.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"039f2adeed22f46a0256ddb9e668261d0d0a74d1","_id":"sass@1.50.0","_nodeVersion":"16.14.2","_npmVersion":"8.5.0","dist":{"integrity":"sha512-cLsD6MEZ5URXHStxApajEh7gW189kkjn4Rc8DQweMyF+o5HF5nfEz8QYLMlPsTOD88DknatTmBWkOcw5/LnJLQ==","shasum":"3e407e2ebc53b12f1e35ce45efb226ea6063c7c8","tarball":"https://registry.npmmirror.com/sass/-/sass-1.50.0.tgz","fileCount":30,"unpackedSize":4495400,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCyjsFpKs6eyn6TwKYnU/asXAvr2PrrcV7CSOfTwYOKXgIhAMA+1h7/kaGk8ZeIGG6xRyk++tx5AY8NzIu0YUKtvSiC"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTkzBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrxZxAAkNhfgSdY6a5iU1Kx9J/Z+aFBIopYT7o7GmO4P1OCnlu86fj1\r\nxojozGBNLgFjY/1nFYOC6JsW2GVJvzjsL/i9XnIUQjDOIpEDf6cvcs58qEyL\r\nSublp9OkpYYYeKdcNRTzekkEMG3SwSBqc+f45s3npri/dIOEosuiJdSIK3Tx\r\n3R4+ePaYlWnTdI7JjQ6tHYRFTFEy2wnjGZIlAA9x1WYq+zhWUvs615bmo7DJ\r\nt8NyCovWELdbbrPzztSwzOhcopUdSLXYk5Wxc5LKXBhA1p+nwpaNSp8bHkZJ\r\ncMp2vL9ZP+gXcQ/Qpxul+wygGSC2uxbX78U/UdADuy3Jgk4PvvH82kisa1lX\r\nTid7BKq5+d4TtLtwdBjIkOPlacZuh3D7Wa25X5ubIIRKSQ5EwQqHnkpiLbzX\r\np/aoF+J1ShG+6YZ1v3FZmPXGXF4smsnd1oVNJjaL5m3m+6R52NF5lQZQkhOI\r\nAOH0inOJbWjQ9lRl4ksq/ghT9d8ZE65tjVma3o9ZX03Yie0HeAJnoDvWNDAI\r\nDg3j7sfhVsGXevXNY2EJ5tZU+tKU3cVEgtWpfmvow8q0xgYSYwgfatYClDe9\r\nDkLuGxolRnCVZetyXEyewLeF8H47P2vd/mvOfFdqidT43kuxIajhxYcyaNNG\r\nO8kP7dIU7r8vNqrqdawfd2mgE8wrY089HwE=\r\n=IO2w\r\n-----END PGP SIGNATURE-----\r\n","size":688363},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.50.0_1649298624819_0.17638847534426527"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-07T03:53:39.220Z"},"1.50.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.50.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"fbd450b1825931adaaf72c8905885e36538c7776","_id":"sass@1.50.1","_nodeVersion":"16.14.2","_npmVersion":"8.5.0","dist":{"integrity":"sha512-noTnY41KnlW2A9P8sdwESpDmo+KBNkukI1i8+hOK3footBUcohNHtdOJbckp46XO95nuvcHDDZ+4tmOnpK3hjw==","shasum":"e9b078a1748863013c4712d2466ce8ca4e4ed292","tarball":"https://registry.npmmirror.com/sass/-/sass-1.50.1.tgz","fileCount":30,"unpackedSize":4495514,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG9a1U6I0+bgvOHxXb6PUbOrjZrI7pespQBO0NTVKp9iAiAujlBwcvnsbMx6/7p9A+MaVfmYNs0/rEa+FKmpBfomiw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXgj/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp6Lw/+J01e42hfl0XgldEn2JoNCjM/ojjVb+k8oWhGc7aRkfz3J7Bn\r\nFTNRFmawJTBMPnggScdyEvAYkcU/pL9OIK/F4rPzGGJpxmWcE8kYaTyo+ThT\r\nfk0+Y6AkHOxby7x1Sc2pqm3K2JGYDWTXlpkTmThLnj9FaLi9+2p0bXwkH3kW\r\nTYc9hJB+yKqI9DEF6yTYOD4lsebhaV+pQAB0cXwiWiU382TK0NaiXh9FfGTU\r\ntgNl1rEgY3234kIFbIdN8NI7QjWxTmP3kPI9p2jPCbkox9dgocrQJ+ElaKcS\r\nXkobICKcsbNXEeZ0QgHXrC922U5x2fq3qUVJHAFab3p41g0bV2Gwn464Y8xQ\r\nZ0I/sV42otO+K+JgUYAT4XYe6Wd3mI7gy3aGlpcwykw1l2BZc3czHteR2rne\r\nssx1xGgdqrOuX/3Qa/U2ePYz8+5jmn6vAkiUc90b2kal7Ysx/sCjsrlLte3v\r\nEV6rtgTZBs33j2m/vJ1HHy400qqakWp/UuB9o+CSFYEECw7uO8J970lzohYj\r\niBCWKSYnZ9LdfqggYeWm1Wx2d5ugHcGFj/njH9d6uZUXTU+WOxai8wi/ZRbh\r\nyUgEbl4PHrrRr17V7OefV1UG48sI1+rnUD2SQzpxFrDHM/D80zlv6H/KSW0y\r\n23dmyQT27mBTP5j2rp1Zl9R7AMDPDdddGnM=\r\n=i405\r\n-----END PGP SIGNATURE-----\r\n","size":688397},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.50.1_1650329855212_0.41921453105807904"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-19T00:57:43.288Z"},"1.51.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.51.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"0c24114badbed3e2c886049d255be83a29030445","_id":"sass@1.51.0","_nodeVersion":"16.14.2","_npmVersion":"8.5.0","dist":{"integrity":"sha512-haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA==","shasum":"25ea36cf819581fe1fe8329e8c3a4eaaf70d2845","tarball":"https://registry.npmmirror.com/sass/-/sass-1.51.0.tgz","fileCount":30,"unpackedSize":4495564,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEhJUoEjP6mG6QzjVNB1GIRZMMe8YPL/5SBc7LW7b+vrAiEAjAwkho5bFXog+zoJUKGDOrXq5aWyCLweEd3KFZKkWXE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZ1l4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpTHQ//SUHLY9FSzs/0i5sCK1xHj7l0Kp4djox2uJGb0vGQAEzr8YrD\r\nM9Ju8WeZdtu3Cv1YIb+EShdiTg3NS1NSmsOkYUR7KTtoWEmfcEBZbRyNXafk\r\na0r0k6mTFKwieUIMEwy56raNfYmFiPd0Iu+Dp+ae6oQ8S2Bpik1orYmX+S/M\r\nrbHjHP2YSckS0FGraxnUqpnrgfi4e6G90aIgIbQhFzMcizKL3PvfTQi8hte0\r\nK8XbZMDjE35p6na2OShpJPHSUHHHHGvL+pgIKpYKLxgCeyXD6xA7hK4ekbPO\r\n4OL0cnyygfJmslO/yDTxSBeWbIy2VSQ9dfaublZzBLtpCBCwlCek2TSxUKxm\r\nEVwTWxnW5m6uya7gyH5l32a/U0VaU6g5V0Quxchu5HrGry9RTIECLV0m+uDd\r\n7lgSePgmVfhM3MCjG+vESRPRDCfl2BCXn7D+6K2OJQzMygoOzC3scYSp9ffB\r\nWGIBwJk5eIq0opzre98HPlZvY2z3SKYZJYaXGPXROwHPX/mqAwqV+vvdHira\r\neG+O++dev28xQUbP97O6VxeV3myvgzSC+5WFaxJs9P7e6sUFjIu3f4+47HLB\r\nqh1p+1bTpagXnI2e0EFXmYdda0Q9tsoFbTuHdNfZXEJcc2J21HIxp1YpK3Mb\r\nY+oxTEzjt2eo2p1THWLJGBlODmJOJLdFnQg=\r\n=sjrh\r\n-----END PGP SIGNATURE-----\r\n","size":688352},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.51.0_1650940280362_0.9454432236024228"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-26T02:31:27.953Z"},"1.52.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.52.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"fa0d2fb55aed9e72c9d65dab0db55a779777ff33","_id":"sass@1.52.0","_nodeVersion":"16.15.0","_npmVersion":"8.5.5","dist":{"integrity":"sha512-6EnTglag2oVD8sNJCxUi2Jd3ICH9tJ5Mqudt/gIZNBR2uKJUBZuTpW9O1t04SkDLP7VFa76FCWTV2rwchqM8Kw==","shasum":"3dc755ff459858ce7062887181648701f028c4f5","tarball":"https://registry.npmmirror.com/sass/-/sass-1.52.0.tgz","fileCount":30,"unpackedSize":4509029,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGDqhpaJzBfzjHNuSoC0kSGQQH+xtZpLAkJD5bCSM8U0AiBe6Xe6OeX/wX3/X32mVbc430rirMC9vOfrA7L/s2i+mg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihtsfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrvsxAAiT1sPjbPeXO1lCcH45RbrE9e9ANO0VUzfX45PGaMDFGFzzNk\r\ni9hKby6BVPHZh1dwz6t9uX4KXX6dOQ8xZMnBEsclNlpnrguXvY7GQ0LQqi+t\r\nmxe8BItzD2uLAkTLyjK3KoqMtUkGC7Qla/RyM4PxFjHSlLza/oh/8flnWcfo\r\nE+44R/jgWEX/kQhnswKo91Ax0GYpX0fqgp99EKZQJbdmyO6tSLMgsN+ZIYU6\r\nwp9/QKCjtYqpTG6y1dAx+cQkFpO5YXZXOES6P2rFozCl5cb3szkmfz2R40o3\r\n8TroA0LuuvFWxQA7NMW0HmBmBuKWGvrP4/w5EpqsRywCzVktD1+jCa3hVKh1\r\nGBDA5lE9WzgvJWZGOSHK84jqjwcAw1Ej68UDWNKGszf64gae4Igzi612h5bp\r\nfYX0Qb5SLEL6Y9UVZS1lwOV81GdHzvcwJ1sR1xde+JJT+sxZoWcZUyCHxG1V\r\nFAkyQeENo9fkBOkM4QcrB+9dqPfVLoT4HhoXHHJyIH48aCY9u312CXwv3nqx\r\nd96pAsquIlo2X4++pau/r2QGDShbmRFAm48F5KldyJoCuW1RlQXlPZXpawbp\r\npPA+WPmQ0J9eD0NNdmEr26iXNZ3lC5jQ/NdLiJ8eDghzEUHwxcYFK9E+sxI/\r\n8/9yt1NzsNIYiM2AOVkK1ImV6rOmGEkE7s8=\r\n=+ta5\r\n-----END PGP SIGNATURE-----\r\n","size":690062},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.52.0_1653005086890_0.14302633261785735"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-20T00:04:54.073Z"},"1.52.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.52.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"d17f70fd520bed3936e95968be1b6d30513efe1f","_id":"sass@1.52.1","_nodeVersion":"16.15.0","_npmVersion":"8.5.5","dist":{"integrity":"sha512-fSzYTbr7z8oQnVJ3Acp9hV80dM1fkMN7mSD/25mpcct9F7FPBMOI8krEYALgU1aZoqGhQNhTPsuSmxjnIvAm4Q==","shasum":"554693da808543031f9423911d62c60a1acf7889","tarball":"https://registry.npmmirror.com/sass/-/sass-1.52.1.tgz","fileCount":30,"unpackedSize":4485977,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDY301OLAOKwwAI2/typ9gg/QkwEjpqRz4Ff5Lsfym6hAiBt47bujOwIaS23cizADlHiQIWZWoLM9jgX/IWuajXMKA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiiBKUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmppnA//ZxOiKZBRkoxGk/RCChjJhq3ccpLDUj2+4MXVUBG1LbJPBt8H\r\nP7HRpCAkwD3puGVMuC2zEOSAY0qN+4Ubw8p+VyYtI3+kKtxLLtv5a+YU8arn\r\nKxsuzu7kcwK8OpO8RZC7Nu0yHWSLORhS0oXtSZ4By+VFLtZaVKRrbz3A5+TK\r\n238yFvNGUh0kzzevyujRyaCYeqmDJGTAw5C3Mv8yMQM2Gtw4Jj71W7i7niAm\r\n2U/C9EwN6rbs7fNmoUj84MoSrFJqxBNfKfxe8hVfTrY/UdXdCNzGDp6vvAau\r\nZIG1tJrfJpuFIEfqbbXuA2FvVEhDuWoQfq63+3kNtrmyId865Y5unJxSgQHO\r\ny6CgRZ1Y/SBOgx7KyW2BHx66zqkt01isl4awOFcr9RaNxTbuNohA3B65FjVW\r\n12Sp39dEmzjXHgFE/8hBHBuQvxU++BQ1XpEkYL3LMmUi3AlGQChlw0RTkso5\r\n/rX1dAAYEvMYWzCoPyfzRIOWA49n61REaqsGQKYhpT5Rbl6r5r6dfLiANFqf\r\nO94DKHd72QPV7eLljKkT8JQPE+Qq6mLa7etXlunrbyYcqycet1fNOyMJyeaX\r\n00SO6UwzhPnsAqUvZ0rhsHh38NL+qlLXT6xYNTvvx7fZ7p001vzV2W1yPFly\r\nIbc13lejm2JGLLlYmiKJbocZdnr75yiCLNQ=\r\n=VLte\r\n-----END PGP SIGNATURE-----\r\n","size":686517},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.52.1_1653084820666_0.7276591508235442"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-20T22:13:48.064Z"},"1.52.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.52.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"44c2966b8a62ba70b5e6e2f90f6bb328dd9043f6","_id":"sass@1.52.2","_nodeVersion":"16.15.0","_npmVersion":"8.5.5","dist":{"integrity":"sha512-mfHB2VSeFS7sZlPv9YohB9GB7yWIgQNTGniQwfQ04EoQN0wsQEv7SwpCwy/x48Af+Z3vDeFXz+iuXM3HK/phZQ==","shasum":"cd1f03e0e7be5bb2cebcf1c34d735f087d790936","tarball":"https://registry.npmmirror.com/sass/-/sass-1.52.2.tgz","fileCount":30,"unpackedSize":4490478,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxwbrXNTStnmr1xc+XGgVZ0vqCoussrEVrfoBG0r1tOAIhAMeRrP9ZgFoMzjV6nHvGmQNNrmFKpOxaydY/SC7CBnuo"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimXJoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8mw//Sb+gfChuw1xo5EAVbC90My77pnPGseWl28pmHnEv5yVN7WAm\r\n7+FeyNeo+LIZO3bEeJVGN077JeC/zGe5vko93vgpIUXI1v/DCzE5eKnHhn0b\r\nlmvggXJD5f5Aq+WkwRlXWMG4xD0P65zzlwKSUUrWfLl964UN81DD4q5+Sa30\r\n3uFLlPNiO9YZAbLFL1IEpodDr43LuTlR1+8hKSxHnNPxMVDR+n/6VG+FjUhf\r\n90EKAqTdREXE2XsIy79Fvu/27Rjw2nSel8m4UHc3uCwB1xAewBkREgQ5xLyy\r\nMZfE6cmigX3ke2c/RRrc+SgVpsBUZrUH8M4LkVeRq0s3/xvJfKn6ptFsVP33\r\narLQ3a46Qfq9aIOJuGEILiGkMTng5BSrYKUfugYFo5Hi5euHlSny6dm6RE7X\r\n9X6qyPKOo4mZBjjypWjSo6UlFq6CN4WJ+2u9z9VA7ykO9AfbkrL6tp7l26ef\r\nhZSOhxJ+BYGLGNefXtZUd5g1ZFnZ8dk9tYi/Cjv7vgaigaCvIpEZgZR8zmas\r\nS5x9IZi6y/XANnrF7XiuP91vORkVU2D7EeTc0oWfw3XjviOitoy+D+Llkctv\r\nu1A1Lex2fFBymlJoJpra/Xw4JbeiWHhELNV3inxIwzWa6MrmgO5B8/hJLAP3\r\nGw849ZRBYhF92QdjImKI+m4Ehdtj/wFVnfs=\r\n=56Xr\r\n-----END PGP SIGNATURE-----\r\n","size":687050},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.52.2_1654223463966_0.5443677848050621"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-03T07:28:16.637Z"},"1.52.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.52.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"ae6275e5e27d219c19e0a78ffbadda23af30573e","_id":"sass@1.52.3","_nodeVersion":"16.15.0","_npmVersion":"8.5.5","dist":{"integrity":"sha512-LNNPJ9lafx+j1ArtA7GyEJm9eawXN8KlA1+5dF6IZyoONg1Tyo/g+muOsENWJH/2Q1FHbbV4UwliU0cXMa/VIA==","shasum":"b7cc7ffea2341ccc9a0c4fd372bf1b3f9be1b6cb","tarball":"https://registry.npmmirror.com/sass/-/sass-1.52.3.tgz","fileCount":30,"unpackedSize":4490630,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDGTPe15j7UxfofC1ukW6Vk6x5snkxstfUCcSWV5cgNOAiAgSz3J33xGTFO2qCx0KZkxJ2FZ1AFRzqpTFlBt7xNkRA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioTfMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqUERAAmf5xGnVJdpqfZgl6H7FbHDmCNTVNyy4/D7A8Uw1G2Qw1tFRi\r\nLTaZ+E5eP6ZXFTDVNNp8cT0cJLebhxZ2yVZM7cbINsgY9g6rGgLSYP9ArTnI\r\nIU16Jp/TNxhswp4aZMBd5iN7A8995XDapDqncxAw90thPVYyky650Hjf3fXD\r\nP8GHG/S/Qp0gDV8rpNEdQ112ZCRVrH+BD9GAZLS6KeTAAGKmQMGNAsh7VUAy\r\n/o6DO4PtT/kcrTx5vzZjSZucgb8FG2o63tZwtHA8MEr7wpl7bE8n3XYWXYCv\r\nmN0SGfFcxOwUQaImycLI30eg1cJyxDs0PcjvAiQ12mPpowdFZJG9fx9CEATc\r\nsx3D6DOwE8f+iG7JinZonKlL5qqs0O72xfU9XWWq1UPsiRjvJrM0+I7ujtDI\r\n1mH0oFiqclNq09dLYJ0n+deVAyAgi49eURXxcnMFeoPXuw8xlvdE7BFsPiDg\r\n7X9Qqp4KTtLQeER1vCAn8GNHwMj8atq2v+VwFIzg8Gh98z/BjaJSLV0gQv5N\r\nY+v6qDi41SID0hQB14IpDALlVUitAaGCHykqGNWlV8N2IvgBx+NE8JPddv3k\r\nQivnirDDfYtAB+JGOBL9IR8U0YSi8JEJPHepmVIQ1MLZSlAHxjCieXbMlxmW\r\naftsSoluFggCl6qBMW/nNhMOwHnUDD0i2U4=\r\n=ho70\r\n-----END PGP SIGNATURE-----\r\n","size":687067},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.52.3_1654732747765_0.8729303379426796"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-09T00:10:39.544Z"},"1.53.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.53.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"},"gitHead":"fd4a30f36f2433e8eef2fee86993d366d8dbf396","_id":"sass@1.53.0","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==","shasum":"eab73a7baac045cc57ddc1d1ff501ad2659952eb","tarball":"https://registry.npmmirror.com/sass/-/sass-1.53.0.tgz","fileCount":30,"unpackedSize":4494627,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDudGi0BfYl3idiIQegQoy3j9s8DrucUDwDfOpfu/avKQIgKr/mkL07bgyimweV27RDJSUB8MtjhhFuQV7x/BrLqSs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJis28PACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPag/9E3UF7UAk+wejBjhwh19+z0wfvfyC2/mQY0dh6QXJPYypw+/c\r\nA3tdhLKa+IQT1NTpjqRC059nvXUp5dliCJykXHhGR9dBmM72MfPboLSsDau+\r\nXTSwTiMw181fxmvqEJc7ntPZl0yJfdQ5BUM4XbnnkQ8itpQ2hY8aeW9OwJf7\r\nYwsq4FtBIE0qxR+FxrN1G6j0cfateb4wqCXBPVlJrYNB9+ORJfZhXuxVeqRD\r\nRY7e/6gxU5dTw8RSS5I0sYVSj23nWwOV2hf94q2ZJkQiYwSEhckeDtfwlqI9\r\nMUiIWuC57js7bWaMCZmWDIfoBdcF/XNbghMOCn83TUaIcY2u4YCEAvEP8V4I\r\nBzH5yP5xw6kwP2AgRPtYdq4YNpHM6rtYG/Mc/X99UdFZ8rwtVpPRr2Bh5AiS\r\nA9vAuwMeZBLOwGEavyUyVs3dyWjWH0bogeiSsqbNXCINFC+Te8DlNgmzHmDQ\r\nkSwbGdKBs49/vcGc0zTKb9zgHUF4ccx98Utp49tXLMYhcidJG9KvtpiabYil\r\nGHUePpqTBCWZJVWd/LtzE8Ij8o6LdT5ilYH20WkhNCfNt3MkxQtrC0A8doWQ\r\nEsriZTrm0o0C9ohQaInEXLtd9AuiTS7jaLSZvS3Y18FJHFUJvkUJD1MOwVpR\r\nfG26Pb5rc09MJ4yl42p+ubKhF8xNfFtousE=\r\n=BH+8\r\n-----END PGP SIGNATURE-----\r\n","size":687782},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.53.0_1655926543312_0.40461337181962875"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-22T19:44:53.381Z"},"1.54.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"bc8df44f6a681223d450abdd89013a61bfe90e9f","_id":"sass@1.54.0","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-C4zp79GCXZfK0yoHZg+GxF818/aclhp9F48XBu/+bm9vXEVAYov9iU3FBVRMq3Hx3OA4jfKL+p2K9180mEh0xQ==","shasum":"24873673265e2a4fe3d3a997f714971db2fba1f4","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.0.tgz","fileCount":30,"unpackedSize":4561693,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQBJWiousQpk88tRQFGaTGTAf0AUvTdm3GrekTemBtdQIgGp+cl4xsZxKA0iwGbNb1hpiZmui4ZRSD7aBP+5Hlt8s="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2xjrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrG6A//UTKNRreLuqHzUN6+p+hIRJx9eS93ru06JPHVEc+Kmwvw89cK\r\nHFiQyu5w6rrC1hXGxrpXbyl9Zfdhm+mVF9AGNn1CMOgqp+jzGrU31PdrKVKd\r\nmGssV5rU3iVKqRWneUj1p79eF8xa954AH1ayQjsw5uRQ1aywm0RiZ2TpfuJb\r\ndXIDVzcNpvuxvsacpHYBR24BPi/pV21l/z89qW8xd2+sdmHwqOnjl2iJuU8e\r\nV/SSaxGd6YdlVxtWyBUomLY1FlWCNGfItkpxiSB5cwW4t4gko3pR02NzuJYm\r\nEBVV2ijCPbN0qGxliHE+bc2Ma4AXU7g0irvnh3kB5ujD2HmZZMcKhcqKbcAY\r\n8uXqfcfRwarKyRQImpLa5gSzTh8z6pqS9OqGqowqHJGGBSUHYG5Nfw8G3TqK\r\nQkaxigIy7TqqlUUJzLsmLFZsO9DzZR3kDb4S95D1bPMkfC4jOJNny4oQLtFP\r\nLKJrjxTn3EIJ9kF4wGJ3uX6+qKathYmsPn/WxOY1LSeAZqPH9DJMBIDPfQuS\r\n5pIZekG3nBo7d7UmgmN8zJAHcLUGFe1z7iFVzUZEW6d5IalE5jDbtOvp+ngt\r\nJbZYofPhnLdSPVefIjfCtPnuPz4xZXbnmV92l8+iV7e/aIPhpC1MBAz+SPkn\r\noo62Y85thWpAWj9yG9canonhM3qlO74Sspg=\r\n=5lTj\r\n-----END PGP SIGNATURE-----\r\n","size":701504},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.0_1658525931680_0.42462580850134923"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-22T21:41:34.624Z"},"1.54.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"42d6fbb3edbc26b9e9c593b88f44253f04ceccef","_id":"sass@1.54.1","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-GHJJr31Me32RjjUBagyzx8tzjKBUcDwo5239XANIRBq0adDu5iIG0aFO0i/TBb/4I9oyxkEv44nq/kL1DxdDhA==","shasum":"4f72ef57ce2a6c3251f4e2c75eee9a0c19e09eb5","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.1.tgz","fileCount":30,"unpackedSize":4561882,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHvlXxbaZR4OAasSGHSu2sK+O1t11euJpvBqgi0HDaWUAiEAtPR1Ccgvhc+cMzCFl26x6deS5gjsRnMjFJLwpTT+3Mk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6bh+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLWg//QBDApFiN7HeJVp2MU4FWHTqcrhTh49Xd4KUT35FclFnfKRt9\r\nYAS4aiz6/vPFRiPNrTO5/5aWTiL7PBpVl79Yp8VyRpHM5zj3CVEVYUU2/NKz\r\nhfTORkDdSuT7B7s0aNimNMIdibjJqrCjKoWAKItTVtS3CVk+vIE2jkqDvRVV\r\nMB7Pjw8ysx6m5ZnKodhM9sgInVB1mxjh8CQRnMvtw4YFkkAgaoxL/CPYDorc\r\nhsxWxRB3r/H43FjMGmD1XXRMm1olmkh868KlzsvCEiRX3lMnLn8U75q1XjYV\r\nl2M64txBKKlKScZY9Tb8O2RYTb+pHykiGoontZFftM8bq5nTvhLp6zdW2d/V\r\nNKWmWkC1PH6JV+9FylDsYRkUki2fJzqTSBawClXf68FIsMfYnxP7DMdawME8\r\nqeKUEDFM4JiXl7P91CYR+aVFycIazasWFrIwTTF5AMWfnYfXPW/uSNxwSD0A\r\n5d9w4KPFyF87j+x5YfBbMZBc7zjiRTArHtOyqjFcC9+Eyh+qSoiQuFyaLd2g\r\nt73hb+ij2rdb09/8ykfjjroRcCQ4AYJP3kp8GoHcAgsAl3y9t31qOCqgW4NQ\r\nOMUIH/tUMPtbWDgmQCQQoRMfD+QXsAmIOcv+5pSZBwyPDTi3F29hYlZt6PFI\r\nCJfkUdE/i/VGSL7eBYkam0hl8HnJosbaLm8=\r\n=2WSx\r\n-----END PGP SIGNATURE-----\r\n","size":701509},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.1_1659484286113_0.7156840625675813"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-02T23:51:34.945Z"},"1.54.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"126f0a6223ca871a400d4c9ed0bc4dc453e6fe3e","_id":"sass@1.54.2","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-wbVV26sejsCIbBScZZtNkvnrB/bVCQ8hSlZ01D9nzsVh9zLqCkWrlpvTb3YEb6xsuNi9cx75hncqwikHFSz7tw==","shasum":"574cad83814c930ef2475921b9cb5d8203ae8867","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.2.tgz","fileCount":30,"unpackedSize":4561882,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB9OnyI5yDR/SzfYQjmK4vsO6vUngCqcH/dkzgfnfB3hAiEAnFrC3JYbdBmuM/aZqeQppnAH7w6yktGerVHj1bHKmls="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6wncACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrl6w//QPGxfb7bV/fUXxj17/hMXNyuxwyILdIaGRziu6I7N7ek9wRL\r\nqtZoLZZPR+2cdrT02QqPZc7Ja0a7q3I/kC/c0sZjX+TLeSWVpTlXrrOAlKR0\r\n+p9OnIrElDmRzt9Gj76OCjAnT42x6QWI3NwT2p5/UF2oSNo6qrQzrc5FXGA9\r\nZYQixbi2Q36TBaYVSVrzcEKOjWzk2R166eRifHal8Tw+nhDE+OG8W51OCmim\r\ngdcGtG/bWpNrvfGQ8cF9wxX5lKDhi1D6zI7yljLcbUUCEVQlrslAuZ9PnXAl\r\nL9B1/odroehpF0DPx4L2E7w+W3KeS0WVuxq/U94wkdLlNAXpKlXRWG1KnydK\r\nSKG7ncDvQvm2We31shZjcoGlFc7/0/h010YL47hvvyUV/j5zyC/b6lwKd2e0\r\n4gUFUEjsM0PNqVqjEppf172jILkOr2wP0LPL2JA346sAVr3bEVFdIlEYF5LW\r\nPnCrRwUlYGpDT5ISrJl2ww9pmv29VxT4l5Q2uVdfWTfEO8qS/YSsoNMUmKsB\r\nFyVWTU8+0PH5XSI8N83/wACesYZXRdx7nNntr7c8GVAHjiaUQsUnF8YXOqej\r\nZlE/vHIdFu4Vvk0Y379gwwNlQgCUy8SKTp1qXJoe6JOvLgQwJIymSoiwiRNS\r\nT1CYkSYeH6ZlvZy8XInXGa/qtehxHkyuvJk=\r\n=vUNR\r\n-----END PGP SIGNATURE-----\r\n","size":701509},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.2_1659570651896_0.633160986944419"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-03T23:51:12.284Z"},"1.54.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"4de6ebe1ba14b40b4246801e7535bf289f49e54f","_id":"sass@1.54.3","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-fLodey5Qd41Pxp/Tk7Al97sViYwF/TazRc5t6E65O7JOk4XF8pzwIW7CvCxYVOfJFFI/1x5+elDyBIixrp+zrw==","shasum":"37baa2652f7f1fdadb73240ee9a2b9b81fabb5c4","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.3.tgz","fileCount":30,"unpackedSize":4561882,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCOXdY9KaCpdJtXHsyvmxDF42xQq5Wa8cPmfCbhPWovsAIgGbNyn6D/j+6KLP0dD/rM/3OvpczrdG7L8wl9AQzQHSI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7DA6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmro4w/+KC3LPdixSWfL3BrmQir56H2oX8odyS7t5/65fFlo/SUXM1QI\r\nmYV9jkXdE+UHI/fkZi7xH+w210p7SDtlCLqtxbeEL8ZPTp8CvLAbHolCbI7z\r\n7HrCw1pojNaQMJ007yGE8ctBCRc6JHzajsEdth9mJA3SlGXg6nNl26Cz5BnZ\r\nTgX+RdGrEvfOR3z570NshchPxySbzfHFyIgHlpCbFHGVmu7sJs33aYJcqYKN\r\nUaYd86qYR0USd7C3L/YO55NxBQ2hfbr48eUbqeXJGCyD3u5xCzgSa9PyHlPX\r\ndOv9BGwN0BeK0W0g+xG610BBM0X4nrnwla13Ak3lIiCWdX9UyU6Nm9ujy/qE\r\n29hg76t65M1BXzKRqGN2GrYBPQ4yvHVpPcGhBhol6jXMLzSowZA5KtXnpTS6\r\nWWxZIhDhfUmkpPs/w2BuvGq6LdH26SUNQng9h4WVwNpLk/vzsAAsdNrBkbLa\r\nbwKEGNyaFLRIyjKvhyXUUe1GpowvYsxwPxA08bP4rXUDvQYYdQ1Zdx9cN1KJ\r\nQVChldvdwh8VjPp6FFkGRf2yUnGXOYoRBuh8UEEEtZ8ONKrgYXOot6rMukUA\r\nG5EPwde++t+z8gEF0LEbZpSG8dysSAY5T7+CZKckNRIJg9wR/ZKkgdTBBDuJ\r\n5bt6j/vsSraEZu0KNU3YC9RIUSjXPEWnlHg=\r\n=QcxR\r\n-----END PGP SIGNATURE-----\r\n","size":701510},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.3_1659646010195_0.8419533753710566"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-04T20:47:05.937Z"},"1.54.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.4","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"6fd25ae4a2841e53190331baa5c6961e2076bad1","_id":"sass@1.54.4","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-3tmF16yvnBwtlPrNBHw/H907j8MlOX8aTBnlNX1yrKx24RKcJGPyLhFUwkoKBKesR3unP93/2z14Ll8NicwQUA==","shasum":"803ff2fef5525f1dd01670c3915b4b68b6cba72d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.4.tgz","fileCount":30,"unpackedSize":4563023,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCEccqEQa2FhbxFnqb2Up/6aEWFDIiPIFAOJDqQ6PhPwIgCjKZl1QBa9Uo9YGCzQ5fPkwV4OF6Vs4yJna9WhmyVfU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8wJNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtjhAAnhmgTiE1SdGqQ674EZqRlmWTJCroi5tzchJ0DYTJzavRvsSq\r\n3X+Lrgp7r1P7eWbCMQbRr59iqPQZzOKfM/LYx/pS0qUMCPKYTfMJYx6IwYR1\r\nIdfHfDJKULajmcr+GG6CtEGRXzqD2fVXuEeX8DreYFCfaKDn1B5Wqoo8V3b+\r\n3CMzQdl2Ld49l9Q3z59dkCdWToXyToy0ocDjmDu8IP6oCCSMjV9h6FFF+s5X\r\nBG/i6OnhLNS9Cr+XkkoghXOyu8MNtYhYrIrJKNJ1rAJktCLHP0EpqU28aUoq\r\nMVzjtdmxGDOV1SShUQPJ1evBOMy8awnw69PyjN+rdhs1NYLJtD7NA+OiX1/C\r\nxjFdkFZLbDYht76Qqv03bQFExW3tZxsmjHa0jeBQ0vzdDFhXeo8fR9799pMW\r\nUucj509Kv+BDDy3Jebv+sjpmufRIrVmg4bV7qQvV5Zm9ZM/SZzuRdqtUh9fz\r\ns0QrZmIarHzrp6yWVqYfyZTtImlC8/Lsbiy4yUayJV7PXnK1/XVd+r0uXPqg\r\neWcqezYYQmfCXRQ8l1WqRMqBL2BHmura8w6rD5r0yNPoeh+rwFQfxzEDtLjG\r\nLQw6B9SLH3NGGvcFyqDZsFwh3p0ajLhW+34hl2KYvqJKzRbhFCraWmmo878o\r\n1d2X+LYvwUTuPrvOt8h3y6YNp4T+JnxFMSs=\r\n=CQ+a\r\n-----END PGP SIGNATURE-----\r\n","size":701671},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.4_1660093005176_0.4597848224645604"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-10T00:56:51.791Z"},"1.54.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.5","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"6df34970904e8a27bc12cb9acc69714d85ce718c","_id":"sass@1.54.5","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-p7DTOzxkUPa/63FU0R3KApkRHwcVZYC0PLnLm5iyZACyp15qSi32x7zVUhRdABAATmkALqgGrjCJAcWvobmhHw==","shasum":"93708f5560784f6ff2eab8542ade021a4a947b3a","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.5.tgz","fileCount":30,"unpackedSize":4574410,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDFFXmxnxD4aWFyiSr44pPbHBT/3RoYjARwhulbEQKwDAiEAv/XxX0Pu2nBajr8620iZdybVRxCxr0pD6UvhmjxFOKo="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjABNaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRAQ//a8xlNqSJz+bfLkhEc+qF18FL/oa43zC50WjMCK1+527ofh4Q\r\nSPAsaks+ME88a16vxo6uEmezF9utZq01H+i8ARRrLWQh04lcLEjftEHryv1V\r\nY0AdElEWmIGy+07PMycu6hpL8CnGtd2Ncb1VWom2VC5+Dr765tBR5fK6LkT8\r\ntoO0ejTelGMNQPACeOKZ6vDM/W/mW4zScl/UrqBH+2Z5FwHNWLYWPvZIIX60\r\n2oEe7KUSvLAN0S2MOxLKwmN8uvhr7z28M8TBDqBooAqMedy07ZoPqQuJuhAn\r\nQ+UUc7Vh5JKwFimIdPFdbGqL7qEsTjEjKHMpWOOl6HTYLLz5XM462KYb497p\r\nc7gEGi91bcplzl5IDQ27yfHpdxQvEkSGwz8bbG4HWKQs6HuDmz/fKTDuEhGP\r\naj8yt/rmgSdODygn+mFas321yKn66rDkjK64kHRGNYxtmewdojyz6UsJHtTz\r\nP1J7Y6Tm1qIC67b0WQcUUvnUiSknWD3Doo8TRoKF3fqYZzc3RKYg0OMPD/GU\r\npwobbDdiX72FIh02kG08HzmKyXqIdZGMmTE3GBND8aSCcXg0LgjHuIsjSn3j\r\noxTBpI7yQ825/2Ngy9w9zHx9FpvVNwXQRCO5hpSp8djfzpeZC66p1uyqZPjU\r\ne4YjwWE0ygsyNRsUSajvF5O9UEGcE8s77N0=\r\n=xgsv\r\n-----END PGP SIGNATURE-----\r\n","size":703593},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.5_1660949337818_0.2756681784737529"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-19T22:49:12.854Z"},"1.54.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.6","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"016ab24ebd69d83547e545a1eaf160d05b21a98a","_id":"sass@1.54.6","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-DUqJjR2WxXBcZjRSZX5gCVyU+9fuC2qDfFzoKX9rV4rCOcec5mPtEafTcfsyL3YJuLONjWylBne+uXVh5rrmFw==","shasum":"5a12c268db26555c335028e355d6b7b1a5b9b4c8","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.6.tgz","fileCount":30,"unpackedSize":4583280,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCleXR59Tqp4vgpiv2BYl5FECvzpRslo7BhgzaTCYYsGQIgKpGZnITSWNzktliZ+bemj1Qm972P6DG5J9kqQ7hnxX0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDUsxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3dBAAk608zkUbdL9683oAkygGFI8Cuy7DTxp8pnJexSe1C25PjBR7\r\n/kID/CrKSGVcuf8umR2O6HxDbA0db08pmx7FTmEmV4vgqYlx9fVl77ldJtOl\r\nxP1wVQXtKym0i5GhgBbQ/49JNBQ+Wnz1cWtnBtwR8DEvrORG05ErN59vYVYv\r\nl5hwj77DAzYOqbp97nUu59rghcyiywcJ0aejWGfqCmXD6m7Qody8C344qzgm\r\n0C9bW+Kuw9aX8mnfnN8SxzyFLoxgW1TNcWu8Z3y1MyiI/pEq3KuQufPHCALF\r\nkuFG87qAg4u167iB/Zf68Tu1ts3XxJADm0Qqefr7Ypo9JG11jDVppB6TJ4CY\r\nSKyFc3PJ74rnUcoZCiM4jPYol9wtHaF9kL/AD+QoobKYSnXA+VIK8Vb8uNUR\r\nbHR+NfZbFPSeqqlZE3kyX6bdJ6sc8CpJKblyjjZVaDvqitjQ2GEKiCJtK5yg\r\nz8SRrYal1UsDyYMwD1lPwgbZiTh60+A+prJNOH5PwcSn6LKuIracZL4izr9x\r\nAKFmRbm4q1imTih2K7KQCRwsj/gdy/gIuFq5fgPeDJqZ4cvKiTbOKr3NDSyN\r\n38rqPa/7CyoVJkUpqNsXz/NpuA75uRsMhGfhmJvNlJn8lJkpfWTibHUhqRY/\r\nq9vlQgN9vBF0S3x4jirML0JSq8gEOo0jN8k=\r\n=Ht4E\r\n-----END PGP SIGNATURE-----\r\n","size":704964},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.6_1661815600996_0.8835747262580371"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-29T23:26:45.847Z"},"1.54.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.7","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"7e91457607765f529257aef0918bc2c9e9627599","_id":"sass@1.54.7","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-3q7MQz7sCpVG6TLhUfZwGOcd2/sm2ghYN2JEdRjNiW04ILdvahdo9GuAs+bxsxZ3hDCKv+wUT5w0iFWGU0CxlA==","shasum":"a93fb1690472b161fab8f4ab34a66a0f3000c478","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.7.tgz","fileCount":30,"unpackedSize":4577789,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEZeT9uYpgoum4nIvRMx1VybkUFKlJlHYE/rFgy0Ib0QIhAOfeui8wvc9CzcqATxWluKqHZDBF3DfYKXJXxCgvSLDQ"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDqT2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr9TA//RrSrcDVSTFwwJ6KcHvCk47VBSv331wFSLhsDVuvDW6mut+fm\r\nZasrwsPuVQF/aQDYVEoX4d6uYUd4y0PrwWv+3oitfZ/Th1Qi9NfH45MF0ZXC\r\nNn0D80ahGtcU0sQkvdgGmvPU1vPvrvF0Z1mJ7HzBFU/dlnuXBlZcRgyH2su3\r\nRA5QZZeA1UguboHyvj/l0wT+nq/Y+2tPZ0y7tjTZEQJN8/tBqlbiv7S28sob\r\nK97lI0F2tkVeEcc+ipeasCd0AElvojkQYIrac/rT0lvqcJn2pIoVLI7EyWf8\r\nwvobjFIuT2j2QOc7PLcQGhXm2hvKJsQmUcIMk/Lxr3rj+czHK45fPAHiu02B\r\n27uQ/D0HMBO8Lljiqqv8PYkAk/+/AmdXRiUcXEdgNkQzdINGf7YtCibBCboU\r\nxhQzxhWue0H97+/1FXE6ocDYTbI6S5MEWCsieY4DQGX8L/32GxHFH0aGHd63\r\nmGB86EzUWmVzbm192FYYk4e9m5f74AcwAuSdJq4OOAFABc6FMvLXLq9CMCjP\r\nJnViZEhr2CJ3mVM9IYs25W4+Q7OMn3wwHalw+rfbXFIbUtaRlOCfcDlR0jC8\r\nf8k1eDeYNUFzoq7piIuWLXTySxywQJ2yGMbz6fHxgHMwSW3q4pQCuXdzqt6I\r\n+FbBblRerBMPYj2laRQjs+/ILk8fW2hVNz4=\r\n=RK8C\r\n-----END PGP SIGNATURE-----\r\n","size":704460},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.7_1661904118487_0.44935603781563693"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-31T00:02:07.175Z"},"1.54.8":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.8","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"53937547397fc7cfd2514bd67b8ab3b271f13296","_id":"sass@1.54.8","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-ib4JhLRRgbg6QVy6bsv5uJxnJMTS2soVcCp9Y88Extyy13A8vV0G1fAwujOzmNkFQbR3LvedudAMbtuNRPbQww==","shasum":"4adef0dd86ea2b1e4074f551eeda4fc5f812a996","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.8.tgz","fileCount":30,"unpackedSize":4577789,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIApqYVcwYs45/gAqhWpCWVeztuFYnr4mcWO6P2HqBtUAAiADbd+0mQc/I3H4qbUbqRP5WHSnXFeiZGwhgu5L44+vcQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjD9jHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBeg/8C3fVsLY5ewFeYZ5On93c9wxFQZ/Z8ssv8GuMWCb09HX7iCIG\r\nhl44Ud/NqPL3+gmsFW4GmTFMjHkJQs7p5LjwdqXbZhNtPxcbFrCeoAHNYR3Z\r\nABJvNS3pgKudv2JlpzGgZMVS6A/oDDb2UrtTChmZxT51btCsreLAbZjzV+s1\r\nJY6lmrHGevrZqq6hrEGycWZDSK4Y2DEZ5P0IVi1fQdY9dnNAjZ8Al9QSyBvP\r\n1QlMALxd7t45ws5R6fYjklR78084NULnfwaxhwdggVstgiYG/BYiMEwk5FRM\r\nqL+gquPbT/ulmg16UZR+4qCm4kFfDHa47LjAkFHyCRghzP8qTEz+QB8/zl9n\r\nbMevxPVjmTFkUwwiesv5u00YacWIgECZF4erA2HOv2MHAnMXvrJ8CPEeayh9\r\nKSbs0QM4U70aKNcQ6ZiUHx2ix/Zpic2VknIfV4WED89DFlVVuUBqKagaRqqW\r\nLWojup+KRklZfhO0yUjgqLcHdPWUeC2F0xwsvk9blhmw5BNvMT6aWffbQjmk\r\nxdXgJCFV6ax19+Oq5+F28+FUHOcQdXBh7yQj+OOMcjO6Ija5nfPbWmlZbZPF\r\ncsiVaw2aCTfbCRTsgxAv2lX75LoSimleSSSxdZIdb2+udEHy54GN3ARg20dK\r\nuzRMlz0AISvHCWbAb69onu41rnKjMlCfTSA=\r\n=0WFN\r\n-----END PGP SIGNATURE-----\r\n","size":704460},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.8_1661982919395_0.9439973461331996"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-31T22:09:24.398Z"},"1.54.9":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.54.9","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"034484260d3295d85ae057eedbd6db2f9e7fd3df","_id":"sass@1.54.9","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-xb1hjASzEH+0L0WI9oFjqhRi51t/gagWnxLiwUNMltA0Ab6jIDkAacgKiGYKM9Jhy109osM7woEEai6SXeJo5Q==","shasum":"b05f14ed572869218d1a76961de60cd647221762","tarball":"https://registry.npmmirror.com/sass/-/sass-1.54.9.tgz","fileCount":30,"unpackedSize":4577995,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH4VwqCw6i8XEVED3IjExCrWskHwLhYHnkPa8nmcOtycAiEA9LPzd8gVHSqy+rnmeypJt298C+gCV7GdGEmyA46vrW8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGQ7FACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHDA/9EVnMvYZ8rgBPU5efmYlaojGSt5T5s4w4CYrjD+z1JR52z2VI\r\nnPyzuSH8c7TWPXjrPl1PShETB79nOrYsll+/bLkMvrrAKosqBjtBKuTlFIvB\r\nZ3TOWKvQOWAyfX2hF9FI6O8qXB/z6PmHNnRObs2ttcUAS29y9e5afxKoFzjo\r\n3UoX8zSCWQBasAhim337kihR0si1jJGeDlrtN/EajoDzlZQLFnsRx2cCDuD3\r\nNvny7Gc+bJrIa/pMNDi7kdaUStFOoHJ+BeIbHvsUcYXsU5MxarMrOVsCCVGU\r\nK/+JhX4F3Z6rz6AjFVPhjXSyTfL/Vik+bIzcB84z7Ar4jSRjZg3RZxolTJZo\r\nlHIImN750/7YGyGaz7txq4mnonlDZ9MFKgXmZWVy2urY4MOhOP5rO0Q+XZrC\r\nUr/C4uyXg/cgMvzzKuv3ew9aZJkCXlgOgd7/GhR1dMxNYo+Na6T3dU21em54\r\nJL0LcH4WTZQYYO01jTvPaCZ5tb/gNnaygVvejvfJXWz8DcE8DYR3uvN69RPI\r\nlZuDr3fqgtU8a5u24cwUjz+u7mJJVZdBNdwSwjDeW0dEQL4T/jQ7bPApBi9v\r\nxuCJF3ThG8wN/3MfCfpUASB/qKBVolq1TrZPr0b9cZaRyXh8w2Z8q4Yrmmc8\r\nfON3VmXoZ0WheReD1Wk6+KNYzEMC6at6JlI=\r\n=3u7d\r\n-----END PGP SIGNATURE-----\r\n","size":704463},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.54.9_1662586564678_0.15820772121210203"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-07T21:37:49.222Z"},"1.55.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.55.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"a65e504b484eeacfff5219a24ad4b89e5ee1f87f","_id":"sass@1.55.0","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==","shasum":"0c4d3c293cfe8f8a2e8d3b666e1cf1bff8065d1c","tarball":"https://registry.npmmirror.com/sass/-/sass-1.55.0.tgz","fileCount":30,"unpackedSize":4573719,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGrya60Sy+MYEqOmrGw1J1blxsMFKsy+EalKgMpEB5XLAiBdgVBXNJdgP0asoesJjFNDsUqy2tOf04+UgOM911y6GA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjK5SWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqORxAAoglgyeblLkg6HjSMre/7Ur5e8to+DojS5VLhoFAHmzsODvho\r\nYeHOvltmZVL5gE3D5oWUfy7HQnA4LDk5ZJ9DeR+Jfhv6UDE87d9tiQCOJaGS\r\niN5t4BTUQo0o4V0kL5z1Jc5TIPx3a1qKWh2TcXSjA6UXe4rXHoG6Wn5SUVqV\r\nHd6l+Z1RfFqvZkdsnYEjiM+I+NAiuoOWGxTSroa1trqDLsaPJAuCnWPRu8dr\r\nrJBBpjrlWncoXDud5OFWPwO199qD9Ed5WpMhl4mFpelYMeSeGfEGNekJOH/A\r\nwEATwqFNzIrkOH3dSuy84XS+oP8SAT69Zit5tYNIpCmQtpZzzXAyusofWDzi\r\n5xrgV8PlaVvHl4Ya/LtgGkVDil89MiPghth1L4tmuaarSH95sAnpIDWq+9OG\r\nvuxwqqVQjFYs4mHcwpSoNuLdHdF0pj64iDKdRXfutqdlSUqBuawRIKGgj0Oc\r\nYzQbJzQHbZ0AA+xTa342giJu920qL9M4LcDBHY1mYtbwgwiz5X0g8RKqfq7K\r\nY/4E5kOoIChJSGFy0Hl40AvQw/UfQwYWdhh6Ic5EKTsBmqwYqJN+LFvCXN5m\r\nTnGNI103CUWtam0SQeDuQ924yED0G13ZdZgBpJUB0jvXSvMWtuDgqQqkMj1O\r\nnuPOXv4wLx5BNJUk5fbTIw8iwEyG4o2EH34=\r\n=kryk\r\n-----END PGP SIGNATURE-----\r\n","size":706301},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.55.0_1663800469984_0.9089524587426532"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-21T22:48:40.123Z"},"1.56.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.56.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"f3293dbe0fbd3221299dc3207036dcc5223c8e18","_id":"sass@1.56.0","_nodeVersion":"16.18.0","_npmVersion":"8.19.2","dist":{"integrity":"sha512-WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw==","shasum":"134032075a3223c8d49cb5c35e091e5ba1de8e0a","tarball":"https://registry.npmmirror.com/sass/-/sass-1.56.0.tgz","fileCount":30,"unpackedSize":4575109,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDk7YqipLfINazj11ZkWghKMOb+ekvcSobVWVezDOvY+AiAdwv5KzLUZllhmDSGRSkAczJszKP7aj/UUytgg5OVFiQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjZFo+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrrTxAAoeBp1hjEEna6g2QMCT2I0URYo8nwFAKe7tje4rFvObTIDlqd\r\nNG7jbobAxE3JCLK7R+Mj/YD6jckrDffxcR40zE8MsXUbMl+d/hQ3Vk+O41fr\r\nQiVgS+qPepuCkZGpoBBciPuqBGV1Dzg3TkymiNqQUMuuYtHPjP9qHVs0yLpd\r\n6tYEeiyaWQg462ce2l9nKTRabPNalV6T+3TtI7/Yey7SpWysCbjYc2Iid4o6\r\nrKB7JMDhMSe2Kv4BqRTZqJl3t7cPMS2ZAajXmJMjVI1EWaDBJSl6qsKgke9y\r\nR0mFN6kEoAk9vAl9w0dn9M7rd5WHN2urz/x3AlAmMRIvkDDObOMI9xm1WFjO\r\n1pNy1Fz+l4PR2ulgXMVA+6NWCFoPwNNAuhxNEbBEmxo13+atolc8sPCqO0MT\r\nuMc1gKLY/1ImLn9MPxsutjIrnPIz54cuPL6tKbdanw6D4KRkHKqkTLAA0CFx\r\nhgmkQI6hJmfvUdsoS/vrGyIhewVN3k5KVXg7cnBXORrMZTzXw+K9iHzWUkfg\r\npis+k3BIsFInzpP7NveEeDiaXg5TgNkefd206uj2ahLBACF+AQtLHeYjZImR\r\nRw1hL51gMrtG/eTfrBY+rdl/5RpwPvq0aQ9FoOAiPcxyCxi1EmyhoBBcQJCC\r\nZJ5lhSWFthqOxZVYLcRTGwv5MrW5lCwQFtQ=\r\n=oe7p\r\n-----END PGP SIGNATURE-----\r\n","size":706731},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.56.0_1667521086598_0.819979936971283"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-04T00:18:14.905Z"},"1.56.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.56.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"790eb8a933aaa8fa8e40a1c285717685c7292909","_id":"sass@1.56.1","_nodeVersion":"16.18.0","_npmVersion":"8.19.2","dist":{"integrity":"sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==","shasum":"94d3910cd468fd075fa87f5bb17437a0b617d8a7","tarball":"https://registry.npmmirror.com/sass/-/sass-1.56.1.tgz","fileCount":30,"unpackedSize":4575109,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDV3wEwkegBasKvFzyw/JKqyCQ0vcFeIZDQbeHEfknh5AIgLaOn7EQhNrKIQ6UqbcCNGku7iWkzJFPTDe/j9BVza28="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjawlKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmowgg//bKnie2CA1LW7e/Dc6E0ny2PUp34ZH+2HS5DzhD/KD5BeUgy6\r\nU7Om69dYsJHHJKRg9tazQp1r7R8y/DHLtW0UZlUBHwMMLwSbwIXiwpHyLrml\r\nYGYlaTYVkAJyKsiEaCN6RazddT+DDdAgsZBI7h9b9fcWrHNAYEI1tQ3jCM5G\r\n6v3vFIC5piwZj8uKoZlcle3FOnolTh6t/6ZPWuCCbKs8rBtu0BF76agMI0xb\r\nwhNvg2HA020H1m8icNG7Q9j+84shMG/jusnxyR36R+5FZdn5OLnlrwotB6S0\r\n5BKPKLpEP0RaB6TFErdVqMEGeMLQWdzTIQzBEEou6rDaCGSlil/TvOMvss+6\r\nBjY83/x4bOdjPC0jJ9oa4yVAEmgAtEeVjXuu1T5mXA788NdcM0O6cLS51f5R\r\nJo9Bb/Z/4Q9TczuuvTEs4vuYEEM/fInSmGu49b6CbiH+BalMfNH0KDbWgq8I\r\npjG2sa47s/ayXIlV+W+WoJfw051F4KlTmAxtYTTswYpr7Jc8LKtwU38vfqYq\r\nsTricYHJXyMPtolxeFVb5EaU9lqGbt1ARoRLG1i4EDHZOjtV8c0ZDNhtwq2Y\r\nVoY65T32HrOtwRnL4yzTaC44AZAha2GLvTAthWquOWdm9MZAK2QUtFOTkAdG\r\nWsJbsVa01xORWhC4gAeeHTP2ErwoMdI85iU=\r\n=S1yP\r\n-----END PGP SIGNATURE-----\r\n","size":706732},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.56.1_1667959114439_0.13763303110737812"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-09T01:58:46.372Z"},"1.56.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.56.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"e87176a52aaf3ca4f7f3fe53612ac1ee58aee1ce","_id":"sass@1.56.2","_nodeVersion":"16.18.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==","shasum":"9433b345ab3872996c82a53a58c014fd244fd095","tarball":"https://registry.npmmirror.com/sass/-/sass-1.56.2.tgz","fileCount":30,"unpackedSize":4579693,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8KXWqpbHb+Rin9p3a0AdP/LqRWqP6wxhLOB8CnXbCAwIgFP6Jt8jaBSQ/5vO8ArI0+wwy7yO9yK2uHsXqBU6oBP4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjklpLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqosw//asgDZJyDkIc6NqoGrS3Tdp3v4+2tSG847O6ip8lwpDt8D2H0\r\n1D81btjkLzbi+z6RFCdzy/ElkZ5YBwgAsaEFELFVhvMBEycISRW9islXXjUN\r\n4plJg1sGwATzo2CFn3cvgsdL+7mEP7L7+O9TgvNBjeS7WpAca5iW+BfDynDE\r\nuDWssdIVlxU+jEg0tqZo0I4VX8M/mYgvgyQydPKyegtAUc2Fc83pnPAihHSq\r\nfOrE7JFM6SSteUQH8IPDuRaUrWNyaIBnFTLXTokXLZ499rJ3XoPopbqrYckI\r\n2eevWjMFt031fsT1qxer7N0j/jBESa1K4C8mfJ0WKbXukGVfGdwv/POzF1bP\r\na0ebIuLFwdivtFC/LumHGVAycSMmAG425EiFRCZ/kcjZzo/vNslteIOo4ofA\r\nFpR2RY/vojF2s7VuFjrdt73tP2iBcyCwf72rPTTbE+aZegGZowO8FyWpmEGn\r\nZfsVzyueS168mY1fJLtZ86Tz1rlKLg2JPCt+Nmo070W70OJytGbxvh7aJ1bh\r\nipYAuRyp1RN28msYFhW5e66bIF6AK2FuniXnho3qVUdS3ZumTgmrMV4JoglY\r\nYGTOlKIn+PiYZ0HLOdkk3MCiCWYZ1XTZPUymWPh4DidZoUwC8Pn7mdFQ7gS2\r\nDgDTEq7AXcgpt5efegreYVAhPlgjcHT2EFE=\r\n=V82W\r\n-----END PGP SIGNATURE-----\r\n","size":706718},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.56.2_1670535755619_0.9485738930537126"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-08T21:42:42.231Z"},"1.57.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.57.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"100f76fa7fc3981335063ffe33b7aca74a4b8f8d","_id":"sass@1.57.0","_nodeVersion":"16.18.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-IZNEJDTK1cF5B1cGA593TPAV/1S0ysUDxq9XHjX/+SMy0QfUny+nfUsq5ZP7wWSl4eEf7wDJcEZ8ABYFmh3m/w==","shasum":"64c4144ed4e1c0ccb96dc18aef2c424cdbc0c12b","tarball":"https://registry.npmmirror.com/sass/-/sass-1.57.0.tgz","fileCount":30,"unpackedSize":4585651,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDiXsvd27i2jqsvsXTA/tI2xmSLy7rM2tgg13dgFVmaAIhAP5adPu9/fwqqW4fN3U0X3JruPrZkddAVEjDK82/Gy4W"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnRHQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrrxA//eMe91Y2X8uRgsM3/6DAawuQ3Gwz8CdZMIvVtuBX758fddHUQ\r\nSNSR3kgMQuZHN1nO1zhxgsQqvIf0UIG2oI13Zlj3f8A1FOdTOqbo+EQG01bg\r\n0WwZ72mPBSMaERzLknXSE+IVUPVVqBnifcS/+VQfv5y2HfZ+Ef9YKWWgpwz1\r\ndIfkvEpFyTkFMquhC1qAP1QeJdhpjHohf52PwO7vEzI8X2TbWKg/In67Ui1o\r\ngJvlLicFFWFu5Ujs9GlI7FUUMDaP6NJZT4iDcRWYclErIH1+aZjj+9IfQDrD\r\nNk7NC8GLWl39fPC2HUuXeH91miuzQz6XV+h2YLPUq7KdBmUb1om1zyxm7mcN\r\nWHGXqkml3vQ+V5rEVOpi3djQwP/D1csgrOo+0gcw3iL4RFIUR6TPAhd/cfiV\r\nCiarGdkRXQM9uUvQHIpFgpJv4TX67+Y5O2OrF1c8EK1rxHYE8U3NRtU/ZIDP\r\n3WjyCNuQYvdx6q6iee/tpshx58xu6cQUkivzadUWvykRi7kWUyCc2QyFklej\r\nn8qyI6Zi+nWB8tSlgcBRS1YygqPSiO7I1T9dWPZvw0P5Wf4v8RaeFHlL+ANA\r\nQplbYocAW+1JiH6gpZcVGNFpxjMiIDmcXbY4M6Cq0nXnsgMSYq3Epl0lUOyT\r\nbkZRTpoUR+FgpcfSxnRU4n2S98+C1Xz3tuE=\r\n=0O3c\r\n-----END PGP SIGNATURE-----\r\n","size":707828},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.57.0_1671238096213_0.2295787573855752"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-17T00:58:27.261Z"},"1.57.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.57.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"5522c17a7bf88f07ddef02ae97caf15c779196de","_id":"sass@1.57.1","_nodeVersion":"16.18.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==","shasum":"dfafd46eb3ab94817145e8825208ecf7281119b5","tarball":"https://registry.npmmirror.com/sass/-/sass-1.57.1.tgz","fileCount":30,"unpackedSize":4584468,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDN44qp/eFohQ+TM0kQbQy4bkMtTznnFr62LvKhLOsztgIhAPiW6kZ2kuNMIvz5XQqK+jDLAiT0SWjeNo+2zBzH3QOV"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjoPkwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqGUxAAgiz55blRoY9P5jR9SdxHh3pKUkzQOpf8Ic1fjyOZ/sJhcZqP\r\ncIXmYNL9NDaupn0RmMX+8S/ZsEdDU5TeNI3BFfuJaB4nxM2FmXX2N+VOS/wm\r\nqtX/Ob5Jn4ppMGzwif7C37NVSXf1mSJjbuQX9hlBvcr3KcpPXLcn+pak1pZo\r\nfJhZihAKwdcVl/FQKhK9BVZohsztMPHLbE31UFdk+bJH3Wc0HgEuRv1azI/Z\r\nroB3vaxxbQuC4AOZXbH1qqDYE96jvNRTxJRYAD6EgGiAH48mQqbD1uhVRqN6\r\nLzQ6DKzNoq58dRMykmRHZMMOmb2Ig/knz8pE/pTyCdxXHxBixYLf0gy1P0o4\r\nqGS5WFvCO9Te1TJt0ZxOO8E8q+jC5tW5XHmTo4As74UKt9sH3/5uRW/mU8NW\r\nt6DHbA3FZASdxvZ0WSV1rR7a012mD/rkSyo63EjIbYD/jS0g/7E9xYyjjfYM\r\nb+1pnUFYDd0crLo4IkygjPS1dBQJ5mMy47BoLFc7G43EgBOqZ4tduHkej9ki\r\nCGueUEPK6JA/teX20FZbCmeEJDACwOVRqPVe7wnaWlkZbx969vV90xrQRGI8\r\nwsVFXs+7HzTozMa644r0r33iGYxQkHAzQQ9cjktijZly6vrwFABzp/SiZBvb\r\n9tYXCSQK2CZs1/1el9CgxOCVyHRMyCZMZ9k=\r\n=KXjs\r\n-----END PGP SIGNATURE-----\r\n","size":707830},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.57.1_1671493936351_0.16269785706682782"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-19T23:53:04.963Z"},"1.58.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.58.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"98fe9a43dd010442465ef1e50a4e3c6b0ff60f25","_id":"sass@1.58.0","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-PiMJcP33DdKtZ/1jSjjqVIKihoDc6yWmYr9K/4r3fVVIEDAluD0q7XZiRKrNJcPK3qkLRF/79DND1H5q1LBjgg==","shasum":"ee8aea3ad5ea5c485c26b3096e2df6087d0bb1cc","tarball":"https://registry.npmmirror.com/sass/-/sass-1.58.0.tgz","fileCount":30,"unpackedSize":4596305,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCYWT3D2TwqQYZ3mxl2GRnwlaNoE4H9j+jC5w7zu0vffAIhAMsWGygqnI8WQo1IcCZwlWO0kazgS1KAJSwywFNEKdiu"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2busACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5rQ//VQUTwjjR9kfc7aRrWOokJjTYl/68fkAM555PRevOGvkgkZIW\r\nEe7e9aHkuFpj6TmSrwAi9ZxbRMOjHUeuKaC6F8T/oAEUKTcUmJFC/iIh6XR9\r\ncXPly82myYx7Lm+F7uP1xcZcz2rtoqFwb+OmFm5ddbh+HbX74fZRqNS+nacK\r\naBBN4Xx1fIwHeNL2cx6Meu33Q5kD8+zgpaxIAUqq0ufHe2JxbAmpo9mJ/yf7\r\nfljYfNWWNH5+vG7bwFW2lHGQVMVCT63LLcANciyzzQt8Nhj2z8HAXdqvlI82\r\nR1gf/0y/c75P6gpxvNPC70kQ6/FnqsQd5HrqpwnyK6MP4Cg9MNbjrYyrkpxV\r\nOhJSHz+z8J338q5M/Ek7DiRsjXRzPTw4/W7pU9UrF2GFpI5CrEN/C+kTGzJy\r\nRXi4CGzJvFhRtnFgtW+80g3yv/4qMEk+t9v+QXAvvA1xMwIQ/eHynAcCbrqY\r\nZ9OJCCaFcf4bRQjS8BGrdiVvTh4Ra0ZBEkHgwoXVhu9LmAvDK4DL8hQwZlGN\r\nRHMaR/NsvqAHLInHtqf8hsEPMlIXgvrLzeX4ognOJppVtSbZIrCrSdYnSNkc\r\nB0Gm7hV6R3mNk1qSBNXMd07Cm9LBjAUUL7Nj2Oh6F31akUYMNiXiI4ii/x5/\r\nCkpc21rvnMH6NXQkR6Q110/Sb8yx1q7SYkA=\r\n=iLVm\r\n-----END PGP SIGNATURE-----\r\n","size":710134},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.58.0_1675213739701_0.0314768568818653"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-01T01:08:59.989Z","publish_time":1675213739989},"1.58.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.58.1","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"c8b4cd09ebddba5620a1f3831b5656953c2170b1","_id":"sass@1.58.1","_nodeVersion":"18.14.0","_npmVersion":"9.3.1","dist":{"integrity":"sha512-bnINi6nPXbP1XNRaranMFEBZWUfdW/AF16Ql5+ypRxfTvCRTTKrLsMIakyDcayUt2t/RZotmL4kgJwNH5xO+bg==","shasum":"17ab0390076a50578ed0733f1cc45429e03405f6","tarball":"https://registry.npmmirror.com/sass/-/sass-1.58.1.tgz","fileCount":30,"unpackedSize":4596739,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4vPHPCsntpdoYPhu3V3EaHD6EPkWkjLOcK7XrfxuSagIhAMJsRjTfffJLs59fwQaEWh0QZYqgQQlgFMKrQSEJ6D5s"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6tv9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoDYQ//dKLQ8MQmEJbO9P5PLgNANuuUjpK6HAbnqmJqzAkDbLWxhq3A\r\nH1EeRjh9YukZV5vuX+N8D8KxEcglOS8UVjEW+HW39VwTk/WMeHFjlnTCBZAh\r\n9VHf7NeDHovdjvRe2OeGiFLl+3VEoBHo+9sBUrHeEccoLHmDokkzDHnp9id5\r\n4AgbX/G5Ng5Gx43zohKxYQVZVsmlBqem/gosFmO1NTL8uhwsYdxUqISf+jEL\r\nYmdBXRXkLlnWQ0CwqbLnfafCFgrFLY5Cw2zaLxwISCNrsq45+yj2h6ELxSC+\r\nvD34/FmqzNAlxc0OHL4zYmnGP0vmTF0uXI7j5wUs5d4Xw2+F4hiB6Lk5f7AO\r\nkZT1POrh+cs8v77kqrkUw+gxnhrVd32iWbdHiINtOFMFPkd3P71OT1kYLeQc\r\n/0EMZKcpQZ001ObEdrf3aAG6hX9GTjVxHMxuEodSK5iuekohFgRmK2FUJb/D\r\n6FoVWuhuPdUoFuNLqPdbjA+X8dcZ7jEnBuaRmSYLBjF2wXXiOpksKyi/UfPD\r\ndPBsj9oA1r8U/0it5tEGGaHsYmTuiuL695FTQw2kpxkQNXXR/Ml/hV6S66Tg\r\nwqSRdHq5WiP2bVlN0brnxQ8pvuPe4AapJC174dBWGdZvQBWPjreSPuaeFP/7\r\nt6HPp6tWZGMtm9+dGZL5I6MP7wRwjYhovt8=\r\n=MrB1\r\n-----END PGP SIGNATURE-----\r\n","size":710251},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.58.1_1676336125495_0.4094321748828955"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-14T00:55:25.751Z","publish_time":1676336125751},"1.58.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.58.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"c4523884bf9fba3a312bae2af559049cd374d42e","_id":"sass@1.58.2","_nodeVersion":"18.14.0","_npmVersion":"9.3.1","dist":{"integrity":"sha512-2mbyOWOv/lhEXD6nVrQZQ4KT2DlwcODbTskM42EyqBAFUWOhiiYtAXZqjZz1ygzapYf+N+2GwfIH9M5FM4GUMg==","shasum":"ef3c5098a02dd006f09a2350b114f1ac445e38ce","tarball":"https://registry.npmmirror.com/sass/-/sass-1.58.2.tgz","fileCount":30,"unpackedSize":4620283,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIf9h9qiYDZciHtYTPkD+PShY/JHdqeDbhDelTdcO7FwIhALMPip/EzwLXgUTpxYR0oJ8RdOUe91w2f9QKh119vDi5"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7tpWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmozxg//f6fF9CV7U8VBqIGI9FDAqP53SGCznePrpSNBEtxgH9uRqQdy\r\nfTKC2oj5TLhUXExL6LO6S9+yP07NCfpZgFkpKwgq5MqHXrcyZl2+WBsLveC4\r\nksPGaGmO2a6KFory7B/E5HowapPSa/aMQCPp+D5V+4WURKJtd59VfHTV+jfd\r\ny0SlmtKUJ4bnA1pHpFSVA7h8PFHvOATyh1Eedya/fPGqBCjLMGgmMFkmDuHb\r\nHhvyv1JQDSTFgRvEDZI3bCgTxppFLVEMpSMa5H88eXjHgp+WNWiXdwEcF4N4\r\nyTy/p8/fAXKujjzFSJnOOC0mVLByBwoR8uBefZi8uFilnp49TPLS9EtfWow1\r\nWu+OtUWEeKtT/OLyh6j8M+U+w9E1GzjXQITyopy9VjxIRfyPTyBbah/ckPR+\r\npE8U6HNwlofczf8doJS3IYKpFitj50VEqdHRPo6nAxqGxshbOCjCNR3H2YRE\r\nZ8PpGerf6P/SGuhHQPdUD2p2S01l1zU6CJ2cbxM0Mgiz2IiVCVkqQqP/cfib\r\n+0H02vff+WacQxholB4gnRFTJQ/Z/RamOXE3c5I+pUB2pukrIyeKD8/qeVVw\r\n4VcUFooAjlwST79A+9MPPN+gA42GUGEguSFyJIjq50ceSvlltLHMF1aN6qSX\r\nrfdbp0MllvkBlNNrqQ8wyrEJx6lPtmG8Z3g=\r\n=C3dJ\r\n-----END PGP SIGNATURE-----\r\n","size":714401},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.58.2_1676597846548_0.6098982625777587"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-17T01:37:26.776Z","publish_time":1676597846776},"1.58.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.58.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","gitHead":"620d8d355e8396afe107b3e167b11524d757f3ca","_id":"sass@1.58.3","_nodeVersion":"18.14.0","_npmVersion":"9.3.1","dist":{"integrity":"sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==","shasum":"2348cc052061ba4f00243a208b09c40e031f270d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.58.3.tgz","fileCount":30,"unpackedSize":4620283,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGoH5nLb6iXm3HaIv/2lx3G2VHtBG+4OA2zZCklTjATuAiEAgb2gkrQqbAR8XgrVTHNci0I/kpZjr81GHxqBKsPtRyY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8B4gACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkmQ/9GcDbWWbR6ofO051E1YenyDOkYuWAOOM+LS7ak8cORdpFbIKR\r\nVzqW0JG0dlH+rQTS7VbmuArsvYaL1FkbOvep4KQ01NoSDtO3P1MJqoX8rf4x\r\n+9+HfUoNYTtoV6XpPLn+Qz/UhyoGCbV2qiS5/SMqXmfHvKFRBYEMcJVU9iH0\r\nutHiGjIJych67GCt047r8MvWyFSo5eAMTcs3U2bnAmNMBudPvOXxuTlhys5O\r\nr/wdKUpO0efVahwVMnkrmBn/U3Od+7RR1nDxRCInOD4ySJUTPc3TvcESb4bg\r\nL+fq5OyS0FFBfvQZ3MX8B/HEcpqmRdW4iZCtdxjs73t5ZcxktUjiwWMuVSPw\r\nqg0RqYvyogY3JkEP/y8gT9ND03ljY4bZKuEUQcJyhTL0t+KmQ7ZMRxB79zdt\r\nPE6W6pwzzV/2DFLUtuLgKZPW0DSxpuurGazTkurbT1T2WoNYpW7AF0ZThbIy\r\n1cvz3TlxsauvokFNAtqMCfWUvore1UJiC5M0BydYMDjxT1G0Lw36QwjLHub8\r\nnE06O5MWKmFId1p2wu2n1FWNQGv5+T0CEXb4njHPUx+hPSTdMLAFCm/6meoH\r\nI6K64p0BYanGQkvx/r43o0AQ5odAcPkmbJ3FEZoaouJAwy9ks2CEJ41RQrMB\r\nZskyVRHWSfi3rNiv6D1JVjN+1uSiCXNlLHw=\r\n=/Xfk\r\n-----END PGP SIGNATURE-----\r\n","size":714401},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.58.3_1676680736235_0.669264747874722"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-18T00:38:56.458Z","publish_time":1676680736458},"1.59.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.59.0","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"8f8138dfabbf48437d736b9bba7f481fac71ed3c","_id":"sass@1.59.0","_nodeVersion":"18.14.2","_npmVersion":"9.5.0","dist":{"integrity":"sha512-A2ftQ3SzkoddeQti1PnWrn81JcCpTk5UJcF3DQyfqarBN3Xk4HG/lHcBEurNpyrnd3frl0pw8li+jD+HsNSGUA==","shasum":"66bcc388d8cb915d264780b6e42dc493edc8a80f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.59.0.tgz","fileCount":30,"unpackedSize":4669590,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDV9PuQRydvdIVkWhf5Z9WTfPco+BEJVVZraU4iUx/90AiBNdUN07NZO1CkMEGz0TgHjoqI+s2yRlyYGiGXI21YfqQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkC7CTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp5MxAAoQ8Anhs3jUF4qQkC/H+xTZFIMHYjZnFmMoqUjHSm0uxlK5pt\r\n6gs0o1oS3jzNIn2DoYnBRIy0pH670qHN/tB2sHnmV6VG3Wn4wGXbrSthsBLP\r\nDOPfkoWbBim9i9NDR/s59IBZgEvpQsxombkf39warAKNeOmlNv5nOcPcsZY7\r\n3gRAOmqNU4TXoyxrBoouASzexkx4ea8rbPIlEisgzGg+OLZDuPeznMwvFDU8\r\nJCszIBItzXZoOTOk9vSJ8ne/33MUmOrn0Md3CCgeJURj3G83YZoEfoj4Pzcv\r\nEkz0yRnhTBFS+sBHBT7YCgsQ8t6YTz6SVzA7PHn/cdL4D/Woxo+bt2swI+0w\r\nweV+IWaQGS0xO9QIsM2opqyQ9QUwDNBEq3Grcit7OShU+8CWySsP9SOJiySx\r\nFl6tVMLXxLQmdu5OjvJ2G3PzHj+jo3WncF4T3CqKnyQd5fiPQT9BEkWQ6WYe\r\nzbR6siqaY3xk+wMBsmP6kCqQ3SM/grTjlFxWBAP0Jqk0dz8Grb0V+bSmoNNQ\r\nAWhhXV2pfdrAxoKTyOJcSmN76KB4KGeX3Q2E8XrGgdtWxDyFvgxqEoSLeC8G\r\njenLFfgaLI14YEfQT7ecn4DuJP0pw6HvskmGAEZ0dpzlg70pLE47JWFZXB/L\r\nAtzhHHCi+1BLF8to9MgyDZwTNDKD8X6gPEk=\r\n=aqLG\r\n-----END PGP SIGNATURE-----\r\n","size":723974},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.59.0_1678487699114_0.4172169697197021"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-10T22:34:59.340Z","publish_time":1678487699340},"1.59.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.59.1","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"d0ca8e0bc9f790a2b411728a07f9ec44b168c10e","_id":"sass@1.59.1","_nodeVersion":"18.14.2","_npmVersion":"9.5.0","dist":{"integrity":"sha512-KUqJ1AJdXOs448ocHI9FLKXhCkuZbXtyY6hf1gQNJFp/sCSCjxJOLh27k1Ut7i84s4j0zfQW+rjmfW3VNU0JsA==","shasum":"bdff824c8328599a434a4808b3bbe02d1a38acfc","tarball":"https://registry.npmmirror.com/sass/-/sass-1.59.1.tgz","fileCount":30,"unpackedSize":4669590,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbpseStV+zRtOj6amnNqgNhLCHOXfUypESfC4AGkYZ2QIgd0mhx25i0afTzA7WmI3O2BofTeka8CXLkKi7Kk/ngMw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkC8E6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRTg/+KVVgrnNAzEmGaMLlbL1UAfIoO5wc7eo7AZnRjLh1RwOFVxt4\r\nHFXdy7kMBL515GQ/BCrTcZ4ml9nVSaVqT/8dq9YAym3Bvu5b8MO/dMw5ETtU\r\nydZZyRaresohtH7zMmyoBzo2RMjHtQLMuG4u8i1egugLU3kkc589VH1g6Yqz\r\n+BA/s0rLFaaM+qGKfF8T5AwnWIdfjuuPssyC2+E7xQqsP5IIQaxL43b7MAMP\r\nc4CizWoqrJp59I/AyaXE9zS9L3oibPmtR40S23enK/1gwvaj7tM13bHaumm/\r\nF0k4wRAEmnDGrT+bxzYm1pWuqN9taGFxUVwuXl3Kc4m1R8qgYAkdrHg0YVaT\r\nhj3CEKPGg+bXkqYS2zYWnunISD2IYzLftoVnD31RsLZTTN9xXI7hQHqhf1ye\r\nzSji2fTJkgXFiH01i5vJiPqK0PfMTgf3p9YuF3U2PJQn+Nbl2TXCaoHmD7h1\r\n7QrUyOfJcPhnC5OX7rfB+g6N4toUvhksfB+fscjcpOlVU+AGm5eHuqiTGVVb\r\nPmISLg+G/OL0HvwN9FPsxE4TpsTrPG7aaeR+PJPAR9pBRNwudmrHZJNGg1Pd\r\nbEsHx9GfZY6fAfJrLQhCVYfDvohvcgcywhgUeJQ8hNuisJQxhuh32G6+tmiZ\r\nC1pXjYUsUcvhF9BGNfcHAl0pE9j6xB0fLUc=\r\n=ki14\r\n-----END PGP SIGNATURE-----\r\n","size":723975},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.59.1_1678491962359_0.3706709708229823"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-10T23:46:02.557Z","publish_time":1678491962557},"1.59.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.59.2","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"b540d5914e4d6f0d8942c5af6310cf89691eb7ce","_id":"sass@1.59.2","_nodeVersion":"18.14.2","_npmVersion":"9.5.0","dist":{"integrity":"sha512-jJyO6SmbzkJexF8MUorHx5tAilcgabioYxT/BHbY4+OvoqmbHxsYlrjZ8Adhqcgl6Zqwie0TgMXLCAmPFxXOuw==","shasum":"537f6d11614d4f20f97696f23ad358ee398b1937","tarball":"https://registry.npmmirror.com/sass/-/sass-1.59.2.tgz","fileCount":30,"unpackedSize":4669590,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHVoR9xbEM+TZan3FY/yaeHd1MNX9EfvNwYmtq0a7nBwIgUShGGHUV5OqL+4u8qH6e9/eaHhV6y6s63HO1GFwrrmU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkC9bxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCrxAAmqeZVGzrJr5+CixqPPmuJ0dLTThDUYgyClU7xn5UomEIy5TC\r\nxugj1czGjFwg8ub4fj5R5YcF+MhK32BSz5tV46ZhBJ+975UB5MeT4JOF9NhS\r\nYVdDE91Ut5XGnZc8xLmQzo/5ICU/c+ebsbeRimeWomNeMQO5uSYZtS2YodNp\r\nGZoAPhWPkF6lK63l8ZaCxV1hT9qYHWyagtvUDczGMpWABYFMoDf+5KiYJzTS\r\ncU7U8+JLv/yaA9Os21z+0Ru6JvN777oyYRwMKNrzklYjIAWqDWhivk8k5e96\r\nTtzpOFaYBorjZ3qP5Hq1R4p9FQxm8vDMAaq1zL9xGzffhCr9+QkRCD8xHuxK\r\n1uJuUcwXA/rBtlm95SAhPHS8/PhGKRNJzTj5WMQ7+38Lne91/A6+P4qG3bD3\r\nkAxOgawgf12hKgyOL07YN3AFTDJZjPUpX1Yb0wqkDGrzRStd5a0X6DEJBLzQ\r\niszbofxE49lsUEzeVc2HhamnZwYhbEIupbzAr+Nal+6TQBaHxfAe/tXqIaag\r\n/wYWQZVxt+iiDWhoDFpog9cyoNxmp+q6PtinpjgIsbx+y0P5bGOeKIrWL5Xc\r\n525MrbGT1VRkiOIl1ik4UCEYRyZzvGG43XQAkY080TO+VamZan7PVySp15uQ\r\nsMcmzeM2582ho0QkcnxiCboZcqHvf/Da280=\r\n=YAR4\r\n-----END PGP SIGNATURE-----\r\n","size":723975},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.59.2_1678497521450_0.5682527095957983"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-11T01:18:41.768Z","publish_time":1678497521768},"1.59.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.59.3","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"09a5f09638b3d7a57f55907abcab624f98629d81","_id":"sass@1.59.3","_nodeVersion":"18.14.2","_npmVersion":"9.5.0","dist":{"integrity":"sha512-QCq98N3hX1jfTCoUAsF3eyGuXLsY7BCnCEg9qAact94Yc21npG2/mVOqoDvE0fCbWDqiM4WlcJQla0gWG2YlxQ==","shasum":"a1ddf855d75c70c26b4555df4403e1bbf8e4403f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.59.3.tgz","fileCount":30,"unpackedSize":4671688,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1sGchGdb1afYK4yqmAlcyQ3PcwXpjvu0Etc1UB4JRzgIhAMcT+7dFxzcvvJh7DXiJ9p15L7h41sKI8W+uydYH9vE6"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkEOTjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCuBAApNfxW1pM3kr9UUZNc4bno7sMBmUBZek737FaW9YtZsIH5GGU\r\nGrNFk+eroxttuCmhyzAzoXBFbCaVT0IekOlPFRYifr59/8mwiohsE+kfm2vc\r\nbjizTmkXDqSOJxcdzWDve3D9YhvzPFlC2GvZW8Czva0dn1P/QEvFzZSiWGfu\r\ncLD4n5XKqcrquAuCK8SexeB37LvLzK3ujfN87KbI+yS0AZ5VFA317QOqxXsz\r\naanLfZZ2JSH+EBOmvNX9euSemuieQQnFpXr93QYRdWqJe0AFQg2WZ17mOjLJ\r\nKT4FpYcNDjXb+EIUxDRa8Zo4H6mRaQ3OBMKgG5ZCqckqvmHrwWcSmafLL5WF\r\njVItdrcWvHaQh/X2LvTohr8+8oUKUkfpcodqj7NH9vhTdyPWtYf3j8p28XPf\r\n5LzgJDrJ7k3jEWP+0f62vbL+tra171iQjtrHrJm0pQReGWlJaq91zghVXZpy\r\nGqPsH+FdZOy4naza4+c7CKrC2tI9PKIxGBKM9ZT4SzzrsIA2tM1vKpMnqriB\r\n/9zEt+sjqL0cVwAsmFGS3jwzBB069mxjBB3yD5P3n/WLgdAgKsrxJ7JIZBOS\r\nVf2bKVgPNoHPtIgYWJ4pkOf8K3A7FmY0QPksu/M4Zyu3zqj1HMj4kG14Liuc\r\nDlTK5cFon0NXCwnGdSij4Gz62Y8rniApZhw=\r\n=jMxt\r\n-----END PGP SIGNATURE-----\r\n","size":724361},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.59.3_1678828770815_0.7422733677579239"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-14T21:19:31.045Z","publish_time":1678828771045},"1.60.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.60.0","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"f5a3dea748567339fcace19cf43f967b9337229e","_id":"sass@1.60.0","_nodeVersion":"18.15.0","_npmVersion":"9.5.0","dist":{"integrity":"sha512-updbwW6fNb5gGm8qMXzVO7V4sWf7LMXnMly/JEyfbfERbVH46Fn6q02BX7/eHTdKpE7d+oTkMMQpFWNUMfFbgQ==","shasum":"657f0c23a302ac494b09a5ba8497b739fb5b5a81","tarball":"https://registry.npmmirror.com/sass/-/sass-1.60.0.tgz","fileCount":30,"unpackedSize":4680597,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3cXcVwk3eDAK+HK/Uy1fThlDFv95b+3DftyVms7JaGwIgT24caCK7U+eiILz8hlclOwLr1KzHG39lvQEY6cVOBZE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHNy9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWwA//dSryOKlHp+Q1KTJ3oAa8QmYzzebkoSK2bv0na0jCvgQXvarL\r\nkEfRATBFuQUrEK6umOinnl9/iRKV2E2BIjGq84UbcJrT0gP2tgHjhzs+o48t\r\nRKAqWICpIr32VgL8WNNLtrVpM7ZS5LNdWstWgsyKC79urJGmXNmb5gycg9za\r\nrjPiQx+hVtFTG+bgJ8K6ptYzzCPhAKR9YbykKMg2DkxgrQ55ffBn5vAbpxXH\r\nGkqub8yZstG7K/5puzi5XjnBckJW2L1xA2xfyBNvx9zSSKH3oVjVHMkNgiQy\r\nvcvIilKa/X1XI7bRSgxe7T72jTNSxmxmsZbmP+5zer3O7+pkfgEToAPVGqZp\r\niUK5wq5Zqjn+qD7AUazOh1y9AZSgeyhwZiye4Whp6Hn1RVRJ0Pki3D+2RpYn\r\nPeHoieJcHqmwmsIlimMuSIBNOTmpGdE0H2ln8KK4KAdLcTfIua5jjsCvOv5X\r\n3nGSh2LDJvzackIBbRiH6V2Pi09PwXRQGqlUvOx6iMoOEz+CrPqMtt+YdYW1\r\nLirJengJTTjoCtLBopDypP5C92+GNbdPP9uiWrDAfqzPbOVCfaflA2+IgBQK\r\niZYU8hTHGRCrKRzIXJZBXKrYHbWKrw39FXNAH6dcxoPzwBdStEJDtr8UmNw5\r\nmkArkiFqLWtZwWHxcRB5t9AlGH+OBSEUVts=\r\n=0etG\r\n-----END PGP SIGNATURE-----\r\n","size":725997},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.60.0_1679613117153_0.7570516450062563"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-23T23:11:57.410Z","publish_time":1679613117410},"1.61.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.61.0","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"702a7ee7a18c0265f8f90ff1155268e477dd77cf","_id":"sass@1.61.0","_nodeVersion":"18.15.0","_npmVersion":"9.5.0","dist":{"integrity":"sha512-PDsN7BrVkNZK2+dj/dpKQAWZavbAQ87IXqVvw2+oEYI+GwlTWkvbQtL7F2cCNbMqJEYKPh1EcjSxsnqIb/kyaQ==","shasum":"d1f6761bb833887b8fdab32a24e052c40531d02b","tarball":"https://registry.npmmirror.com/sass/-/sass-1.61.0.tgz","fileCount":30,"unpackedSize":4680665,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC3PFVjVzlIq/F+k+s0GrRYjjApgARKbFOctQp/b2BLtAIhAP0rLzHg701VuhLfCbEUjHg1aZo+IGF6/zkNOYRj4mJ0"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLz9oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrt2hAAktvTbjr/O6ubiyyOkOveb2tM3C1YvOXcdLL1YGiuLzKUqONU\r\ncdBbx4dgULHBq8MXLgST2nXw75N8UwyuSt1YRpxTAumV4ZlohEwRpETxpqBz\r\ny/X2QeXQ2ejjjrENYYjdHT/bb4lKKP+vUv2zCGTAVD3LoUwZqc+peEe7hG7W\r\nezhsQvjh5VGJL4k6K37X6o4h67Z3qh2kQsXyAM0DVHCXCuXygr4R8vufQJZT\r\n0UqlojVa7MFVQ+LZARSYvYk89uAHX320cEhqxA41bBWCuOFFu0CmRF+Lt8DC\r\nEijSYf4RJE39D2oDiPtvhoHU1u5puWLLGzU2S48SfdmxqE8Kxm6IG4HE8JCN\r\nLDMPpbhJyPl+EpoRw59ePrCOo22gtrWTuMEQIepJ5mTCTxmUHoK+3xgc8UFY\r\nUJMzy98va23hbDvBvWqz7St+nO7E5ONsS39W5ZklZAN9tN+fW120kErTgOWJ\r\nrTgWrwYPAozClx9RvCPgkoZA2zKOgLp8N1riRX5d9vLzWavo0Sb046uqXFdV\r\nmNIkRTZeZd/7xA85wqtnhUAL2aLrJhm9gm3vSK4bvc5BgrlGQHs5P7HuNOLG\r\nZfSGM4hIonZtI0oE75krm2pTIos7Jy4NgA7z8TuFGvDJ+g+5p5mEjYBtfdE8\r\nasIEqbt/3wUOmShg3RyHbnCDdyqNmAqNrj0=\r\n=a+Cz\r\n-----END PGP SIGNATURE-----\r\n","size":725889},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.61.0_1680818024054_0.06132925817207613"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-04-06T21:53:44.326Z","publish_time":1680818024326},"1.62.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.62.0","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"c55235d166591e86ed342a1b5937b3d600e4d4de","_id":"sass@1.62.0","_nodeVersion":"18.15.0","_npmVersion":"9.5.0","dist":{"integrity":"sha512-Q4USplo4pLYgCi+XlipZCWUQz5pkg/ruSSgJ0WRDSb/+3z9tXUOkQ7QPYn4XrhZKYAK4HlpaQecRwKLJX6+DBg==","shasum":"3686b2195b93295d20765135e562366b33ece37d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.62.0.tgz","fileCount":30,"unpackedSize":4687830,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICJNF3JrNKlksCe6///7JbDvV37PuQP84vlEhcZRieMNAiA8GJ/TvqECPqlziKNb08ggnXZ4oRirXRY00GpclWZhbQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNeVBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiPw//TM/ieTFj9ZA6aQyJaYENdaHnx+Z/cpZY2y9juABXOma/4fci\r\nj59hNMPxVz0JdNLcE9lbFS5jQvTT7SDcfZdWsRQ41SH2fhMQXKzVrMKMJozd\r\ns2/Bcf/U6Ggdsp8EjUVWHZ0l0ZQMtE+yO6/ZY0Cb/LnfyzdhUXaydpWfDrEe\r\nEScXc1qs/QmMDHRD0QVRljMCuVvd/SlFmNkcPFjTEOW6G651wy07HTeFPGjc\r\nTWgk8Pv49SMmEILSFD92G4omAEFXlmnsMdyH6wa/2LEP/6BAUqC6ez4kHtB7\r\n9pii9XN0iMfCqkTAICONGMCILp2aD8A1XoOHz42kgLwDIYyT7oK/I5D1/JCk\r\nVBoDf6oCcgZ8CDdboZ1q0lPMyqcGA6qEVtVtC8N3Dppaa7/lQk0/l3dXnb/n\r\n4Qx6MlDI7E+0LeM/7Rp6zJWrjwHteUivGyAw57ipnjUIcmfZl3sy0N/Dall6\r\neDr21OrVC1vz2u8r65oJjG+HiieOGrzt8gYzGLk8jiz9LU44GUTa9efl54FR\r\nrT02ztw8D2oufWjFaMkPrsuzOSIMLUweDt4eOy8aUvgGvh/AsD0HV6L7yDD9\r\n1/HY0xu0KVpwG3kDw4+qTkqNXUvdQkRTA0GQKJeWl87+cBXryDFlUh9CK0Vr\r\nRBJ/vwzcTS0g9mF6Ho9LcfhZQPc0+MMt8ns=\r\n=J/WG\r\n-----END PGP SIGNATURE-----\r\n","size":726933},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.62.0_1681253696960_0.16556163135211022"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-04-11T22:54:57.230Z","publish_time":1681253697230},"1.62.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"version":"1.62.1","bin":{"sass":"sass.js"},"main":"sass.default.js","gitHead":"8dddcb7b7db13984fea69fa85438acf30b56b4bb","_id":"sass@1.62.1","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==","shasum":"caa8d6bf098935bc92fc73fa169fb3790cacd029","tarball":"https://registry.npmmirror.com/sass/-/sass-1.62.1.tgz","fileCount":30,"unpackedSize":4689567,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF+xKIxkNbkN9VATQ5AnMwUrJexP5BBLsjfmRM6sPGLwAiAy7fA/0PUmPBFWMOlT+xNkLpTc+9Z272RyXyzRi0RbRg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkSGKWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogKQ/9F2EKrkuIUy/ZtsJMw8xT/zspItaC0k7EW2ZRPEApRIWxYUkx\r\n2ZqK8Rn7tdjNLE2X/9uJtvnEbHJejLZoxRWw3sX0Am28BFPE8hcmfwD4O0z7\r\n884n7nQ8pc39SAFjjmXZKP/VsRvlny69E9JzMQIDt+mCZf7FOieRqXQHTFCz\r\nIYAqgHQn2r79hVdsWvGY3H0dYMLCSfraK7jZhqsx6Ndf74eYqsQouf5NZPWr\r\nbZe4MTUnPrc/rmAOky1kVSRI65gv4CVcFsxNvyWGM7i+Fcg4OY6MVt9MaZdD\r\nr4qT+7V5nubVke6OewxSJNcgmFcET93gSis3/kQY+xW3Tk5nNBqGH2+M0Hl6\r\ntvtmGsO5BAvlfdZgA8k1NcJzsNhm2btoa1hc14yYq9b/aCFK+oVfwslucM0F\r\nUanSJq/2/VXaBjOqVLqnVR/h5H1DZ1tgQH4gi6GyFF93bSewIn6vUArU4nce\r\n/xyj2+snZdulCFoiH8RajsRpyd3/9y2UvTGZIpG5mBvTj+2+utX1q0Ha8DkV\r\n1l1kFmVE+2HvE8gRaWY9v9ZUrv19BzXukzo9W04StOWSx0+feGMwrPZSPV+Z\r\n/weH54UhH5yEfteqzzImoXsuLhPMOewbkiy+75f/Rrj4oDZO0iosyuknhQMp\r\n2yGjAht8Drknrm4hQ2ThyD4BS449KX7wRSs=\r\n=/r67\r\n-----END PGP SIGNATURE-----\r\n","size":727218},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.62.1_1682465430086_0.6161148760831652"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-04-25T23:30:30.347Z","publish_time":1682465430347},"1.63.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.cjs","default":"./sass.node.js"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.0","bin":{"sass":"sass.js"},"main":"sass.node.cjs","gitHead":"c3ed5479321aaf7dfaa3b6285085a2aed2fa3de5","_id":"sass@1.63.0","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-YIkMh4jvWB0R43XxjEr+GG26G1X40y4tDRoBhbOD4KkfXrwJgD8elAqU4mUqC5kP2nTrf7v77ZgYPZVFebHmyw==","shasum":"76b2a27282836b3343a4a669dbafb71fd93b1927","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.0.tgz","fileCount":33,"unpackedSize":4720338,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXFACrWxeGgOGmzBHCYvYQYPiebiJxKXtLs+wHwrcnaAiAmih0xpZPe3bHmQEpbkXHHXcJQJn+ZwbxYscjHGaN0sQ=="}],"size":731746},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.0_1686171265073_0.9498887339846702"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-07T20:54:25.404Z","publish_time":1686171265404,"_source_registry_name":"default"},"1.63.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.cjs","default":"./sass.node.js"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.1","bin":{"sass":"sass.js"},"main":"sass.node.cjs","gitHead":"d82654bc3aba2fa3bc0edf13d96255613f76d35f","_id":"sass@1.63.1","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-brMIFnxuJmqbABUWHoKjKPjbKH4kOru9+tiplOOFjojolGTQAw8OZYs+EiLdpXeArYTcfd1/crVzScgRPvKm1A==","shasum":"ceebe32d03521d5115cb7d13832141ba6a6066e1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.1.tgz","fileCount":33,"unpackedSize":4720338,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjZVR84qXNsuImmzhts59nYtflW5r/8LZfKHoavG43XAIgBrQdTMLqyNLhm4YA6sOgHoTfaEcJBqF16n1cD41fGyA="}],"size":731747},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.1_1686184030204_0.17225588924085922"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-08T00:27:10.495Z","publish_time":1686184030495,"_source_registry_name":"default"},"1.63.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.cjs","default":"./sass.node.js"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.2","bin":{"sass":"sass.js"},"main":"sass.node.cjs","gitHead":"eb09d75ea3f3403141148df14d42dc394a9bd706","_id":"sass@1.63.2","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-u56TU0AIFqMtauKl/OJ1AeFsXqRHkgO7nCWmHaDwfxDo9GUMSqBA4NEh6GMuh1CYVM7zuROYtZrHzPc2ixK+ww==","shasum":"75f7d9a8e67d1d5b98a989507f4d98b6067b1f75","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.2.tgz","fileCount":33,"unpackedSize":4720338,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG0/K2TSPcTtp967LXLJLqE80t0jfQbtPDmDrGWkpU+zAiAJs+PMK76lRTBjvZ+HoM4AaTH3fL0Tg6h23ab+d0HTHQ=="}],"size":731747},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.2_1686188415572_0.5343973524734167"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-08T01:40:15.721Z","publish_time":1686188415721,"_source_registry_name":"default"},"1.63.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.3","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"645e48fd5d1c18843bc3d72b728485facf0d069b","_id":"sass@1.63.3","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-ySdXN+DVpfwq49jG1+hmtDslYqpS7SkOR5GpF6o2bmb1RL/xS+wvPmegMvMywyfsmAV6p7TgwXYGrCZIFFbAHg==","shasum":"527746aa43bf2e4eac1ab424f67f6f18a081061a","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.3.tgz","fileCount":33,"unpackedSize":4720337,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAzl0BE1NGLiRFB4pKq6SFegxH61PRwDzeNRTRVbQcWgAiAy/5m/3mcB0ILtLCuAywQIe9iaHY2P914vk5sD9l6TAA=="}],"size":731761},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.3_1686326103870_0.8240515192780564"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-09T15:55:04.137Z","publish_time":1686326104137,"_source_registry_name":"default"},"1.63.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.4","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"e34a0c7fa9d917167b32ab2be223b2a370bb589b","_id":"sass@1.63.4","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-Sx/+weUmK+oiIlI+9sdD0wZHsqpbgQg8wSwSnGBjwb5GwqFhYNwwnI+UWZtLjKvKyFlKkatRK235qQ3mokyPoQ==","shasum":"caf60643321044c61f6a0fe638a07abbd31cfb5d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.4.tgz","fileCount":33,"unpackedSize":4725155,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBzgf7pSbZF9lPpIcOxCkPI8SMR5wVT/kzeagtwU+txcAiEAhsfMHv4hyDdT0uN1i+KHBnrAUIbX+ibyYZvDqUbLugY="}],"size":732514},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.4_1686703789164_0.9441875148990349"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-14T00:49:49.412Z","publish_time":1686703789412,"_source_registry_name":"default"},"1.63.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.5","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"a48ced8ec9c60a61af6a2fc280f909e6f05627cf","_id":"sass@1.63.5","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-Q6c5gs482oezdAp+0fWF9cRisvpy7yfYb64knID0OE8AnMgtkluRPfpGMFjeD4/+M4+6QpJZCU6JRSxbjiktkg==","shasum":"6e1900b12576e3e74a8ab0a9d8607cacbe584ef1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.5.tgz","fileCount":33,"unpackedSize":4724500,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCp318bf1xoHY3sD9MpynIMEmSS96QwUnU64d0+m8JtswIhAMdkcqKc6cGabol1CM2uM+ao4AUyWQDcBKrO0Z0/G4Zn"}],"size":732597},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.5_1687310019726_0.2963886732678833"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-21T01:13:39.991Z","publish_time":1687310019991,"_source_registry_name":"default"},"1.63.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.6","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"658eb70b55e12fefcc920651d3a6ebbd74121436","_id":"sass@1.63.6","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw==","shasum":"481610e612902e0c31c46b46cf2dad66943283ea","tarball":"https://registry.npmmirror.com/sass/-/sass-1.63.6.tgz","fileCount":33,"unpackedSize":4724192,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+x9uDSwYxMdUFska/siMrnrQjjOqW5zNLijcOXp88kwIhAJ5j3mcy9pEu5np7MknucUeDxdc0veSHbCu69QV9qU3l"}],"size":732592},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.63.6_1687385432086_0.95211367559382"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-21T22:10:32.371Z","publish_time":1687385432371,"_source_registry_name":"default"},"1.64.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.64.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"ca2be2ace9ac065f64059f818537aed28826ebea","_id":"sass@1.64.0","_nodeVersion":"18.16.1","_npmVersion":"9.5.1","dist":{"integrity":"sha512-m7YtAGmQta9uANIUJwXesAJMSncqH+3INc8kdVXs6eV6GUC8Qu2IYKQSN8PRLgiQfpca697G94klm2leYMxSHw==","shasum":"9ca8d0acb1a704b86b7f1197dc310f568fb34638","tarball":"https://registry.npmmirror.com/sass/-/sass-1.64.0.tgz","fileCount":34,"unpackedSize":4770712,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFDTmjRbOPaBkdWdn1MRiYZFhZWcW0a0ZFjdTJxjeZR6AiEAkFVGsTclT22lYNj87in7XCQUFVfjPk6QDFtC22fGVhw="}],"size":740340},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.64.0_1689811995212_0.6746125980488618"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-07-20T00:13:15.533Z","publish_time":1689811995533,"_source_registry_name":"default"},"1.64.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.64.1","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"3367abe1612c450d3bdceb6be55cf3bf22bae35c","_id":"sass@1.64.1","_nodeVersion":"18.16.1","_npmVersion":"9.5.1","dist":{"integrity":"sha512-16rRACSOFEE8VN7SCgBu1MpYCyN7urj9At898tyzdXFhC+a+yOX5dXwAR7L8/IdPJ1NB8OYoXmD55DM30B2kEQ==","shasum":"6a46f6d68e0fa5ad90aa59ce025673ddaa8441cf","tarball":"https://registry.npmmirror.com/sass/-/sass-1.64.1.tgz","fileCount":34,"unpackedSize":4770570,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICEYAYtj4SwYXklY6Fn4oNiQEUqOzjoFQHFXTwVSw31IAiBLxWPCpYnil1CbyICNfVD/LxLMWWstNFWKE+vcWXEh8w=="}],"size":740495},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.64.1_1689984626020_0.9582334411046365"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-07-22T00:10:26.300Z","publish_time":1689984626300,"_source_registry_name":"default"},"1.64.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.64.2","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"890fc17dc1ff3c41f4ccb200719154fbb0dee2b9","_id":"sass@1.64.2","_nodeVersion":"18.17.0","_npmVersion":"9.6.7","dist":{"integrity":"sha512-TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg==","shasum":"0d9805ad6acf31c59c3acc725fcfb91b7fcc6909","tarball":"https://registry.npmmirror.com/sass/-/sass-1.64.2.tgz","fileCount":34,"unpackedSize":4770570,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIQCFZhyeU4Ll27NBZ7kX11va3vG2IwH6hSfh5tr3kRBqYAIfS7rbCtWIatueZVo79qdHJ/sbZ7dIwjJQo4Zw2EBkZQ=="}],"size":740495},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.64.2_1690846748483_0.5978081722168007"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-07-31T23:39:08.698Z","publish_time":1690846748698,"_source_registry_name":"default"},"1.65.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.65.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"e4c8cd67e85d6710ce6bc27107882d6ea1856de0","_id":"sass@1.65.0","_nodeVersion":"18.17.0","_npmVersion":"9.6.7","dist":{"integrity":"sha512-FSZ+vXbv4lj5nYEAF9xuMXGaAnu5WDH05hYfvEx6cm9zLNBA3oLBBbg9rx5EwwRaq/9X7xpAhSRllR4CW0uKJw==","shasum":"7ea8b6e621621213aa507378964301869ffd44f1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.65.0.tgz","fileCount":34,"unpackedSize":5077685,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDBBX60lq+jA4G64s25qqCRLPZqBc3CS5ox6KqKCrV2QAiEA6Z1PpCxDg2EZGjmsHTWo0tCiWdVFpWRpP52+8vHVoIY="}],"size":782566},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.65.0_1691617511048_0.3156729784315335"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-09T21:45:11.359Z","publish_time":1691617511359,"_source_registry_name":"default"},"1.65.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.65.1","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"bb244761d301d3ac08adc2177d9982d6e0c0d643","_id":"sass@1.65.1","_nodeVersion":"18.17.0","_npmVersion":"9.6.7","dist":{"integrity":"sha512-9DINwtHmA41SEd36eVPQ9BJKpn7eKDQmUHmpI0y5Zv2Rcorrh0zS+cFrt050hdNbmmCNKTW3hV5mWfuegNRsEA==","shasum":"8f283b0c26335a88246a448d22e1342ba2ea1432","tarball":"https://registry.npmmirror.com/sass/-/sass-1.65.1.tgz","fileCount":34,"unpackedSize":5077685,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpXO9amYHDh4LZMbdSWd8bn53Yu7RIA6a/zsuiXCGwpwIgPG7Fs7WlhW3MvjBp7kX0ioaVhIYjVHwj82ILHJgSHY0="}],"size":782566},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.65.1_1691621928088_0.22941801495720204"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-09T22:58:48.488Z","publish_time":1691621928488,"_source_registry_name":"default"},"1.66.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.66.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"e70cd5a0a0c14cc4169f5ac21d44637b90b61bed","_id":"sass@1.66.0","_nodeVersion":"18.17.0","_npmVersion":"9.6.7","dist":{"integrity":"sha512-C3U+RgpAAlTXULZkWwzfysgbbBBo8IZudNAOJAVBLslFbIaZv4MBPkTqhuvpK4lqgdoFiWhnOGMoV4L1FyOBag==","shasum":"74728eed49b0e490cd729c233e7f1c6ce356e638","tarball":"https://registry.npmmirror.com/sass/-/sass-1.66.0.tgz","fileCount":34,"unpackedSize":4997143,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDS9Z6OXeRyA9d1o1yg/LhocJj98r0vSgpu9CFDRaczmwIhAOvPwB/7CSgxs/fdeHz9kHA5voqb0tJk9O1N+A47K0q1"}],"size":773633},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.66.0_1692300374242_0.9284851303827408"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-17T19:26:14.641Z","publish_time":1692300374641,"_source_registry_name":"default"},"1.66.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.66.1","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"aa53bd0ef38f0f5a5d061d512f65c391d2f0c0a1","_id":"sass@1.66.1","_nodeVersion":"18.17.0","_npmVersion":"9.6.7","dist":{"integrity":"sha512-50c+zTsZOJVgFfTgwwEzkjA3/QACgdNsKueWPyAR0mRINIvLAStVQBbPg14iuqEQ74NPDbXzJARJ/O4SI1zftA==","shasum":"04b51c4671e4650aa393740e66a4e58b44d055b1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.66.1.tgz","fileCount":34,"unpackedSize":5003651,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpa4K538uad4cm0YuQzlQX5Hc+5n5OgMTwn5vWu3XtWwIgBkdfdKkZ8VTQfoyEbOAwSOFtH0NVEFyKgoy/4ZQl2jw="}],"size":774481},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.66.1_1692396031751_0.4775954538668825"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-18T22:00:32.157Z","publish_time":1692396032157,"_source_registry_name":"default"},"1.67.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.67.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"5c31d1f245c274ff90eded7d7ae4437c664798b9","_id":"sass@1.67.0","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-SVrO9ZeX/QQyEGtuZYCVxoeAL5vGlYjJ9p4i4HFuekWl8y/LtJ7tJc10Z+ck1c8xOuoBm2MYzcLfTAffD0pl/A==","shasum":"fed84d74b9cd708db603b1380d6dc1f71bb24f6f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.67.0.tgz","fileCount":34,"unpackedSize":5106321,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGu5GU1oEK3ZxB9er+dbtH5UiOj7l2TnAqYYDv/uSs6aAiEA7QcWed9NG0Oh9DSLAwVaGM3cmh8D9pD/oKPivNOeNqI="}],"size":787741},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.67.0_1694652388590_0.2874571152512648"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-14T00:46:28.967Z","publish_time":1694652388967,"_source_registry_name":"default"},"1.68.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.68.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"de618fa7bd74cc648f3ee62358eed3e237d4644f","_id":"sass@1.68.0","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-Lmj9lM/fef0nQswm1J2HJcEsBUba4wgNx2fea6yJHODREoMFnwRpZydBnX/RjyXw2REIwdkbqE4hrTo4qfDBUA==","shasum":"0034b0cc9a50248b7d1702ac166fd25990023669","tarball":"https://registry.npmmirror.com/sass/-/sass-1.68.0.tgz","fileCount":34,"unpackedSize":5117272,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtvfQDuup1Tk+Q6rmyM7z/GBlldFzuXp7kdj28a2KuRgIgHevm8cehYWDikiD1W/EIMYTrFn22om7QSVBflw0/Tm0="}],"size":790194},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.68.0_1695258327780_0.527041768669573"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-21T01:05:28.045Z","publish_time":1695258328045,"_source_registry_name":"default"},"1.69.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.0","gitHead":"8e6a26cc62a61bb0b757d34e8c0c2f2bb706ab16","_nodeVersion":"18.18.0","_npmVersion":"9.8.1","dist":{"integrity":"sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ==","shasum":"5195075371c239ed556280cf2f5944d234f42679","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.0.tgz","fileCount":35,"unpackedSize":5160036,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDw44OJqgO/SG4UsdEwOJjVb/5sfEGNnWmbEvpxv8iANAiApJwOgEE913deC5xxTQVP0023MI10MrjoJJMwDLckEpw=="}],"size":794969},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.0_1696546089564_0.6773252936877043"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-05T22:48:09.876Z","publish_time":1696546089876,"_source_registry_name":"default"},"1.69.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.1","gitHead":"887c5113dda5a9c1dabdc8f444eb710bae56b9d3","_nodeVersion":"18.18.0","_npmVersion":"9.8.1","dist":{"integrity":"sha512-nc969GvTVz38oqKgYYVHM/Iq7Yl33IILy5uqaH2CWSiSUmRCvw+UR7tA3845Sp4BD5ykCUimvrT3k1EjTwpVUA==","shasum":"659b3b04452245dcf82f731684831e990ddb0c89","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.1.tgz","fileCount":35,"unpackedSize":5160036,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEYn8pw5f3l7lfv0uWvTR7mLjrjmSO749PZXqpbXtNiAIhALICZWwckBmgLXxqrRN3We8KrBbp/WtTVNkBNJA9fWil"}],"size":794970},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.1_1696895516741_0.2693483081476218"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-09T23:51:56.977Z","publish_time":1696895516977,"_source_registry_name":"default"},"1.69.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.2","gitHead":"c62fe6a520b277a7faafa327f2ec5c78edf06827","_nodeVersion":"18.18.0","_npmVersion":"9.8.1","dist":{"integrity":"sha512-48lDtG/9OuSQZ9oNmJMUXI2QdCakAWrAGjpX/Fy6j4Og8dEAyE598x5GqCqnHkwV7+I5w8DJpqjm581q5HNh3w==","shasum":"8aeaeb6c1dcdbeaa26bbfeddece67c9fcd4b1d93","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.2.tgz","fileCount":35,"unpackedSize":5162279,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdeiXRXudUnSH1YDGul441czQtqRVDacmVBRF1fItRBgIhALwq7kOPMdwDbU4WyAM1gSUV2mWVA+VZcOG5vB9L0M7S"}],"size":795346},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.2_1696963665277_0.6607789459958382"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-10T18:47:45.480Z","publish_time":1696963665480,"_source_registry_name":"default"},"1.69.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.3","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.3","gitHead":"44dceea0bd57e8f78ac74dcb80f67208a88eecc7","_nodeVersion":"18.18.0","_npmVersion":"9.8.1","dist":{"integrity":"sha512-X99+a2iGdXkdWn1akFPs0ZmelUzyAQfvqYc2P/MPTrJRuIRoTffGzT9W9nFqG00S+c8hXzVmgxhUuHFdrwxkhQ==","shasum":"f8a0c488697e6419519834a13335e7b65a609c11","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.3.tgz","fileCount":35,"unpackedSize":5163173,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsc2bLe751TkgAPo77BjbesPYGM6XOlfMlp3v1nazQrwIgJRk5FUSFg5FvjHQUoA9Eqn3BBkVD5ylZZpgaHkhs5C8="}],"size":795570},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.3_1697069162454_0.5414876319659803"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-12T00:06:02.812Z","publish_time":1697069162812,"_source_registry_name":"default"},"1.69.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.4","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.4","gitHead":"f40c1fc63bcd0b778f31b99363952c7c9d2e4037","_nodeVersion":"18.18.0","_npmVersion":"9.8.1","dist":{"integrity":"sha512-+qEreVhqAy8o++aQfCJwp0sklr2xyEzkm9Pp/Igu9wNPoe7EZEQ8X/MBvvXggI2ql607cxKg/RKOwDj6pp2XDA==","shasum":"10c735f55e3ea0b7742c6efa940bce30e07fbca2","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.4.tgz","fileCount":35,"unpackedSize":5163173,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtjghs7KL96WLO9DZhGw8b4CH2iycVkW6IxccqKIshUAIhAPeKhI6nKU+RTDbUyR/FM1KzJEMTrX1YW711vUAGRasM"}],"size":795572},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.4_1697578966138_0.7811203992717008"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-17T21:42:46.346Z","publish_time":1697578966346,"_source_registry_name":"default"},"1.69.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.5","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.5","gitHead":"89dac15c030caf728f4760bfdea3f86c814338ed","_nodeVersion":"18.18.2","_npmVersion":"9.8.1","dist":{"integrity":"sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==","shasum":"23e18d1c757a35f2e52cc81871060b9ad653dfde","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.5.tgz","fileCount":35,"unpackedSize":5163358,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIERsLenGJ6wOvu9NsMW24u9ehX1eblO8Ps8NEwSoRjHcAiBiitVffY/Q0R7t3nYniLD/cV6egjhG7qHSvrCnPWRfIg=="}],"size":795563},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.5_1698281757598_0.634191699560968"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-26T00:55:57.857Z","publish_time":1698281757857,"_source_registry_name":"default"},"1.69.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.6","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.6","gitHead":"f3c7be5affba170655fd5190a2bf9f0c53c99f08","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-qbRr3k9JGHWXCvZU77SD2OTwUlC+gNT+61JOLcmLm+XqH4h/5D+p4IIsxvpkB89S9AwJOyb5+rWNpIucaFxSFQ==","shasum":"88ae1f93facc46d2da9b0bdd652d65068bcfa397","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.6.tgz","fileCount":35,"unpackedSize":5176026,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICLr7yefZQoAZvXTUHP3nfOBulLkGq+kF1ZR7aMIoDH3AiEA/FpeqBtz82TXbEWl8yXLzjK65YgoXiiVxxBp1NppNqU="}],"size":798969},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.6_1703805979713_0.7388584113152747"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-28T23:26:19.921Z","publish_time":1703805979921,"_source_registry_name":"default"},"1.69.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.69.7","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.69.7","gitHead":"006baa5642e6c0ff8bb41da8f914359e06fc04d4","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-rzj2soDeZ8wtE2egyLXgOOHQvaC2iosZrkF6v3EUG+tBwEvhqUCzm0VP3k9gHF9LXbSrRhT5SksoI56Iw8NPnQ==","shasum":"6e7e1c8f51e8162faec3e9619babc7da780af3b7","tarball":"https://registry.npmmirror.com/sass/-/sass-1.69.7.tgz","fileCount":35,"unpackedSize":5176026,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICL/m8R81DKbzrpToGRvMjFHPU6UWHwsEJHUhE/qqZQ9AiARcwXG/SqWLKEfZ0PVnLB9xXIE4rMSZEJe73a1imMoLg=="}],"size":798969},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.69.7_1704233619886_0.0905674646433583"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-01-02T22:13:40.130Z","publish_time":1704233620130,"_source_registry_name":"default"},"1.70.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.70.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.70.0","gitHead":"076414d3e793ab907591b34fc8a3f694529277d4","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==","shasum":"761197419d97b5358cb25f9dd38c176a8a270a75","tarball":"https://registry.npmmirror.com/sass/-/sass-1.70.0.tgz","fileCount":35,"unpackedSize":5197661,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICq3zYX45vmbvmerhv9dVeNcwe8jFjLI4h/swN3ivTwGAiEA5AszNJHakt2VfbaBupAMyzNQ7bxHGEmn9xqDrbjSamk="}],"size":801941},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.70.0_1705547152401_0.6129927456993576"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-01-18T03:05:52.646Z","publish_time":1705547152646,"_source_registry_name":"default"},"1.71.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.71.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.71.0","gitHead":"3e6721e79f049dd01880542667380640c2d1eeae","_nodeVersion":"20.11.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-HKKIKf49Vkxlrav3F/w6qRuPcmImGVbIXJ2I3Kg0VMA+3Bav+8yE9G5XmP5lMj6nl4OlqbPftGAscNaNu28b8w==","shasum":"b3085759b9b2ab503a977aecb7e91153bf941117","tarball":"https://registry.npmmirror.com/sass/-/sass-1.71.0.tgz","fileCount":35,"unpackedSize":5164964,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHZjkHCA2q4He/CngndrCmwyUMMWmLHVVDZ7rCJnAHSAAiEArrUE0LZlayldjRpVdxVCRcPHJ9pHi2x94SkcungjUNY="}],"size":803877},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.71.0_1708048051725_0.9912329234603297"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-16T01:47:32.044Z","publish_time":1708048052044,"_source_registry_name":"default"},"1.71.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.71.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.71.1","gitHead":"1b4d703ad369a2176f0bc0bd4a37502e7acd9c1d","_nodeVersion":"20.11.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-wovtnV2PxzteLlfNzbgm1tFXPLoZILYAMJtvoXXkD7/+1uP41eKkIt1ypWq5/q2uT94qHjXehEYfmjKOvjL9sg==","shasum":"dfb09c63ce63f89353777bbd4a88c0a38386ee54","tarball":"https://registry.npmmirror.com/sass/-/sass-1.71.1.tgz","fileCount":35,"unpackedSize":5167875,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDyZ5E9cLbDXqefqnfHHVloZ9jP5KtcJPDdLBW8T7K4ZwIgKwgl7jS0XJA/ml0xzO0/rWsGin2a/ToLT887HL4RUEY="}],"size":804467},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.71.1_1708480402054_0.9663478955007101"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-21T01:53:22.294Z","publish_time":1708480402294,"_source_registry_name":"default"},"1.72.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.72.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.72.0","gitHead":"ce16b35ca1f4d6cbc3528c54b58647de939f2a4b","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-Gpczt3WA56Ly0Mn8Sl21Vj94s1axi9hDIzDFn9Ph9x3C3p4nNyvsqJoQyVXKou6cBlfFWEgRW4rT8Tb4i3XnVA==","shasum":"5b9978943fcfb32b25a6a5acb102fc9dabbbf41c","tarball":"https://registry.npmmirror.com/sass/-/sass-1.72.0.tgz","fileCount":35,"unpackedSize":5170063,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRVIp88ilv64yhO2HeXEOG5sratKi9IfUGgTXzd180PQIhAMZKbB104MO3y0dPkl34S459enNMg/Wv+Dlbb1Uh69rg"}],"size":804367},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.72.0_1710363797114_0.8532466369512901"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-13T21:03:17.354Z","publish_time":1710363797354,"_source_registry_name":"default"},"1.74.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.74.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.74.1","gitHead":"1137797f1731c23e2c7f317a27b40319d57d09b5","_nodeVersion":"20.12.0","_npmVersion":"10.5.0","dist":{"integrity":"sha512-w0Z9p/rWZWelb88ISOLyvqTWGmtmu2QJICqDBGyNnfG4OUnPX9BBjjYIXUpXCMOOg5MQWNpqzt876la1fsTvUA==","shasum":"686fc227d3707dd25cb2925e1db8e4562be29319","tarball":"https://registry.npmmirror.com/sass/-/sass-1.74.1.tgz","fileCount":36,"unpackedSize":5205784,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC436n3oIKd6+Hax5juWqglU0GF4snZQOfJawJcqMLPZQIgEpQDbAj30C4lGDTAvYgSVwVS0fEr3DhcLrqXdoVH6bY="}],"size":811128},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.74.1_1712192568592_0.4211876568992097"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-04-04T01:02:48.922Z","publish_time":1712192568922,"_source_registry_name":"default"},"1.75.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.75.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.75.0","gitHead":"821b98e26cc153a2806aff79033ce6b52249ee87","_nodeVersion":"20.12.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-ShMYi3WkrDWxExyxSZPst4/okE9ts46xZmJDSawJQrnte7M1V9fScVB+uNXOVKRBt0PggHOwoZcn8mYX4trnBw==","shasum":"91bbe87fb02dfcc34e052ddd6ab80f60d392be6c","tarball":"https://registry.npmmirror.com/sass/-/sass-1.75.0.tgz","fileCount":36,"unpackedSize":5208245,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOFocfJsZMidqjfVZYAcRQrqyzJYJp6xEfTleXUWRKhwIhAOxwjpK0PLfrkj3LscU65eQD1gPmjESA2xOmIQO+VxQJ"}],"size":811786},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.75.0_1712876747159_0.6563477525267429"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-04-11T23:05:47.435Z","publish_time":1712876747435,"_source_registry_name":"default"},"1.76.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.76.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.76.0","gitHead":"264b2d58b056b0fa65dcbcec1b18cf8f3567bbe0","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==","shasum":"fe15909500735ac154f0dc7386d656b62b03987d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.76.0.tgz","fileCount":36,"unpackedSize":5226194,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCTcM0oRm/mFjj7Ps6XDkifHG0uziB0O/lT0lbAIeALqwIhAIEXvweyy2XgINku8SHU+7yWVHcfeefn6kQwaWIIu8GA"}],"size":814508},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.76.0_1714512880150_0.7426439651329706"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-04-30T21:34:40.376Z","publish_time":1714512880376,"_source_registry_name":"default"},"1.77.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.0","gitHead":"85f39d5ad7056e0afeab4ad649fc34eaed8c89a5","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-eGj4HNfXqBWtSnvItNkn7B6icqH14i3CiCGbzMKs3BAPTq62pp9NBYsBgyN4cA+qssqo9r26lW4JSvlaUUWbgw==","shasum":"e736c69aff9fae4a4e6dae60a979eee9c942f321","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.0.tgz","fileCount":36,"unpackedSize":5222149,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCl/2PFdbfmTOy7Q7sOfar8Dux9n3E03zQOYFc+iGCZLgIhAMldwXPumuTlOewlHDtdutHTp3at6ROe0rzeSnqjH8Yo"}],"size":814177},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.0_1715043823775_0.5114497362072807"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-07T01:03:43.974Z","publish_time":1715043823974,"_source_registry_name":"default"},"1.77.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.1","gitHead":"372f15cc24973314c08c77b9e29b31f9f801faf3","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-OMEyfirt9XEfyvocduUIOlUSkWOXS/LAt6oblR/ISXCTukyavjex+zQNm51pPCOiFKY1QpWvEH1EeCkgyV3I6w==","shasum":"018cdfb206afd14724030c02e9fefd8f30a76cd0","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.1.tgz","fileCount":36,"unpackedSize":5222447,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGydlfDBkPz2ISBS2mVZ9/j6AhBIZ/JXc6qZXZWhs/MEAiEA2BYWR8waWx0rCHWMS67DhRs86tR7qdOwdw7OGZgNz0c="}],"size":814253},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.1_1715382122231_0.17969207397962017"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-10T23:02:02.551Z","publish_time":1715382122551,"_source_registry_name":"default"},"1.77.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.2","gitHead":"5121eb195dea513a0c59c5d9874bebeccf90069c","_nodeVersion":"20.13.1","_npmVersion":"10.5.2","dist":{"integrity":"sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==","shasum":"18d4ed2eefc260cdc8099c5439ec1303fd5863aa","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.2.tgz","fileCount":36,"unpackedSize":5220091,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHshIIY7pgdDIi0xvwFV82y0TGcJ8IPIBawe5BdEtjoXAiA/ilmmiAGGiZ3JrXFnMkRkpnvUpya9jMhVPNxuJtAFzA=="}],"size":815693},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.2_1715897887647_0.7084929017854036"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-16T22:18:08.178Z","publish_time":1715897888178,"_source_registry_name":"default"},"1.77.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.3","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.3","gitHead":"1073c7b4121dc292887a3be60fbbdde3af0413f5","_nodeVersion":"20.13.1","_npmVersion":"10.5.2","dist":{"integrity":"sha512-WJHo+jmFp0dwRuymPmIovuxHaBntcCyja5hCB0yYY9wWrViEp4kF5Cdai98P72v6FzroPuABqu+ddLMbQWmwzA==","shasum":"4e93f6197786c05cab2c795c3f0f243470d94836","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.3.tgz","fileCount":36,"unpackedSize":5220163,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQ+hJKXtus0e3JaxRt3G9CU5pOhVINvp4GME9QnntTMAIhAKokv9hy5aazH5WFt5LVTebZt3+ijoVo2kJGmAnruGJy"}],"size":815773},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.3_1717019539723_0.05850388148419827"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-29T21:52:19.971Z","publish_time":1717019539971,"_source_registry_name":"default"},"1.77.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.4","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.4","gitHead":"21eeb4d9428d1808487223a379c036a019f98487","_nodeVersion":"20.13.1","_npmVersion":"10.5.2","dist":{"integrity":"sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw==","shasum":"92059c7bfc56b827c56eb116778d157ec017a5cd","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.4.tgz","fileCount":36,"unpackedSize":5220163,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBfjvccgGrqsXvE8sOFI88oK3idSM+HJ3WLV3jPs1WB1AiEAqDctS6B3Y1nbAf9rPKm3dfdl8bjJQihiUeQAzcLJ9CY="}],"size":815773},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.4_1717112264092_0.6886739174634007"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-30T23:37:44.289Z","publish_time":1717112264289,"_source_registry_name":"default"},"1.77.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.5","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.5","gitHead":"a1b372eaf1188e34e1bda2628db45ca17fd621c6","_nodeVersion":"20.14.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-oDfX1mukIlxacPdQqNb6mV2tVCrnE+P3nVYioy72V5tlk56CPNcO4TCuFcaCRKKfJ1M3lH95CleRS+dVKL2qMg==","shasum":"5f9009820297521356e962c0bed13ee36710edfe","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.5.tgz","fileCount":36,"unpackedSize":5224292,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGrUJ1YRgc5O92DexWmhyTcb5syj7R7fl6+JG9xDQJYwIhAKwnioRAIpnOtqt3poWHeJIekE0sEUTQxy5GqfP1JceQ"}],"size":816308},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.5_1718149880641_0.7286098044397857"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-06-11T23:51:20.861Z","publish_time":1718149880861,"_source_registry_name":"default"},"1.77.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.6","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.6","gitHead":"7aae1e67ed3322c1caab1c8ebb2f5c28ff0b2e0b","_nodeVersion":"20.14.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==","shasum":"898845c1348078c2e6d1b64f9ee06b3f8bd489e4","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.6.tgz","fileCount":36,"unpackedSize":5224542,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuWSp7YG5NI3ya4SXm/Uyy5F+4jRaIi7vsfSKa6zlFqAIgO47mDuWEyeDrzeO/WbHARJ0/ki+guSyQ6rtunsNNzvM="}],"size":816364},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.6_1718657668344_0.36770641189186537"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-06-17T20:54:28.583Z","publish_time":1718657668583,"_source_registry_name":"default"},"1.77.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.7","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.7","gitHead":"7203d6538981df6422c686198da2497909fa11b5","_nodeVersion":"20.15.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-9ywH75cO+rLjbrZ6en3Gp8qAMwPGBapFtlsMJoDTkcMU/bSe5a6cjKVUn5Jr4Gzg5GbP3HE8cm+02pLCgcoMow==","shasum":"ef3520edc8f59da089f25891d8a6bebf93668ee0","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.7.tgz","fileCount":36,"unpackedSize":5234188,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD6uCNwkPHgqWtCC/jQcTR7Ltzs4cLJeH/JqwBAtQb3QwIgacPW9IWnpL9zbbZdNMExJQn7X2++YC+sJOWL2Ygiqxw="}],"size":817880},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.7_1720562006395_0.984310048500888"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-07-09T21:53:26.607Z","publish_time":1720562006607,"_source_registry_name":"default"},"1.77.8":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.77.8","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.77.8","gitHead":"be9c3ac6fa547c3f2711f445b8b15932ddb5e7e4","_nodeVersion":"20.15.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==","shasum":"9f18b449ea401759ef7ec1752a16373e296b52bd","tarball":"https://registry.npmmirror.com/sass/-/sass-1.77.8.tgz","fileCount":36,"unpackedSize":5234188,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFwbDMHpH7bygzgdj3rGvl7cYpM/Py807jRAYs0zWJV8AiEAkPPk2Ocs40F8P6zBIYcD8d60PRqvMVlpE7ZqZh80QU0="}],"size":817880},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.77.8_1720727940271_0.4887192624443313"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-07-11T19:59:00.512Z","publish_time":1720727940512,"_source_registry_name":"default"},"1.78.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.78.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.78.0","gitHead":"90a70ef168fa79a807d31386fb9aea037be1a284","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ==","shasum":"cef369b2f9dc21ea1d2cf22c979f52365da60841","tarball":"https://registry.npmmirror.com/sass/-/sass-1.78.0.tgz","fileCount":36,"unpackedSize":5250979,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWjIjJw9k/J89hfsqzmPSiD67sHoaSWYMhqcS9hvSwtQIhAKuBuzcsVl/fUj3qvRQqWgTSiCSD1vMCB30tsh0MeQ/L"}],"size":821553},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.78.0_1725404046872_0.9819203365601998"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-03T22:54:07.113Z","publish_time":1725404047113,"_source_registry_name":"default"},"1.79.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.0","gitHead":"d740d02e10f402f225b77781e4d946dce4c95a10","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-9Q1xXsm9XT54yYkmQAoH3vCMEIavwWWQGJ3cZ0WJAgecR4edDDTdtiPyEeFDNWO/hLCy3qZKvwjK4ulPR5Yzow==","shasum":"4a58442b6c094ac57a0805519bff6133d70590c9","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.0.tgz","fileCount":36,"unpackedSize":5610546,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgwyXDo2zVwUaOZ8LKGfXBW0kMan4XrjQL6ZQ8Es5h+AIhANDFUJO2we+TAjIPIr9QKgWCNnLOeT0AN0p39ctv/8yq"}],"size":886211},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.0_1726614717791_0.9717104323831955"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-17T23:11:58.130Z","publish_time":1726614718130,"_source_registry_name":"default"},"1.79.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.1","gitHead":"5fa04d3dbcdbf0911506d11e1847ac64f2fc9f7d","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-+mA7svoNKeL0DiJqZGeR/ZGUu8he4I8o3jyUcOFyo4eBJrwNgIMmAEwCMo/N2Y3wdjOBcRzoNxZIOtrtMX8EXg==","shasum":"0c572e8f09cc4095c27077567f78dbb9b3dceeb2","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.1.tgz","fileCount":36,"unpackedSize":5610546,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH7DrjnSFxaZ2WuF68DgcLk6NcMDsJP8FluYki4pt/9KAiAZJ+1dEat5DdOABNL4MXwNdHN+WxPBYQfeyCnaHWOl/w=="}],"size":886212},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.1_1726618816321_0.6262207001890165"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-18T00:20:16.596Z","publish_time":1726618816596,"_source_registry_name":"default"},"1.79.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.2","gitHead":"fa4827f4a42a632821211be07e45b6ac7304189b","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-YmT1aoF1MwHsZEu/eXhbAJNsPGAhNP4UixW9ckEwWCvPcVdVF0/C104OGDVEqtoctKq0N+wM20O/rj+sSPsWeg==","shasum":"e0ee2877eaadaf17b4086fd15783e625bb77447e","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.2.tgz","fileCount":36,"unpackedSize":5611362,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDn96YtZ+t9euFjmfu5M7g14UMmKQ7wFhTJeBP2v7w1OwIhAPowHOUBtKKR+J0vypd7Px42u8tepK5r1OEm3pUnriao"}],"size":886324},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.2_1726786657868_0.9533355228296114"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-19T22:57:38.180Z","publish_time":1726786658180,"_source_registry_name":"default"},"1.79.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.3","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.3","gitHead":"b85ef9c89f23305617dc9f63dad64c874262d63c","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==","shasum":"7811b000eb68195fe51dea89177e73e7ef7f546f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.3.tgz","fileCount":36,"unpackedSize":5611365,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBBpoZCa7bFybxXjWffjUgNZogI4koaMZrh8vOrkBuF8AiBGWa672s/8mnmZqqNeCiFfkxWLFefJUtvPW3TbtRcUSg=="}],"size":886332},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.3_1726866470445_0.16541342601322384"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-20T21:07:50.729Z","publish_time":1726866470729,"_source_registry_name":"default"},"1.79.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.4","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.4","gitHead":"f84e8678f05c72b44f1c6849359cca9d60cde69c","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-K0QDSNPXgyqO4GZq2HO5Q70TLxTH6cIT59RdoCHMivrC8rqzaTw5ab9prjz9KUN1El4FLXrBXJhik61JR4HcGg==","shasum":"f9c45af35fbeb53d2c386850ec842098d9935267","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.4.tgz","fileCount":36,"unpackedSize":5613804,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGNqBRFaajeujhi8f8KUfpuv881R/0wdVs2a57brAcvnAiEA3WFo/rXOtK7zeKtWhdLhhykt9c0WwKXp8338ETtdev0="}],"size":886830},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.4_1727493093437_0.9044406982444697"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-28T03:11:33.759Z","publish_time":1727493093759,"_source_registry_name":"default"},"1.79.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.5","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.5","gitHead":"7290399fb175c491be7bfb568253cbe0fc6061fc","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-W1h5kp6bdhqFh2tk3DsI771MoEJjvrSY/2ihJRJS4pjIyfJCw0nTsxqhnrUzaLMOJjFchj8rOvraI/YUVjtx5g==","shasum":"646c627601cd5f84c64f7b1485b9292a313efae4","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.5.tgz","fileCount":36,"unpackedSize":5648117,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChbxmHZFciZiysJNRHbFybDcHhFhrH8DlW3jI99B74rgIhAIwot5kqwYPnUq2alpwtj81IHtKcY1PTTNX8Whwf5AmS"}],"size":892596},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.5_1728606479323_0.6725338799086673"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-11T00:27:59.831Z","publish_time":1728606479831,"_source_registry_name":"default"},"1.79.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.79.6","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.79.6","gitHead":"f7b2e63768ec70ee0903a1a6e7fdac4fbe90fa03","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-PVVjeeiUGx6Nj4PtEE/ecwu8ltwfPKzHxbbVmmLj4l1FYHhOyfA0scuVF8sVaa+b+VY4z7BVKjKq0cPUQdUU3g==","shasum":"35a53c3dbaf66a25f132979f47346521e4ef77cb","tarball":"https://registry.npmmirror.com/sass/-/sass-1.79.6.tgz","fileCount":36,"unpackedSize":5651174,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBPsPgDj/keC/hHZMNGsMpNb6yWdZ2XQb6RRlRI8OFhaAiEAlmLxIU87KcA/NsU+Vy1qGnyChSbCjE1HUjCNTJIt9Bc="}],"size":893253},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.79.6_1729119616210_0.6332335086735454"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-16T23:00:16.650Z","publish_time":1729119616650,"_source_registry_name":"default"},"1.80.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.0","gitHead":"ab19f94b144ca51c62416e1a6aca6c9a90dcbd23","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-9Yzb4qTUJ//eTKZQzxAtNsezOvfQlB+7hAJjj5wFqKZb2c2xboeCYnKh2Gzyp6sdyiNe9FUgn8xgc1ffXHmM6g==","shasum":"58430ab879c46f5e1992a5d114f1dd7163c62826","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.0.tgz","fileCount":36,"unpackedSize":5649965,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDGSlm9Zh9RfLtLDn0Nm5vdWXt3jGGu+igSOBPUJOR/bAiAc/1E3PZY7qT10N0a3lL+hUiCvo8vhJxA5tghA5JX1tg=="}],"size":893024},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.0_1729124323293_0.3495752606037108"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-17T00:18:43.656Z","publish_time":1729124323656,"_source_registry_name":"default"},"1.80.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.1","gitHead":"e6391d368458235ad19f8b674cb15a405f26a2ae","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-9lBwDZ7j3y/1DKj5Ec249EVGo5CVpwnzIyIj+cqlCjKkApLnzsJ/l9SnV4YnORvW9dQwQN+gQvh/mFZ8CnDs7Q==","shasum":"5b26cde787917e845f25585b741c0caa653d0154","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.1.tgz","fileCount":36,"unpackedSize":5649961,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEHW4DqZ2RHYjcklekY1gWMrOFdVc1m2qHqCZtAX1i7QAiEAvxKQwZVXLaMpEuEkVPG8VGoL3mM2IIrf5RjGaSNZpUI="}],"size":893014},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.1_1729134683312_0.002699182296447944"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-17T03:11:23.556Z","publish_time":1729134683556,"_source_registry_name":"default"},"1.80.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.2","gitHead":"2ad213305b949ae5aea33574d4b90905708094c3","_nodeVersion":"20.17.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-9wXY8cGBlUmoUoT+vwOZOFCiS+naiWVjqlreN9ar9PudXbGwlMTFwCR5K9kB4dFumJ6ib98wZyAObJKsWf1nAA==","shasum":"9d13d85a4f81bb17e09d1dc3e1c0944f7fd7315e","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.2.tgz","fileCount":36,"unpackedSize":5650554,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIjAFjbW2VHZUwGeR1ZfcmH5Lzcnt63rs4Y9jhcpQBLgIhAJuRlCUIMrNzSkJ5qbX0nU3dYumdGZO9MojnCFeWYNpo"}],"size":893078},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.2_1729198011146_0.9649707913877397"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-17T20:46:51.433Z","publish_time":1729198011433,"_source_registry_name":"default"},"1.80.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.3","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.3","gitHead":"76cfd6b331be205497935a94e922b2eac26b5394","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-ptDWyVmDMVielpz/oWy3YP3nfs7LpJTHIJZboMVs8GEC9eUmtZTZhMHlTW98wY4aEorDfjN38+Wr/XjskFWcfA==","shasum":"3f63dd527647d2b3de35f36acb971bda80517423","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.3.tgz","fileCount":36,"unpackedSize":5650311,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHqNQyXojJioYq38j9r8DXljjDMF8ikUR5gwvHTsSecwAiBtkMFxHwdn+Jxrh7zmRQJa+bb+bYTA8a4TvC33ygU2Rg=="}],"size":892932},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.3_1729295051766_0.4006706651505405"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-18T23:44:12.093Z","publish_time":1729295052093,"_source_registry_name":"default"},"1.80.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.4","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.4","gitHead":"c907bcb57281b51efbd7b0957ac8a4d0bead8818","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w==","shasum":"bc0418fd796cad2f1a1309d8b4d7fe44b7027de0","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.4.tgz","fileCount":36,"unpackedSize":5656068,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGsCWZ0N6ExzYUAcnF0VMxrtqM47HGwOYDiLmJWDjveoAiEAncutToAuzeWmCke6WmnCkfMZ1eKs6jm0zuHjh3aNFd8="}],"size":894117},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.4_1729723377496_0.9254998958617875"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-23T22:42:57.897Z","publish_time":1729723377897,"_source_registry_name":"default"},"1.80.5":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"@parcel/watcher":"^2.4.1","chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.5","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.5","gitHead":"d14ea754e96861c9d7cb7f2b4bc75a40364eaf31","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-TQd2aoQl/+zsxRMEDSxVdpPIqeq9UFc6pr7PzkugiTx3VYCFPUaa3P4RrBQsqok4PO200Vkz0vXQBNlg7W907g==","shasum":"0ba965223d44df22497f2966b498cf5c453fae8f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.5.tgz","fileCount":36,"unpackedSize":5656051,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGoj/dabhWWL7+XFwhuewI6VV1WjGqmYF6Xao+Qk+nfgIhALl8BDU/iFpenwHJOkTwhxf1Dqlk6WKc5UHuGnUrRMw3"}],"size":894138},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.5_1730239345005_0.270370374132455"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-29T22:02:25.395Z","publish_time":1730239345395,"_source_registry_name":"default"},"1.80.6":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.6","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.6","gitHead":"39d372615442ded14e6c17ef5440372bc647d70f","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg==","shasum":"5d0aa55763984effe41e40019c9571ab73e6851f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.6.tgz","fileCount":36,"unpackedSize":5655176,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAUWjsVDnkD6YKOlS8WnZCHUXKYNashiRqe1INAuCnsCAiEA9mcCXgc82PwGU9OWmTgNmSGpMIEk/M5euXZarhmBiLM="}],"size":894117},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.6_1730502975613_0.015482633794736245"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-01T23:16:15.961Z","publish_time":1730502975961,"_source_registry_name":"default"},"1.80.7":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.80.7","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.80.7","gitHead":"d1fefb6239b18cb27c8ec5bd88f043c5062f1b94","_nodeVersion":"22.10.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-MVWvN0u5meytrSjsU7AWsbhoXi1sc58zADXFllfZzbsBT1GHjjar6JwBINYPRrkx/zqnQ6uqbQuHgE95O+C+eQ==","shasum":"7569334c39220f8ca62fcea38dce60f809ba345c","tarball":"https://registry.npmmirror.com/sass/-/sass-1.80.7.tgz","fileCount":36,"unpackedSize":5655176,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiGSXY9g+5gECUU6aCsxXc6PZFb9HCVRqy53gR5/wy5QIgIiFQrAr9SEpsv+vSMfWAT4I33Fft2CepNDje2/Ge76s="}],"size":894125},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.80.7_1731453751202_0.25994792771506736"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-12T23:22:31.612Z","publish_time":1731453751612,"_source_registry_name":"default"},"1.81.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.81.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.81.0","gitHead":"57a6853e4301148754dc61b201aec166667055b8","_nodeVersion":"22.10.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==","shasum":"a9010c0599867909dfdbad057e4a6fbdd5eec941","tarball":"https://registry.npmmirror.com/sass/-/sass-1.81.0.tgz","fileCount":36,"unpackedSize":5662859,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICu0x6El5U0LlRyLT5/tQNfO/+E903GZllhe9PfGbks7AiA1/Tz6o1R+pzJK9bMo3JKgTSQNUGjCC8v3MNotTBemTw=="}],"size":895247},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.81.0_1731634256283_0.5132356373948979"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-15T01:30:56.500Z","publish_time":1731634256500,"_source_registry_name":"default"},"1.81.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.81.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.81.1","gitHead":"516364466686f5e199bc84144b82da55bf5ed911","_nodeVersion":"22.11.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-VNLgf4FC5yFyKwAumAAwwNh8X4SevlVREq3Y8aDZIkm0lI/zO1feycMXQ4hn+eB6FVhRbleSQ1Yb/q8juSldTA==","shasum":"fae569d12533e5d3ca83641f2c1109a078fc53cb","tarball":"https://registry.npmmirror.com/sass/-/sass-1.81.1.tgz","fileCount":36,"unpackedSize":5660767,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHZby0J462k4iitdgnfd/QAHBSHXe3BjW4HCnpyiseDkAiBK5Gd2w2QdKfPvhKweGhT2ESHHY7Lq2Z7DKKSzRuOrxA=="}],"size":895429},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.81.1_1733189112968_0.036040961064157884"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-03T01:25:13.208Z","publish_time":1733189113208,"_source_registry_name":"default"},"1.82.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.82.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.82.0","gitHead":"5740eb541faaf97c70a451924809b9f212f2920e","_nodeVersion":"22.11.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==","shasum":"30da277af3d0fa6042e9ceabd0d984ed6d07df70","tarball":"https://registry.npmmirror.com/sass/-/sass-1.82.0.tgz","fileCount":36,"unpackedSize":5658322,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBAjxaxdZVAmxPYJHyoT0QsVLFosw01QnenoakACnp3lAiEAxY5KXrtmZkSLEtBzHowntCSdJWbiMDxKSQwsn5DKLc8="}],"size":895716},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/sass_1.82.0_1733267211976_0.8530576813963731"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-03T23:06:52.291Z","publish_time":1733267212291,"_source_registry_name":"default"},"1.83.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.83.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.83.0","gitHead":"f38dbb00db942592c64a259bdfd9f961316597f6","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==","shasum":"e36842c0b88a94ed336fd16249b878a0541d536f","tarball":"https://registry.npmmirror.com/sass/-/sass-1.83.0.tgz","fileCount":36,"unpackedSize":5657600,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICUOVGKjqAikfLgWgA4I7uqhUODuI7ajisjy7Zd0vYqCAiAIV89zzT6BApimdzG35xLwPV/XTFj+lhedDOgu7rBQ+w=="}],"size":895987},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.83.0_1734042719078_0.9873137837323029"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-12T22:31:59.445Z","publish_time":1734042719445,"_source_registry_name":"default"},"1.83.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.83.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.83.1","gitHead":"3d3e925c9f44b25ead011538edd89e1665ae6392","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-EVJbDaEs4Rr3F0glJzFSOvtg2/oy2V/YrGFPqPY24UqcLDWcI9ZY5sN+qyO3c/QCZwzgfirvhXvINiJCE/OLcA==","shasum":"dee1ab94b47a6f9993d3195d36f556bcbda64846","tarball":"https://registry.npmmirror.com/sass/-/sass-1.83.1.tgz","fileCount":36,"unpackedSize":5657357,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDaR1QBrheajimfZuGeyfhoFNz93UFXjzk0zzGWTgpIxAIhAOFdxd3lyF+zSCfh28vj4wJbytg0eRpG5gCHO2411iI2"}],"size":896030},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.83.1_1735953918491_0.3415078908050133"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-01-04T01:25:18.746Z","publish_time":1735953918746,"_source_registry_name":"default"},"1.83.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.83.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.83.2","gitHead":"ddb14b2c39e297167f418abfd63fd216463ad72d","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-1evIZT01aymzDxc72k8vjTa2wkPfkso4x3lVlZvWr388X7zNzVK4Xaz12rGC1E+8fGmoJW+suF3+kK7+NNwQXQ==","shasum":"907ee2813ea8d2570311fa0d92dc1e1964fdbae8","tarball":"https://registry.npmmirror.com/sass/-/sass-1.83.2.tgz","fileCount":36,"unpackedSize":5658648,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAEX8iH4t66PzRvyy4/tv1KiCHDLxmPy3LwPOidge5QgAiAY+F+ZgtPuiuoiOMXxIu2TJ8nftvGt0fYQo2RYMEtXAg=="}],"size":896047},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.83.2_1736815811542_0.028734830758452512"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-01-14T00:50:11.807Z","publish_time":1736815811807,"_source_registry_name":"default"},"1.83.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.83.3","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.83.3","gitHead":"46686eddcaee5a85f43bc300ee8650f8ac198f6c","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-t4gb+nTrUeaPb+xzdqDmaMyi8evP0QuUB8o57dYHZF/lIGniqZ/PR/iWGcWoS8vr46F9V7buXFv290fMV6vTIQ==","shasum":"26acbd0f272a13b827c3017e9f833ef0eaa26b7d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.83.3.tgz","fileCount":36,"unpackedSize":5658648,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC1D0UehRGS8QvxJbIwPpPDQP//CCwuCtwRaPT7CiiUNAiAgfliFnR6PuDzGLqr2WpR13nl6yE6KeM4emIBRqnhQnA=="}],"size":896048},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.83.3_1736818922386_0.7853981718953913"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-01-14T01:42:02.690Z","publish_time":1736818922690,"_source_registry_name":"default"},"1.83.4":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.83.4","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.83.4","gitHead":"89a5394639688ad5ad5677fb6258f39fd74f95b9","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==","shasum":"5ccf60f43eb61eeec300b780b8dcb85f16eec6d1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.83.4.tgz","fileCount":36,"unpackedSize":5658648,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVSTLpdYmae7kcfUDzQM2xGKBz1Kge4ieaqQjo3Ze0vwIgE8y4BAUem+AsQGarXleLzympsh0nF5gxPkEe53Cp924="}],"size":896048},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.83.4_1736836330371_0.3594874582881711"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-01-14T06:32:10.642Z","publish_time":1736836330642,"_source_registry_name":"default"},"1.84.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.84.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.84.0","gitHead":"ae4b757e5889166e7a716d8015e8b0baf6540fb9","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-XDAbhEPJRxi7H0SxrnOpiXFQoUJHwkR2u3Zc4el+fK/Tt5Hpzw5kkQ59qVDfvdaUq6gCrEZIbySFBM2T9DNKHg==","shasum":"da9154cbccb2d2eac7a9486091b6d9ba93ef5bad","tarball":"https://registry.npmmirror.com/sass/-/sass-1.84.0.tgz","fileCount":36,"unpackedSize":5679622,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIFQO3IF5lY7dPiTD8CcWOoSrmxRLQq8IMfPozOR7Wx/mAiEA4uSTvI+Tvpvjfhs4fBQJFlXhooWm73Rzid1x5g2Fgog="}],"size":897875},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.84.0_1738800661504_0.9018120002951762"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-06T00:11:01.852Z","publish_time":1738800661852,"_source_registry_name":"default"},"1.85.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.85.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.85.0","gitHead":"f32ec4ff75baf650fe9c2c038687d5eddcc216f8","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==","shasum":"0127ef697d83144496401553f0a0e87be83df45d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.85.0.tgz","fileCount":36,"unpackedSize":5685289,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIEdAF+bdk1TMWDK5uhUiU/bFIZTeDDIqfaMWMJqNjDLUAiAUxzgFlhAUcLD/KGNO83P/FRh9e6lJYZh//sxNYmQ6Iw=="}],"size":897779},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.85.0_1739493261316_0.9281676813081667"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-14T00:34:21.581Z","publish_time":1739493261581,"_source_registry_name":"default"},"1.85.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.85.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.85.1","gitHead":"87ef19a7e495c6618ffc87ea650688bfeed617a4","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-Uk8WpxM5v+0cMR0XjX9KfRIacmSG86RH4DCCZjLU2rFh5tyutt9siAXJ7G+YfxQ99Q6wrRMbMlVl6KqUms71ag==","shasum":"18ab0bb48110ae99163778f06445b406148ca0d5","tarball":"https://registry.npmmirror.com/sass/-/sass-1.85.1.tgz","fileCount":36,"unpackedSize":5686553,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIBNLnIAXwEhI6t1iGOqCjiY9Ev3YyzWKetJ99JGLgou2AiEAw6nADPzNDagJKGYqyeVuCMmMfGdHmP2bSaCCreQAkqc="}],"size":897857},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.85.1_1740446383464_0.6895019673469736"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-25T01:19:43.650Z","publish_time":1740446383650,"_source_registry_name":"default"},"1.86.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.86.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.86.0","gitHead":"c6706e719cdaa5c5497b54bdb0a7fbf8ebb0b7ed","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-zV8vGUld/+mP4KbMLJMX7TyGCuUp7hnkOScgCMsWuHtns8CWBoz+vmEhoGMXsaJrbUP8gj+F1dLvVe79sK8UdA==","shasum":"f49464fb6237a903a93f4e8760ef6e37a5030114","tarball":"https://registry.npmmirror.com/sass/-/sass-1.86.0.tgz","fileCount":36,"unpackedSize":5688183,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGqbkYSjO7IRbe05tss1DJ18xm1aRFvQjWghnLr5bz4+AiEAwQqptVFidO4203FsjK652meYc56leABqBYk25900U+Q="}],"size":898352},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.86.0_1742248013556_0.5651064683175409"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-03-17T21:46:53.750Z","publish_time":1742248013750,"_source_registry_name":"default"},"1.86.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.86.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.86.1","gitHead":"cee843b89ecf1b8bebf37bc40c8da84ab14eca6b","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-Yaok4XELL1L9Im/ZUClKu//D2OP1rOljKj0Gf34a+GzLbMveOzL7CfqYo+JUa5Xt1nhTCW+OcKp/FtR7/iqj1w==","shasum":"862c7fc9d30ffb9bf616fa20e50c033cb1bee4dc","tarball":"https://registry.npmmirror.com/sass/-/sass-1.86.1.tgz","fileCount":36,"unpackedSize":5693349,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDjkGUAb9j1dHo6Z2MzW5VIO9LvqvbVZinQx6WTiPs1SgIgQi0piW31OwhIwxyONf+758zFu4dttpu/zsnvIRF2NSA="}],"size":899042},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.86.1_1743454719498_0.9988883621288347"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-03-31T20:58:39.721Z","publish_time":1743454719721,"_source_registry_name":"default"},"1.86.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.86.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.86.2","gitHead":"f6fea3a25cf69fbc676140db4c4cd31e6eaf6018","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-Rpfn0zAIDqvnSb2DihJTDFjbhqLHu91Wqac9rxontWk7R+2txcPjuujMqu1eeoezh5kAblVCS5EdFdyr0Jmu+w==","shasum":"be41534cbe1ed3f72eae2f1290a4211682be88e3","tarball":"https://registry.npmmirror.com/sass/-/sass-1.86.2.tgz","fileCount":36,"unpackedSize":5693349,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQD2ZFaiMootH4J7wFIZ7gQNcnjixf32MyrpKwPexe3ZjQIgR9TcEQ6lStvL9bE4jDKSC++8l6xY9OyeL3QIKSNgPyA="}],"size":899040},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.86.2_1743635433351_0.7354673521090087"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-02T23:10:33.621Z","publish_time":1743635433621,"_source_registry_name":"default"},"1.86.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.86.3","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.86.3","gitHead":"52221c0e1587c745d073eac961bc665dcbb6075f","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-iGtg8kus4GrsGLRDLRBRHY9dNVA78ZaS7xr01cWnS7PEMQyFtTqBiyCrfpTYTZXRWM94akzckYjh8oADfFNTzw==","shasum":"0a0d9ea97cb6665e73f409639f8533ce057464c9","tarball":"https://registry.npmmirror.com/sass/-/sass-1.86.3.tgz","fileCount":36,"unpackedSize":5693005,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCEzq1FRh2PJRorCrBnMdyaoXpZSuTBIHL67x+8JgHshQIhAJOUNX0beZVpAIQkNJaffWAwoLLc3mfp49cLNoVkQk2N"}],"size":899054},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.86.3_1743725509646_0.7751900558007798"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-04T00:11:49.974Z","publish_time":1743725509974,"_source_registry_name":"default"},"1.87.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.87.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.87.0","gitHead":"3b8afa2b3e97174499af031d2cfceb47fb84b42a","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==","shasum":"8cceb36fa63fb48a8d5d7f2f4c13b49c524b723e","tarball":"https://registry.npmmirror.com/sass/-/sass-1.87.0.tgz","fileCount":36,"unpackedSize":5699197,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCFirCDU7JbiYQqou/kZ3xuN+UNNObHoW8nb02fdrbKRwIgTHgObPLOsJGd4y5LszKpeFISk/r+57gxJ9GhNCK6H1U="}],"size":899605},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.87.0_1745276413636_0.38286743922727706"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-21T23:00:13.947Z","publish_time":1745276413947,"_source_registry_name":"default"},"1.88.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.88.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.88.0","gitHead":"c6b21630e5b28eb038001f8739a3db2046b393a0","_nodeVersion":"22.15.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-sF6TWQqjFvr4JILXzG4ucGOLELkESHL+I5QJhh7CNaE+Yge0SI+ehCatsXhJ7ymU1hAFcIS3/PBpjdIbXoyVbg==","shasum":"cd1495749bebd9e4aca86e93ee60b3904a107789","tarball":"https://registry.npmmirror.com/sass/-/sass-1.88.0.tgz","fileCount":36,"unpackedSize":5704275,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIHwhXVOpIdNm5I/LsTatnd/vHbaS2QoNW0dndhR0GNK6AiAdFl4s5r5CXMP+9SH0LnVDlON4Kmnq8fTl/ahIKUFcuw=="}],"size":900780},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.88.0_1746916179764_0.5513222207856823"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-10T22:29:40.076Z","publish_time":1746916180076,"_source_registry_name":"default"},"1.89.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.89.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.89.0","gitHead":"4e9e2062f691359a8da582eb4e600ad5dc931c93","_nodeVersion":"22.15.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-ld+kQU8YTdGNjOLfRWBzewJpU5cwEv/h5yyqlSeJcj6Yh8U4TDA9UA5FPicqDz/xgRPWRSYIQNiFks21TbA9KQ==","shasum":"6df72360c5c3ec2a9833c49adafe57b28206752d","tarball":"https://registry.npmmirror.com/sass/-/sass-1.89.0.tgz","fileCount":36,"unpackedSize":5704443,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCICDeGz+aeaLy6ud1qg8gqQJAci9yfTAHLw++pU3gKdPbAiBExXeFjCZwX5kJMICNGOajpSHFgUkS1XTiDK0XF3gWOA=="}],"size":900831},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.89.0_1747356408629_0.18310902127574846"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-16T00:46:48.909Z","publish_time":1747356408909,"_source_registry_name":"default"},"1.89.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.89.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.89.1","gitHead":"394fbe53652718acc8f9e946c4bf94cd28cd8ce4","_nodeVersion":"22.16.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-eMLLkl+qz7tx/0cJ9wI+w09GQ2zodTkcE/aVfywwdlRcI3EO19xGnbmJwg/JMIm+5MxVJ6outddLZ4Von4E++Q==","shasum":"9281c52c85b4be54264d310fef63a811dfcfb9d9","tarball":"https://registry.npmmirror.com/sass/-/sass-1.89.1.tgz","fileCount":36,"unpackedSize":5701294,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIByaFiMRPArbqCd/iehpKYpxyrGAclTlPrva0AFQxXhqAiEAi/rHLGHdPIoq3rXQhH3w+1t87YSRbccgOxYRtDcKxNc="}],"size":900056},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.89.1_1748648995237_0.028571880240614078"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-30T23:49:55.478Z","publish_time":1748648995478,"_source_registry_name":"default"},"1.89.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.89.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.89.2","gitHead":"1250380bc56d1feecc5fead0752731a313b97e2e","_nodeVersion":"22.16.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==","shasum":"a771716aeae774e2b529f72c0ff2dfd46c9de10e","tarball":"https://registry.npmmirror.com/sass/-/sass-1.89.2.tgz","fileCount":36,"unpackedSize":5701294,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIFMKYRFm+wV0xzij4BltQr3dgBz2t6xrXU739jx4mgXQAiBbLZIsm9jrUDFrej/3aMDV7bVJO98n78bpw+BfLm/49w=="}],"size":900058},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.89.2_1749496758716_0.6711007776966722"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-09T19:19:19.001Z","publish_time":1749496759001,"_source_registry_name":"default"},"1.90.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.90.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.90.0","gitHead":"d6f4f17eef454d870feae0b302d870ffa75beb76","_nodeVersion":"22.17.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==","shasum":"d6fc2be49c7c086ce86ea0b231a35bf9e33cb84b","tarball":"https://registry.npmmirror.com/sass/-/sass-1.90.0.tgz","fileCount":36,"unpackedSize":5714411,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIA83BZwKtBhf6AquaGSnNBEiEikdOyRvPJ9sYwYICnueAiEA9UX6zXFVzaO24HFTCcBoliOvigiu56nfAYgtVgflrng="}],"size":902157},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.90.0_1754431761407_0.6972875850690281"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-08-05T22:09:21.665Z","publish_time":1754431761665,"_source_registry_name":"default"},"1.91.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.91.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.91.0","gitHead":"68787090890e03186423f006ba2222853902fdd2","_nodeVersion":"22.18.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-aFOZHGf+ur+bp1bCHZ+u8otKGh77ZtmFyXDo4tlYvT7PWql41Kwd8wdkPqhhT+h2879IVblcHFglIMofsFd1EA==","shasum":"7d4f7f624b35d43f78da1c339cab24426e28d7fa","tarball":"https://registry.npmmirror.com/sass/-/sass-1.91.0.tgz","fileCount":36,"unpackedSize":5706496,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGIsj3wmD03d916Fm8z5ZP3LH/4mj0tg+3Ai3WQp45L0AiEAv+J8lM8IcfU0f9tPLHSEYoEnM1tv4R2sXlSIgPvB068="}],"size":901683},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.91.0_1756156894953_0.7430123795697783"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-08-25T21:21:35.214Z","publish_time":1756156895214,"_source_registry_name":"default"},"1.92.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.92.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.92.0","gitHead":"055ef2416fb4b5a637a64d49ca1269575d87fc5c","_nodeVersion":"22.19.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-KDNI0BxgIRDAfJgzNm5wuy+4yOCIZyrUbjSpiU/JItfih+KGXAVefKL53MTml054MmBA3DDKIBMSI/7XLxZJ3A==","shasum":"02d9ae21ce1763def2cd461449aac2eb56364796","tarball":"https://registry.npmmirror.com/sass/-/sass-1.92.0.tgz","fileCount":36,"unpackedSize":5706395,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGX+95jjEb8ynYBl3F6YzhY/3F+VcU0ExGXDj4a42VE6AiEAwts3qnNAUjpni67gRuRppUqo40YHWKZ6jp6d79LLhOA="}],"size":901021},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.92.0_1756845167034_0.8090107611776098"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-02T20:32:47.256Z","publish_time":1756845167256,"_source_registry_name":"default"},"1.92.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.92.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.92.1","gitHead":"f7f03421f994a476d056aef371489200dde8c20a","_nodeVersion":"22.19.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-ffmsdbwqb3XeyR8jJR6KelIXARM9bFQe8A6Q3W4Klmwy5Ckd5gz7jgUNHo4UOqutU5Sk1DtKLbpDP0nLCg1xqQ==","shasum":"07fb1fec5647d7b712685d1090628bf52456fe86","tarball":"https://registry.npmmirror.com/sass/-/sass-1.92.1.tgz","fileCount":36,"unpackedSize":5708668,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQC0Lowlqd8vEI6vzZAuQAseHub9OEFnAMK0xAg+PWIprwIgd7eicYNzNA+UwtgBjBcbWFumqR6CsYSfbdvpPXGwifk="}],"size":901135},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.92.1_1757116252966_0.36744192578679247"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-05T23:50:53.223Z","publish_time":1757116253223,"_source_registry_name":"default"},"1.93.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.93.0","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.93.0","gitHead":"307226a6023220433eee00fcfc2d3b68b9933e41","_nodeVersion":"22.19.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-CQi5/AzCwiubU3dSqRDJ93RfOfg/hhpW1l6wCIvolmehfwgCI35R/0QDs1+R+Ygrl8jFawwwIojE2w47/mf94A==","shasum":"8252f61405be295f4755d1ed5df48bf118587aa5","tarball":"https://registry.npmmirror.com/sass/-/sass-1.93.0.tgz","fileCount":36,"unpackedSize":5708940,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIGzG+n9/Dw/oEZWOi0LgzkdemuDjcZqfgHcLdJnp0MubAiBFv2/g9RWFP1f3HkYkzYSTmxOLS63QKplkF6QbUeUP6A=="}],"size":901144},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.93.0_1758320644784_0.02604307462579536"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-19T22:24:05.055Z","publish_time":1758320645055,"_source_registry_name":"default"},"1.93.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.93.1","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.93.1","gitHead":"0b7d6d942e60181b9e20181d56736ff07471a3b2","_nodeVersion":"22.19.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-wLAeLB7IksO2u+cCfhHqcy7/2ZUMPp/X2oV6+LjmweTqgjhOKrkaE/Q1wljxtco5EcOcupZ4c981X0gpk5Tiag==","shasum":"94bf77eeef5fba022c7316515327e275e46b654e","tarball":"https://registry.npmmirror.com/sass/-/sass-1.93.1.tgz","fileCount":36,"unpackedSize":5708940,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC+AS/KEFv8CJ2C15I0hNNy249KFEi/qV/kA8EjxhLIqgIhAICQ+fkKyl/oQsjE10ofpQkwJaEqhXKF+FuZ2sbchp3P"}],"size":901144},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.93.1_1758579122270_0.5135957727422447"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-22T22:12:02.552Z","publish_time":1758579122552,"_source_registry_name":"default"},"1.93.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.93.2","bin":{"sass":"sass.js"},"main":"sass.node.js","_id":"sass@1.93.2","gitHead":"b8b35e815747c2a1935e6c19b7075c70313437fc","_nodeVersion":"22.19.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==","shasum":"e97d225d60f59a3b3dbb6d2ae3c1b955fd1f2cd1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.93.2.tgz","fileCount":36,"unpackedSize":5708940,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIHSYJ1cAJHtPZ0GwdUBeozy/EE4gLsdYIXdXzg6Ay2/IAiBW3q3/P4eWebEqGlDKyPEcKUJxVm6oFN4AXr10/mAK6g=="}],"size":901144},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.93.2_1758663419364_0.9144337305313184"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-23T21:36:59.613Z","publish_time":1758663419613,"_source_registry_name":"default"},"1.93.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.93.3","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"4e5bd2597f3c932d532718e95881d007c61ad374","_id":"sass@1.93.3","_nodeVersion":"24.11.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-elOcIZRTM76dvxNAjqYrucTSI0teAF/L2Lv0s6f6b7FOwcwIuA357bIE871580AjHJuSvLIRUosgV+lIWx6Rgg==","shasum":"3ff0aa5879dc910d32eae10c282a2847bd63e758","tarball":"https://registry.npmmirror.com/sass/-/sass-1.93.3.tgz","fileCount":36,"unpackedSize":5708516,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIBkQLXL1LpITc1ZZH9rzOaZ/AagQLwGOj7VnPq6NNwZdAiEAoaRjW0IpzQDzzaAQKDGjZhEh+VYfkgVVB3WtDPPdbks="}],"size":901071},"_npmUser":{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"},{"name":"sassbot","email":"sass.bot.beep.boop@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.93.3_1761922019725_0.6134147744275653"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-31T14:46:59.955Z","publish_time":1761922019955,"_source_registry_name":"default"},"1.94.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.94.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"bfccce8075790047cf910c65b7b769f90fdd1883","_id":"sass@1.94.0","_nodeVersion":"24.11.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-Dqh7SiYcaFtdv5Wvku6QgS5IGPm281L+ZtVD1U2FJa7Q0EFRlq8Z3sjYtz6gYObsYThUOz9ArwFqPZx+1azILQ==","shasum":"a04198d8940358ca6ad537d2074051edbbe7c1a7","tarball":"https://registry.npmmirror.com/sass/-/sass-1.94.0.tgz","fileCount":36,"unpackedSize":5750153,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.94.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCID6BBmth6TYVQjcxSrQg4XM1HM+Cx5cHthyU9MWD81nxAiEA1xwTFSvShh0DmX05jLuXYBYGjEQcHHy1msarGj4S1ow="}],"size":905545},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.94.0_1762819110979_0.6765008898723701"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-11-10T23:58:31.269Z","publish_time":1762819111269,"_source_registry_name":"default"},"1.94.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.94.1","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"0356a2b8b785aae7fd9135d54cbd48e863ffba2a","_id":"sass@1.94.1","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-/YVm5FRQaRlr3oNh2LLFYne1PdPlRZGyKnHh1sLleOqLcohTR4eUUvBjBIqkl1fEXd1MGOHgzJGJh+LgTtV4KQ==","shasum":"79f726f2bdc347a387a954d4c967ac73efdb6676","tarball":"https://registry.npmmirror.com/sass/-/sass-1.94.1.tgz","fileCount":36,"unpackedSize":5750395,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.94.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCLIPQT57uCSd7C0l00wBhwxF9g5R3ESHk68GSfuUNilwIgfdwZUjVeAQihW/xlPgt6LD5+5rPlEWrdJsOXbimJQlE="}],"size":905653},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.94.1_1763430120087_0.3607920049986719"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-11-18T01:42:00.336Z","publish_time":1763430120336,"_source_registry_name":"default"},"1.94.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.94.2","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"7af5122786598ea6866986979535022b8ff8839c","_id":"sass@1.94.2","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-N+7WK20/wOr7CzA2snJcUSSNTCzeCGUTFY3OgeQP3mZ1aj9NMQ0mSTXwlrnd89j33zzQJGqIN52GIOmYrfq46A==","shasum":"198511fc6fdd2fc0a71b8d1261735c12608d4ef3","tarball":"https://registry.npmmirror.com/sass/-/sass-1.94.2.tgz","fileCount":36,"unpackedSize":5750894,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.94.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCICGEqVcFyLIbhp60Z2zN0oFZCfWle9/r6RJgQ/WQlMfiAiB8VdPo6K6k99h2ogXItC6ZSL1zZvlCr9rAwgCQfOiRMA=="}],"size":905729},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.94.2_1763593412874_0.10387124107223933"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-11-19T23:03:33.230Z","publish_time":1763593413230,"_source_registry_name":"default"},"1.94.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^5.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.94.3","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"e2bf8434e5fbb6c9c5c8281a55cc3aaec90f3d5d","_id":"sass@1.94.3","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-AhSSJrOPvcPEbTEQJxCt4vhIeAmLpLaVkNZF06oYM+H3HkipZ21bbD4i4B1Vj3MNUIBsytNjwXAe7CGQ7f0nag==","shasum":"a8ee3ee01a46adada3fb0d9de8d15a6007448d03","tarball":"https://registry.npmmirror.com/sass/-/sass-1.94.3.tgz","fileCount":36,"unpackedSize":5752405,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.94.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIEQIAO1efOIOM1nBEnyrMWObvfnOWSsUYf9ZRfdgQi82AiEA77O21o0ObSogTN5eYuKlZaVQaIOKhusl2SIMepkUzK8="}],"size":905799},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.94.3_1765217926195_0.6812098996355223"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-08T18:18:46.448Z","publish_time":1765217926448,"_source_registry_name":"default"},"1.95.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.95.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"2abc89e9e52864065a16fa7e23c4ca55726d5b56","_id":"sass@1.95.0","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-9QMjhLq+UkOg/4bb8Lt8A+hJZvY3t+9xeZMKSBtBEgxrXA3ed5Ts4NDreUkYgJP1BTmrscQE/xYhf7iShow6lw==","shasum":"3a3a4d4d954313ab50eaf16f6e2548a2f6ec0811","tarball":"https://registry.npmmirror.com/sass/-/sass-1.95.0.tgz","fileCount":36,"unpackedSize":5854712,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.95.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDV5Tpaumd+I1CBRb/LQASL1Q49dfH6Nho+LPlfxGk+HQIgOw4pXR21al9ZbRONmDoHjOHuXe/Uu3LE9u8aq9S1CaE="}],"size":918646},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.95.0_1765221788871_0.47844428757813184"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-08T19:23:09.092Z","publish_time":1765221789092,"_source_registry_name":"default"},"1.95.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.95.1","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"4aa6d5f10402a9e443acb9025d857aeb4460f8a1","_id":"sass@1.95.1","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-uPoDh5NIEZV4Dp5GBodkmNY9tSQfXY02pmCcUo+FR1P+x953HGkpw+vV28D4IqYB6f8webZtwoSaZaiPtpTeMg==","shasum":"63116617ed86149c46c88e0c35e9c844703167f1","tarball":"https://registry.npmmirror.com/sass/-/sass-1.95.1.tgz","fileCount":36,"unpackedSize":5854711,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.95.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIEcJsi4HwYmsolJQvLo4TAj42IU3CV0RIO1GQZFfGRZKAiB/KMoxNFFfB1kMHsUucg8mv4ch6aCBIH0/P7F1Z/lhxw=="}],"size":918651},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.95.1_1765324082087_0.3485222729709081"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-09T23:48:02.273Z","publish_time":1765324082273,"_source_registry_name":"default"},"1.96.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.96.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"f6bdc0213b13b2ff7dc311862904b1f648c9c62f","_id":"sass@1.96.0","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-8u4xqqUeugGNCYwr9ARNtQKTOj4KmYiJAVKXf2CTIivTCR51j96htbMKWDru8H5SaQWpyVgTfOF8Ylyf5pun1Q==","shasum":"dca45b6b08ae829500f448124afc7c15150bbb34","tarball":"https://registry.npmmirror.com/sass/-/sass-1.96.0.tgz","fileCount":36,"unpackedSize":5853549,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.96.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDTqy61JpIOu6TDoCx65rq/KlQqwtUPA31skJkOkIpvDAIhAJ1LMbJm4mRqe7g7II9HRNWU07nVsa9hIwCgr2aDZoiw"}],"size":918517},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.96.0_1765412234651_0.6046263912523815"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-11T00:17:14.898Z","publish_time":1765412234898,"_source_registry_name":"default"},"1.97.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.97.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"0c7083ac165fd30234c90a4342e7f7792a686c7d","_id":"sass@1.97.0","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-KR0igP1z4avUJetEuIeOdDlwaUDvkH8wSx7FdSjyYBS3dpyX3TzHfAMO0G1Q4/3cdjcmi3r7idh+KCmKqS+KeQ==","shasum":"8ed65df5e2f73012d5ef0e98837ff63550657ab2","tarball":"https://registry.npmmirror.com/sass/-/sass-1.97.0.tgz","fileCount":36,"unpackedSize":5860839,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.97.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQChCPfO9EtIYqhpo0wpJtQeLWextFMQefkkAzftilxyGAIhAPkG0bd0DZkNxuseCUe7Z3iTIup9pVik42+OUhY9gRIH"}],"size":919048},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.97.0_1765867119785_0.866959826441932"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-16T06:38:40.003Z","publish_time":1765867120003,"_source_registry_name":"default"},"1.97.1":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.97.1","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"62ec6627905c790405da06b5ee41955491733f52","_id":"sass@1.97.1","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-uf6HoO8fy6ClsrShvMgaKUn14f2EHQLQRtpsZZLeU/Mv0Q1K5P0+x2uvH6Cub39TVVbWNSrraUhDAoFph6vh0A==","shasum":"f36e492baf8ccdd08d591b58d3d8b53ea35ab905","tarball":"https://registry.npmmirror.com/sass/-/sass-1.97.1.tgz","fileCount":36,"unpackedSize":5864399,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.97.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCgctllB0iYd5tAkfm+HS3SP9nw3pyvVMBGSdjUSMXR6AIhAMVi4qNoEPGT2KfpZ9T3I7jPla3I/h2ArHLasOL98cX6"}],"size":919403},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.97.1_1766180109456_0.926090895496195"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-19T21:35:09.703Z","publish_time":1766180109703,"_source_registry_name":"default"},"1.97.2":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.97.2","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"d12cc7d8fdac5c976082d5bc20a8b7513da2b220","_id":"sass@1.97.2","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-y5LWb0IlbO4e97Zr7c3mlpabcbBtS+ieiZ9iwDooShpFKWXf62zz5pEPdwrLYm+Bxn1fnbwFGzHuCLSA9tBmrw==","shasum":"e515a319092fd2c3b015228e3094b40198bff0da","tarball":"https://registry.npmmirror.com/sass/-/sass-1.97.2.tgz","fileCount":36,"unpackedSize":5866455,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.97.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDG//enCQ+FG7TV/Ug9EvsCAVBld7WaW5bcXp4H6XqPcgIhALjuODoU2dD+ORAw+DIlYeGYvGlfec6VADsS0olS/2hZ"}],"size":920012},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.97.2_1767660234317_0.6434216537664228"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-06T00:43:54.589Z","publish_time":1767660234589,"_source_registry_name":"default"},"1.97.3":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.97.3","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"080eaef584a03d0034931a6eabb2db9e60a3fc3f","_id":"sass@1.97.3","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==","shasum":"9cb59339514fa7e2aec592b9700953ac6e331ab2","tarball":"https://registry.npmmirror.com/sass/-/sass-1.97.3.tgz","fileCount":36,"unpackedSize":5907543,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.97.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIG7ZkLg9sWzOiTm3mRYNOWkqaxWCLFefGv+st104YHW1AiEA9YfdSSNlne+JqBHfq0ggY8zV58PY8JgSvVVZAzyicjo="}],"size":922799},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.97.3_1769038545046_0.963253291784328"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-21T23:35:45.264Z","publish_time":1769038545264,"_source_registry_name":"default"},"1.98.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.1.5","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.98.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"5a81ae3348caab2131ee08c8c0141337420372b5","_id":"sass@1.98.0","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-+4N/u9dZ4PrgzGgPlKnaaRQx64RO0JBKs9sDhQ2pLgN6JQZ25uPQZKQYaBJU48Kd5BxgXoJ4e09Dq7nMcOUW3A==","shasum":"924ce85a3745ccaccd976262fdc1bc0c13aa8e57","tarball":"https://registry.npmmirror.com/sass/-/sass-1.98.0.tgz","fileCount":36,"unpackedSize":5912399,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.98.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQD6EUDODH2q0Zg7jWTbO86H+Eso4EBEfmAGs6SpPAwEvAIgUiRO7ZbWE4tGrzhwpCH/suL6bNgx+KvSHf8d75ZW5Fw="}],"size":923498},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hcatlin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.98.0_1773183486499_0.1746777478433954"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-03-10T22:58:06.714Z","publish_time":1773183486714,"_source_registry_name":"default"},"1.99.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":"^4.0.0","immutable":"^5.1.5","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.99.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"83c39fec93ab0dc183a46cff2bc468999ce53e20","_id":"sass@1.99.0","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==","shasum":"ff9d1594da4886249dfaafabbeea2dea2dc74b26","tarball":"https://registry.npmmirror.com/sass/-/sass-1.99.0.tgz","fileCount":36,"unpackedSize":5932156,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.99.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIDJvMF8zaC212QlfuyIkZ/xhcfmb8qzzdt/0Qu0G7l23AiEA8uRW+StxI4KgVdItZYIFf4Cj1QWqYyeGRw58KfXKzLU="}],"size":926145},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hampton@lin.cat"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.99.0_1775173125507_0.45237567059705364"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-04-02T23:38:45.760Z","publish_time":1775173125760,"_source_registry_name":"default"},"1.100.0":{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=20.19.0"},"dependencies":{"chokidar":"^5.0.0","immutable":"^5.1.5","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.100.0","bin":{"sass":"sass.js"},"main":"sass.node.js","gitHead":"5fd18c75e31a855476059fb6fb0c6aa829292739","_id":"sass@1.100.0","_nodeVersion":"24.15.0","_npmVersion":"11.12.1","dist":{"integrity":"sha512-B5j0rYMlinhhOo9tjQebMVVn0TfyXAF+wB3b2ggZUuJ/is/Y+7+JGjirAMxHZ9Z3hIP98NPfamlAkBHa1lAaXQ==","shasum":"b4cab1bed286fe22ac6c879c514f71cd36aa06c8","tarball":"https://registry.npmmirror.com/sass/-/sass-1.100.0.tgz","fileCount":36,"unpackedSize":5936333,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/sass@1.100.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQD0auXdB2v2wZL1b1TXZUsqPt7krtiIoJtQoArN4vw4nwIgfOo5HNhRCkYCwybCxgB0cyU54jFL/3di22ERtsKQ6q4="}],"size":927111},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:cae20858-4eac-4e56-90b7-3cb6408d30c4"}},"directories":{},"maintainers":[{"name":"nex3","email":"nex342@gmail.com"},{"name":"hcatlin","email":"hampton@lin.cat"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/sass_1.100.0_1779410253817_0.8551440686342533"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-05-22T00:37:34.033Z","publish_time":1779410254033,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/sass/dart-sass/issues"},"homepage":"https://github.com/sass/dart-sass","keywords":["style","scss","sass","preprocessor","css"],"repository":{"type":"git","url":"git+https://github.com/sass/dart-sass.git"},"_source_registry_name":"default"}