{"_attachments":{},"_id":"whatwg-url","_rev":"223-61f1442eb677e08f5113643b","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","dist-tags":{"latest":"16.0.1"},"license":"MIT","maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"}],"name":"whatwg-url","readme":"﻿# whatwg-url\n\nwhatwg-url is a full implementation of the WHATWG [URL Standard](https://url.spec.whatwg.org/). It can be used standalone, but it also exposes a lot of the internal algorithms that are useful for integrating a URL parser into a project like [jsdom](https://github.com/jsdom/jsdom).\n\n## Specification conformance\n\nwhatwg-url is currently up to date with the URL spec up to commit [b6b3251](https://github.com/whatwg/url/commit/b6b3251fe911ab33d68fb051efe0e4d39ae4145e).\n\nFor `file:` URLs, whose [origin is left unspecified](https://url.spec.whatwg.org/#concept-url-origin), whatwg-url chooses to use a new opaque origin (which serializes to `\"null\"`).\n\n## API\n\n### The `URL` and `URLSearchParams` classes\n\nThe main API is provided by the [`URL`](https://url.spec.whatwg.org/#url-class) and [`URLSearchParams`](https://url.spec.whatwg.org/#interface-urlsearchparams) exports, which follows the spec's behavior in all ways (including e.g. `USVString` conversion). Most consumers of this library will want to use these.\n\n### Low-level URL Standard API\n\nThe following methods are exported for use by places like jsdom that need to implement things like [`HTMLHyperlinkElementUtils`](https://html.spec.whatwg.org/#htmlhyperlinkelementutils). They mostly operate on or return an \"internal URL\" or [\"URL record\"](https://url.spec.whatwg.org/#concept-url) type.\n\n- [URL parser](https://url.spec.whatwg.org/#concept-url-parser): `parseURL(input, { baseURL, encoding = \"UTF-8\" })`\n- [Basic URL parser](https://url.spec.whatwg.org/#concept-basic-url-parser): `basicURLParse(input, { baseURL, url, stateOverride, encoding = \"UTF-8\" })`\n- [URL serializer](https://url.spec.whatwg.org/#concept-url-serializer): `serializeURL(urlRecord, excludeFragment)`\n- [Host serializer](https://url.spec.whatwg.org/#concept-host-serializer): `serializeHost(hostFromURLRecord)`\n- [URL path serializer](https://url.spec.whatwg.org/#url-path-serializer): `serializePath(urlRecord)`\n- [Serialize an integer](https://url.spec.whatwg.org/#serialize-an-integer): `serializeInteger(number)`\n- [Origin](https://url.spec.whatwg.org/#concept-url-origin) [serializer](https://html.spec.whatwg.org/multipage/origin.html#ascii-serialisation-of-an-origin): `serializeURLOrigin(urlRecord)`\n- [Set the username](https://url.spec.whatwg.org/#set-the-username): `setTheUsername(urlRecord, usernameString)`\n- [Set the password](https://url.spec.whatwg.org/#set-the-password): `setThePassword(urlRecord, passwordString)`\n- [Has an opaque path](https://url.spec.whatwg.org/#url-opaque-path): `hasAnOpaquePath(urlRecord)`\n- [Cannot have a username/password/port](https://url.spec.whatwg.org/#cannot-have-a-username-password-port): `cannotHaveAUsernamePasswordPort(urlRecord)`\n- [Percent decode bytes](https://url.spec.whatwg.org/#percent-decode): `percentDecodeBytes(uint8Array)`\n- [Percent decode a string](https://url.spec.whatwg.org/#string-percent-decode): `percentDecodeString(string)`\n\nThe `stateOverride` parameter is one of the following strings:\n\n- [`\"scheme start\"`](https://url.spec.whatwg.org/#scheme-start-state)\n- [`\"scheme\"`](https://url.spec.whatwg.org/#scheme-state)\n- [`\"no scheme\"`](https://url.spec.whatwg.org/#no-scheme-state)\n- [`\"special relative or authority\"`](https://url.spec.whatwg.org/#special-relative-or-authority-state)\n- [`\"path or authority\"`](https://url.spec.whatwg.org/#path-or-authority-state)\n- [`\"relative\"`](https://url.spec.whatwg.org/#relative-state)\n- [`\"relative slash\"`](https://url.spec.whatwg.org/#relative-slash-state)\n- [`\"special authority slashes\"`](https://url.spec.whatwg.org/#special-authority-slashes-state)\n- [`\"special authority ignore slashes\"`](https://url.spec.whatwg.org/#special-authority-ignore-slashes-state)\n- [`\"authority\"`](https://url.spec.whatwg.org/#authority-state)\n- [`\"host\"`](https://url.spec.whatwg.org/#host-state)\n- [`\"hostname\"`](https://url.spec.whatwg.org/#hostname-state)\n- [`\"port\"`](https://url.spec.whatwg.org/#port-state)\n- [`\"file\"`](https://url.spec.whatwg.org/#file-state)\n- [`\"file slash\"`](https://url.spec.whatwg.org/#file-slash-state)\n- [`\"file host\"`](https://url.spec.whatwg.org/#file-host-state)\n- [`\"path start\"`](https://url.spec.whatwg.org/#path-start-state)\n- [`\"path\"`](https://url.spec.whatwg.org/#path-state)\n- [`\"opaque path\"`](https://url.spec.whatwg.org/#cannot-be-a-base-url-path-state)\n- [`\"query\"`](https://url.spec.whatwg.org/#query-state)\n- [`\"fragment\"`](https://url.spec.whatwg.org/#fragment-state)\n\nThe URL record type has the following API:\n\n- [`scheme`](https://url.spec.whatwg.org/#concept-url-scheme)\n- [`username`](https://url.spec.whatwg.org/#concept-url-username)\n- [`password`](https://url.spec.whatwg.org/#concept-url-password)\n- [`host`](https://url.spec.whatwg.org/#concept-url-host)\n- [`port`](https://url.spec.whatwg.org/#concept-url-port)\n- [`path`](https://url.spec.whatwg.org/#concept-url-path) (as an array of strings, or a string)\n- [`query`](https://url.spec.whatwg.org/#concept-url-query)\n- [`fragment`](https://url.spec.whatwg.org/#concept-url-fragment)\n\nThese properties should be treated with care, as in general changing them will cause the URL record to be in an inconsistent state until the appropriate invocation of `basicURLParse` is used to fix it up. You can see examples of this in the URL Standard, where there are many step sequences like \"4. Set context object’s url’s fragment to the empty string. 5. Basic URL parse _input_ with context object’s url as _url_ and fragment state as _state override_.\" In between those two steps, a URL record is in an unusable state.\n\nThe return value of \"failure\" in the spec is represented by `null`. That is, functions like `parseURL` and `basicURLParse` can return _either_ a URL record _or_ `null`.\n\n### `whatwg-url/webidl2js-wrapper` module\n\nThis module exports the `URL` and `URLSearchParams` [interface wrappers API](https://github.com/jsdom/webidl2js#for-interfaces) generated by [webidl2js](https://github.com/jsdom/webidl2js).\n\n## Development instructions\n\nFirst, install [Node.js](https://nodejs.org/). Then, fetch the dependencies of whatwg-url, by running from this directory:\n\n    npm install\n\nTo run tests:\n\n    npm test\n\nTo generate a coverage report:\n\n    npm run coverage\n\nTo build and run the live viewer:\n\n    npm run prepare\n    npm run build-live-viewer\n\nServe the contents of the `live-viewer` directory using any web server.\n\n## Supporting whatwg-url\n\nThe jsdom project (including whatwg-url) is a community-driven project maintained by a team of [volunteers](https://github.com/orgs/jsdom/people). You could support us by:\n\n- [Getting professional support for whatwg-url](https://tidelift.com/subscription/pkg/npm-whatwg-url?utm_source=npm-whatwg-url&utm_medium=referral&utm_campaign=readme) as part of a Tidelift subscription. Tidelift helps making open source sustainable for us while giving teams assurances for maintenance, licensing, and security.\n- Contributing directly to the project.\n","time":{"created":"2022-01-26T12:53:02.028Z","modified":"2026-02-18T01:04:09.366Z","2.0.0":"2016-04-06T21:49:21.279Z","1.0.1":"2016-02-10T18:07:15.148Z","1.0.0":"2016-01-27T22:03:42.087Z","0.6.5":"2015-08-30T13:58:56.358Z","0.6.4":"2015-08-29T02:47:13.953Z","0.6.2":"2015-08-13T01:35:41.324Z","0.6.1":"2015-08-02T23:10:21.150Z","0.6.0":"2015-08-01T21:44:09.517Z","0.5.0":"2015-08-01T19:13:35.551Z","0.4.2":"2015-07-31T20:07:08.825Z","0.4.1":"2015-07-23T16:20:48.729Z","0.4.0":"2015-07-23T09:45:41.021Z","0.3.1":"2015-07-21T11:07:58.642Z","0.3.0":"2015-07-21T08:32:04.766Z","0.2.1":"2015-06-08T03:00:29.433Z","0.2.0":"2015-06-07T13:27:26.272Z","0.1.0":"2015-06-04T13:49:20.087Z","0.0.1":"2015-06-04T13:09:58.924Z","11.0.0":"2021-10-19T20:00:15.053Z","10.0.0":"2021-10-06T16:50:40.037Z","9.1.0":"2021-08-05T15:55:17.332Z","9.0.0":"2021-06-26T21:19:52.676Z","8.7.0":"2021-06-25T21:01:07.287Z","8.6.0":"2021-06-08T16:53:07.119Z","8.5.0":"2021-03-24T20:28:14.163Z","8.4.0":"2020-10-08T16:17:51.606Z","8.3.0":"2020-09-30T17:37:14.436Z","8.2.2":"2020-09-06T19:29:24.032Z","8.2.1":"2020-08-25T15:52:55.895Z","8.2.0":"2020-08-24T15:56:44.690Z","8.1.0":"2020-05-08T19:07:00.483Z","8.0.0":"2020-01-02T20:10:52.787Z","7.1.0":"2019-10-21T16:04:29.957Z","7.0.0":"2018-08-18T19:34:38.926Z","6.5.0":"2018-06-08T20:37:32.015Z","6.4.1":"2018-04-22T19:15:29.579Z","6.4.0":"2017-12-05T22:39:22.006Z","6.3.0":"2017-09-25T00:55:39.030Z","6.2.1":"2017-09-12T00:34:10.664Z","6.2.0":"2017-09-12T00:23:26.069Z","6.1.0":"2017-06-30T00:15:50.961Z","6.0.1":"2017-06-29T03:44:24.331Z","6.0.0":"2017-06-29T02:43:14.188Z","5.0.0":"2017-05-26T20:56:41.955Z","4.8.0":"2017-05-10T18:56:43.181Z","4.7.1":"2017-04-24T20:44:44.321Z","4.7.0":"2017-04-03T05:17:23.819Z","4.6.0":"2017-03-15T20:09:29.895Z","4.5.1":"2017-03-12T19:21:11.865Z","4.5.0":"2017-02-22T17:43:59.019Z","4.4.0":"2017-02-16T20:30:05.197Z","4.3.0":"2017-01-12T00:40:31.291Z","4.2.0":"2017-01-03T22:12:46.910Z","4.1.1":"2016-12-19T00:09:32.418Z","4.1.0":"2016-12-09T17:46:30.354Z","4.0.0":"2016-11-20T03:30:12.579Z","3.1.0":"2016-11-20T03:22:42.852Z","3.0.0":"2016-05-28T19:32:27.252Z","2.0.1":"2016-04-15T22:12:37.778Z","12.0.0":"2023-01-03T02:07:51.777Z","12.0.1":"2023-03-08T07:19:03.350Z","13.0.0":"2023-05-28T08:34:14.013Z","14.0.0":"2023-11-05T14:18:58.221Z","14.1.0":"2024-12-04T01:57:14.913Z","14.1.1":"2025-02-11T08:52:53.202Z","14.2.0":"2025-03-15T07:12:41.904Z","15.0.0":"2025-09-13T03:44:29.719Z","15.1.0":"2025-09-18T00:51:00.815Z","16.0.0":"2026-02-02T05:00:30.896Z","16.0.1":"2026-02-18T01:03:49.781Z"},"versions":{"2.0.0":{"name":"whatwg-url","version":"2.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.3.14","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"93b140f24699397d3f39cdb49b6d7ece021d6375","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@2.0.0","_shasum":"5980883353c93607113cbe8c1ab5a58a656070e2","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"5980883353c93607113cbe8c1ab5a58a656070e2","size":10793,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-2.0.0.tgz","integrity":"sha512-SaKBIa6nyugRsA51xTDOG0UpmRBLijNPM1Gbg69bV1pfhMnSsBooj2KsKCG3bYgFGbK0BgNfrhR2w+4xv9XKKw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-2.0.0.tgz_1459979359048_0.7188771087676287"},"directories":{},"publish_time":1459979361279,"_hasShrinkwrap":false,"_cnpm_publish_time":1459979361279,"_cnpmcore_publish_time":"2021-12-13T13:55:47.069Z"},"1.0.1":{"name":"whatwg-url","version":"1.0.1","description":"An implementation of the WHATWG URL algorithm","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs src/ test/ scripts/ && jshint src/ test/ scripts/","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"51a93d1497dfa3666b5afe1ad3dc5e69ea3c8052","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@1.0.1","_shasum":"2ad742fc419d671026376f84c80fe4f69f55ccc7","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"2ad742fc419d671026376f84c80fe4f69f55ccc7","size":10934,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-1.0.1.tgz","integrity":"sha512-TZ62zU14IZiYVfMxWZSa4ZHAIiJjwzhlBO6VLYexjC3uKBRJIOIDbew/tfU/ZTK413REcR2/vsHmEouew4bBRQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/whatwg-url-1.0.1.tgz_1455127633394_0.16841055802069604"},"directories":{},"publish_time":1455127635148,"_hasShrinkwrap":false,"_cnpm_publish_time":1455127635148,"_cnpmcore_publish_time":"2021-12-13T13:55:47.929Z"},"1.0.0":{"name":"whatwg-url","version":"1.0.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs src/ test/ scripts/ && jshint src/ test/ scripts/","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"143e69a83770ca33ad3145beff722b3b0abd398d","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@1.0.0","_shasum":"8cde8928f56c0e830fed076818fb54e18a25bbb0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"8cde8928f56c0e830fed076818fb54e18a25bbb0","size":10934,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-1.0.0.tgz","integrity":"sha512-HwA5TbH+yrS2ilN6PgP7ZuqG260dUvGXGXtVSLr0/bI3EkohisO7v5K0K3jgOBZAcG8GGX8cfEcCdXB5tg12oQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1453932222087,"_hasShrinkwrap":false,"_cnpm_publish_time":1453932222087,"_cnpmcore_publish_time":"2021-12-13T13:55:48.884Z"},"0.6.5":{"name":"whatwg-url","version":"0.6.5","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"765cb383fe05b04d444ca59dd166e4f7b199ecbe","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.6.5","_shasum":"a6f8f1a98fd4a3bf6d85af6744745c16c4a9bf79","_from":".","_npmVersion":"2.13.5","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"a6f8f1a98fd4a3bf6d85af6744745c16c4a9bf79","size":8594,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.6.5.tgz","integrity":"sha512-T15Ity4AgFUah8lbBUGXmvr546hkcx4oOdJc6srA/ciVJq3TMgqMA/Qm7uc0aJ+qogP5unz4Vf7BcpU2GWvCCA=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1440943136358,"_hasShrinkwrap":false,"_cnpm_publish_time":1440943136358,"_cnpmcore_publish_time":"2021-12-13T13:55:49.624Z"},"0.6.4":{"name":"whatwg-url","version":"0.6.4","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0","recast":"~0.10.29"},"scripts":{"build":"iojs bin/transform.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs src/ test/ scripts/ && jshint src/ test/ scripts/","prepublish":"npm run build","pretest":"iojs scripts/get-latest-platform-tests.js && npm run build","test":"npm run lint && mocha"},"gitHead":"0b26d11e44891cd82ae45f8fb04f5fc4c71ee7c8","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.6.4","_shasum":"6a60829d03104b36645045726b2e7fcb557f674c","_from":".","_npmVersion":"2.13.5","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"6a60829d03104b36645045726b2e7fcb557f674c","size":9289,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.6.4.tgz","integrity":"sha512-ZlCDJ4DXQIqWA8dyyX+ENRT1WrXyLnFm39iKBwY2ioWzUnTG1xeOM3G2JdHaPiyYFdG1xkRdmr8f8iSG0gfEoA=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1440816433953,"_hasShrinkwrap":false,"_cnpm_publish_time":1440816433953,"_cnpmcore_publish_time":"2021-12-13T13:55:50.561Z"},"0.6.2":{"name":"whatwg-url","version":"0.6.2","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"660e4e8c9365c51958726b3e504584bc75dbff8f","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.6.2","_shasum":"758c0596a2b0b93cec96667800359946f022af5f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"758c0596a2b0b93cec96667800359946f022af5f","size":8507,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.6.2.tgz","integrity":"sha512-IZx0+al5gXMZutxl+RYRH0gQY8rbKFs9hADw55ZGAHGAo9C9JTSdnX04kBkp0sZqadKTTIgezTVJ8drn+giKOQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1439429741324,"_hasShrinkwrap":false,"_cnpm_publish_time":1439429741324,"_cnpmcore_publish_time":"2021-12-13T13:55:51.511Z"},"0.6.1":{"name":"whatwg-url","version":"0.6.1","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"83dcf28cd02c96ef48ccb4015f921a6b97c1533e","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.6.1","_shasum":"454168d5efb8f53b6760f84a23d50e50ea10adcf","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"454168d5efb8f53b6760f84a23d50e50ea10adcf","size":8510,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.6.1.tgz","integrity":"sha512-O+524FwopgAK8HoNBamGeGGNG1nsJJG6DHjBYxmi2HtzEa5NZGkN84P2tDBSOIquAK6KA69pe2lmdSYLQLSuyw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1438557021150,"_hasShrinkwrap":false,"_cnpm_publish_time":1438557021150,"_cnpmcore_publish_time":"2021-12-13T13:55:52.414Z"},"0.6.0":{"name":"whatwg-url","version":"0.6.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"14129c5759b67c0f9e2c6e4323fc2271878e0e14","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.6.0","_shasum":"9dd9b57e9623b7bff264d21a2c7e4783ccbf36ea","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"9dd9b57e9623b7bff264d21a2c7e4783ccbf36ea","size":8498,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.6.0.tgz","integrity":"sha512-HqT1/VrIGotonXrfQZOrmLgE4JMLMZOBnFksMEgoCUWcXQ6qFiQ5ymXc34/pXC8sS8MWM5R2vSZSJ5nPk7LFlw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1438465449517,"_hasShrinkwrap":false,"_cnpm_publish_time":1438465449517,"_cnpmcore_publish_time":"2021-12-13T13:55:53.427Z"},"0.5.0":{"name":"whatwg-url","version":"0.5.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"57fba4f5204e6f686b4a225d1497a69f79c51066","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.5.0","_shasum":"0758fa133a953ff4653772b408f039e0306e3cf4","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"0758fa133a953ff4653772b408f039e0306e3cf4","size":8382,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.5.0.tgz","integrity":"sha512-e8hD4LplLv4igoFaDUdFlpNFRku75MBza77tXO6I2BcCdUCG0+EFPuzqY7Yc7dPfrwG7sbqtXgSWJ02xYMmtZg=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1438456415551,"_hasShrinkwrap":false,"_cnpm_publish_time":1438456415551,"_cnpmcore_publish_time":"2021-12-13T13:55:54.330Z"},"0.4.2":{"name":"whatwg-url","version":"0.4.2","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"e54f2332c1a9b738cdcdc87a59601a860e045621","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.4.2","_shasum":"8f18660325c58c94d5916d1ac1b8ccaba315659b","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"8f18660325c58c94d5916d1ac1b8ccaba315659b","size":8287,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.4.2.tgz","integrity":"sha512-B22dJZYoDMihLAXA/QJnmJ62Klpli5zGc5zz15HAKv1DFDt2MLyKDN/e0pobdPMEFpevjDw1rH77lwqwKX/hxg=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1438373228825,"_hasShrinkwrap":false,"_cnpm_publish_time":1438373228825,"_cnpmcore_publish_time":"2021-12-13T13:55:55.653Z"},"0.4.1":{"name":"whatwg-url","version":"0.4.1","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"13049590acb88a8b230094e5934da45a312a96c2","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.4.1","_shasum":"ab9358c434094a20ee6ebf7faf514d6a43caccf4","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"ab9358c434094a20ee6ebf7faf514d6a43caccf4","size":8192,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.4.1.tgz","integrity":"sha512-qrsS0diyUn3s5mTkJtx7sRkuVrnCthYxd5Hq04VH/Bsh1K4Q3bsujUkNkyYzl/VHMoxk2d0pJ4obOQ3KvImj0A=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1437668448729,"_hasShrinkwrap":false,"_cnpm_publish_time":1437668448729,"_cnpmcore_publish_time":"2021-12-13T13:55:56.669Z"},"0.4.0":{"name":"whatwg-url","version":"0.4.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"49253dc0341cdd9e9a4bf037ef22a86d170c50b7","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.4.0","_shasum":"cf0b6b216c42a81affbc6eac64264e075ca6b68c","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"cf0b6b216c42a81affbc6eac64264e075ca6b68c","size":8189,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.4.0.tgz","integrity":"sha512-s0ZOR5kgoPnNmpwuUBAYm6bUyUFE8eKcMUYuEJEeJyMBwCeIqdtgs1UnkR873ASoxo/hkxupIdeRtsdXSkHO7Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1437644741021,"_hasShrinkwrap":false,"_cnpm_publish_time":1437644741021,"_cnpmcore_publish_time":"2021-12-13T13:55:57.658Z"},"0.3.1":{"name":"whatwg-url","version":"0.3.1","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"20fce5f42c3310140647ac63db8114f6b6fe1423","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.3.1","_shasum":"912234fb70244cb3f519b2ce6f0b66e2c7a76031","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"912234fb70244cb3f519b2ce6f0b66e2c7a76031","size":8045,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.3.1.tgz","integrity":"sha512-bZ1U477rPFqsPyWmtZTfXoZX28xiO/6FCVEOwuBTicOai11b2s7kNTao6Vx3RINraYRynAmGKfl5ICVb3YmzAQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1437476878642,"_hasShrinkwrap":false,"_cnpm_publish_time":1437476878642,"_cnpmcore_publish_time":"2021-12-13T13:55:58.601Z"},"0.3.0":{"name":"whatwg-url","version":"0.3.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"acc107353ccb97a0f78798766111e781b0b30c4e","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@0.3.0","_shasum":"6e6e0b3d73b7c225966dd1658cf214e45d3ea958","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"6e6e0b3d73b7c225966dd1658cf214e45d3ea958","size":8048,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.3.0.tgz","integrity":"sha512-0azAGuoIb2grLhGbaySQ/qY6aXM7Askd5JWxwGKkwet5a45u7lqO0BrpgUZXloG5DVuVjciCK1/pS0Ye81HMcQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"publish_time":1437467524766,"_hasShrinkwrap":false,"_cnpm_publish_time":1437467524766,"_cnpmcore_publish_time":"2021-12-13T13:55:59.478Z"},"0.2.1":{"name":"whatwg-url","version":"0.2.1","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"Sebastian Mayr <github@smayr.name"},"dependencies":{"tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"dd73f062bc913df1be52a8f7e8a0d394e1650f27","_id":"whatwg-url@0.2.1","_shasum":"1a871c1f0564ae7292a7f7ba876af39e782f504e","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"dist":{"shasum":"1a871c1f0564ae7292a7f7ba876af39e782f504e","size":51659,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.2.1.tgz","integrity":"sha512-pvz/NLtVrOgKt9NF7sw/7aXQiUJ34Dv7TYIPzQsiVYDnzySgfod3FzmSJROmpfrFjFRYpsgBopOcP/Tzpcm+0A=="},"directories":{},"publish_time":1433732429433,"_hasShrinkwrap":false,"_cnpm_publish_time":1433732429433,"_cnpmcore_publish_time":"2021-12-13T13:56:00.639Z"},"0.2.0":{"name":"whatwg-url","version":"0.2.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"Sebastian Mayr <github@smayr.name"},"dependencies":{"guid":"0.0.12","tr46":"~0.0.1"},"devDependencies":{"istanbul":"~0.3.14","jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"7c5ef8bf8c8b0bafc58b5ecb919eb89382325a14","_id":"whatwg-url@0.2.0","_shasum":"8e0c163bfbbba16f437532bc4dd1451f8da366c3","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"dist":{"shasum":"8e0c163bfbbba16f437532bc4dd1451f8da366c3","size":51707,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.2.0.tgz","integrity":"sha512-Zi4sXJX8v2uXjPUOv3jX8cHe7CCS4DFRiFzEnl2wwm3nx7U3wywdQCd4svhNqbKFbgQHkehumjIWBZa8yXZs3A=="},"directories":{},"publish_time":1433683646272,"_hasShrinkwrap":false,"_cnpm_publish_time":1433683646272,"_cnpmcore_publish_time":"2021-12-13T13:56:01.830Z"},"0.1.0":{"name":"whatwg-url","version":"0.1.0","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"Sebastian Mayr <github@smayr.name"},"devDependencies":{"jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"d0a5301f866909b3be599eb8aef790f6d1cde6eb","_id":"whatwg-url@0.1.0","_shasum":"b5d7fc37ae3f65a987f9367b8662624999da39f3","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"dist":{"shasum":"b5d7fc37ae3f65a987f9367b8662624999da39f3","size":5368,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.1.0.tgz","integrity":"sha512-sAYOAL+h3O0uZC6CUrj7HtpNciaTV+8tPenTvkjrXTCkK3+umoQpN91tjZnWDlUOtd+jIO3TUB/OCDEEL3pA2A=="},"directories":{},"publish_time":1433425760087,"_hasShrinkwrap":false,"_cnpm_publish_time":1433425760087,"_cnpmcore_publish_time":"2021-12-13T13:56:03.101Z"},"0.0.1":{"name":"whatwg-url","version":"0.0.1","description":"An implementation of the WHATWG URL algorithm","main":"lib/url.js","author":{"name":"Sebastian Mayr","email":"Sebastian Mayr <github@smayr.name"},"devDependencies":{"jscs":"^1.13.0","jshint":"^2.7.0","mocha":"^2.2.4","request":"^2.55.0"},"scripts":{"lint":"jscs lib/ test/ scripts/ && jshint lib/ test/ scripts/","pretest":"iojs scripts/get-latest-platform-tests.js","test":"npm run lint && mocha"},"gitHead":"d0a5301f866909b3be599eb8aef790f6d1cde6eb","_id":"whatwg-url@0.0.1","_shasum":"7c9f44c05a635f63387b030bce0e71238da9e06d","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"dist":{"shasum":"7c9f44c05a635f63387b030bce0e71238da9e06d","size":6934,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-0.0.1.tgz","integrity":"sha512-K8pvgp3xogxqDhfjE2PgkIkZBpPQz2Fn/amzuLHlGtaF8wJoRyHG0QjNHufdu3valu1QpzOfQFxZVt27g7cLcQ=="},"directories":{},"publish_time":1433423398924,"_hasShrinkwrap":false,"_cnpm_publish_time":1433423398924,"_cnpmcore_publish_time":"2021-12-13T13:56:04.220Z"},"11.0.0":{"name":"whatwg-url","version":"11.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^3.0.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^1.4.0","benchmark":"^2.1.4","browserify":"^17.0.0","domexception":"^4.0.0","eslint":"^7.32.0","got":"^11.8.2","jest":"^27.2.4","webidl2js":"^17.0.0"},"engines":{"node":">=12"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"a21a69a589a2ac4433d2d0c1ab8064f2ee243fbd","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@11.0.0","_nodeVersion":"16.11.1","_npmVersion":"8.0.0","dist":{"shasum":"0a849eebb5faf2119b901bb76fd795c2848d4018","size":18891,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-11.0.0.tgz","integrity":"sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_11.0.0_1634673614883_0.34639570455135504"},"_hasShrinkwrap":false,"publish_time":1634673615053,"_cnpm_publish_time":1634673615053,"_cnpmcore_publish_time":"2021-12-13T13:55:22.928Z"},"10.0.0":{"name":"whatwg-url","version":"10.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^3.0.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^1.4.0","benchmark":"^2.1.4","browserify":"^17.0.0","domexception":"^4.0.0","eslint":"^7.32.0","got":"^11.8.2","jest":"^27.2.4","webidl2js":"^17.0.0"},"engines":{"node":">=12"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"e2d79901a707851f43c78c3a34e2d3bf83e572e1","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@10.0.0","_nodeVersion":"16.9.1","_npmVersion":"7.21.1","dist":{"shasum":"37264f720b575b4a311bd4094ed8c760caaa05da","size":18855,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-10.0.0.tgz","integrity":"sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_10.0.0_1633539039867_0.20033015988023606"},"_hasShrinkwrap":false,"publish_time":1633539040037,"_cnpm_publish_time":1633539040037,"_cnpmcore_publish_time":"2021-12-13T13:55:23.295Z"},"9.1.0":{"name":"whatwg-url","version":"9.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^2.1.0","webidl-conversions":"^6.1.0"},"devDependencies":{"@domenic/eslint-config":"^1.2.0","browserify":"^17.0.0","domexception":"^2.0.1","eslint":"^7.29.0","glob":"^7.1.7","got":"^11.8.2","jest":"^27.0.5","recast":"^0.20.4","webidl2js":"^16.2.0"},"engines":{"node":">=12"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"210a7a694a661fd1163ff623a2e074ca72981c42","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@9.1.0","_nodeVersion":"16.6.0","_npmVersion":"7.19.1","dist":{"shasum":"1b112cf237d72cd64fa7882b9c3f6234a1c3050d","size":18318,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-9.1.0.tgz","integrity":"sha512-CQ0UcrPHyomtlOCot1TL77WyMIm/bCwrJ2D6AOKGwEczU9EpyoqAokfqrf/MioU9kHcMsmJZcg1egXix2KYEsA=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_9.1.0_1628178917140_0.627897498213732"},"_hasShrinkwrap":false,"publish_time":1628178917332,"_cnpm_publish_time":1628178917332,"_cnpmcore_publish_time":"2021-12-13T13:55:23.652Z"},"9.0.0":{"name":"whatwg-url","version":"9.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^2.1.0","webidl-conversions":"^6.1.0"},"devDependencies":{"@domenic/eslint-config":"^1.2.0","browserify":"^17.0.0","domexception":"^2.0.1","eslint":"^7.29.0","glob":"^7.1.7","got":"^11.8.2","jest":"^27.0.5","recast":"^0.20.4","webidl2js":"^16.2.0"},"engines":{"node":">=12"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"a96b4f93f2338aad01b21160d9ceb6eea628942b","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@9.0.0","_nodeVersion":"16.4.0","_npmVersion":"7.18.1","dist":{"shasum":"7de99809eaaba2bff7e0a995a516b26aa789fb89","size":18296,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-9.0.0.tgz","integrity":"sha512-KGnRJgaFqeUnHQH/3KbcBh8VB6nKCodfzmBih0lizk+FlETQ+IYti4WbV2GL5D5A0++79nizlMwNaQCtxmwL7w=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_9.0.0_1624742392535_0.004081947534856578"},"_hasShrinkwrap":false,"publish_time":1624742392676,"_cnpm_publish_time":1624742392676,"_cnpmcore_publish_time":"2021-12-13T13:55:24.035Z"},"8.7.0":{"name":"whatwg-url","version":"8.7.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash":"^4.7.0","tr46":"^2.1.0","webidl-conversions":"^6.1.0"},"devDependencies":{"@domenic/eslint-config":"^1.2.0","browserify":"^17.0.0","domexception":"^2.0.1","eslint":"^7.29.0","glob":"^7.1.7","got":"^11.8.2","jest":"^27.0.5","recast":"^0.20.4","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"c41e9e7b3b80c25d831e404bc8576f990c844180","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.7.0","_nodeVersion":"16.4.0","_npmVersion":"7.18.1","dist":{"shasum":"656a78e510ff8f3937bc0bcbe9f5c0ac35941b77","size":18531,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz","integrity":"sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.7.0_1624654866887_0.7115969270687144"},"_hasShrinkwrap":false,"publish_time":1624654867287,"_cnpm_publish_time":1624654867287,"_cnpmcore_publish_time":"2021-12-13T13:55:24.423Z"},"8.6.0":{"name":"whatwg-url","version":"8.6.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash":"^4.7.0","tr46":"^2.1.0","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^17.0.0","domexception":"^2.0.1","eslint":"^7.28.0","glob":"^7.1.7","got":"^11.8.2","jest":"^27.0.4","recast":"^0.20.4","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"b5f41c62fb1c49175f690455db4e51e62ea749e3","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.6.0","_nodeVersion":"15.13.0","_npmVersion":"7.7.6","dist":{"shasum":"27c0205a4902084b872aecb97cf0f2a7a3011f4c","size":18478,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.6.0.tgz","integrity":"sha512-os0KkeeqUOl7ccdDT1qqUcS4KH4tcBTSKK5Nl5WKb2lyxInIZ/CpjkqKa1Ss12mjfdcRX9mHmPPs7/SxG1Hbdw=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.6.0_1623171186924_0.46817678593978296"},"_hasShrinkwrap":false,"publish_time":1623171187119,"_cnpm_publish_time":1623171187119,"_cnpmcore_publish_time":"2021-12-13T13:55:24.795Z"},"8.5.0":{"name":"whatwg-url","version":"8.5.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^17.0.0","domexception":"^2.0.1","eslint":"^7.20.0","glob":"^7.1.6","got":"^11.8.1","jest":"^26.6.3","recast":"^0.20.4","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"058fa4fba3b1d183e0ef9f753434386c9667f19e","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.5.0","_nodeVersion":"15.11.0","_npmVersion":"7.6.1","dist":{"shasum":"7752b8464fc0903fec89aa9846fc9efe07351fd3","size":18608,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.5.0.tgz","integrity":"sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg=="},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.5.0_1616617693964_0.9614243640934454"},"_hasShrinkwrap":false,"publish_time":1616617694163,"_cnpm_publish_time":1616617694163,"_cnpmcore_publish_time":"2021-12-13T13:55:25.232Z"},"8.4.0":{"name":"whatwg-url","version":"8.4.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^16.5.2","domexception":"^2.0.1","eslint":"^7.7.0","glob":"^7.1.6","got":"^11.5.2","jest":"^26.4.2","recast":"^0.20.2","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"6c337df639d238758b48f3a85dd46ba6017a2363","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.4.0","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"50fb9615b05469591d2b2bd6dfaed2942ed72837","size":18557,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.4.0.tgz","integrity":"sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.4.0_1602173871489_0.6987996414748254"},"_hasShrinkwrap":false,"publish_time":1602173871606,"_cnpm_publish_time":1602173871606,"_cnpmcore_publish_time":"2021-12-13T13:55:25.623Z"},"8.3.0":{"name":"whatwg-url","version":"8.3.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^16.5.2","domexception":"^2.0.1","eslint":"^7.7.0","glob":"^7.1.6","got":"^11.5.2","jest":"^26.4.2","recast":"^0.20.2","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"497f05202c4b4261884e036aa315ed8254536833","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.3.0","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"d1e11e565334486cdb280d3101b9c3fd1c867582","size":18570,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.3.0.tgz","integrity":"sha512-BQRf/ej5Rp3+n7k0grQXZj9a1cHtsp4lqj01p59xBWFKdezR8sO37XnpafwNqiFac/v2Il12EIMjX/Y4VZtT8Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.3.0_1601487434300_0.3239265349004674"},"_hasShrinkwrap":false,"publish_time":1601487434436,"_cnpm_publish_time":1601487434436,"_cnpmcore_publish_time":"2021-12-13T13:55:26.046Z"},"8.2.2":{"name":"whatwg-url","version":"8.2.2","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^16.5.2","domexception":"^2.0.1","eslint":"^7.7.0","glob":"^7.1.6","got":"^11.5.2","jest":"^26.4.2","recast":"^0.20.2","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"4282f6ca86571d8b25fd57f42dcd49908f643e76","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.2.2","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"85e7f9795108b53d554cec640b2e8aee2a0d4bfd","size":18627,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.2.2.tgz","integrity":"sha512-PcVnO6NiewhkmzV0qn7A+UZ9Xx4maNTI+O+TShmfE4pqjoCMwUMjkvoNhNHPTvgR7QH9Xt3R13iHuWy2sToFxQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.2.2_1599420563876_0.22111744195295624"},"_hasShrinkwrap":false,"publish_time":1599420564032,"_cnpm_publish_time":1599420564032,"_cnpmcore_publish_time":"2021-12-13T13:55:26.470Z"},"8.2.1":{"name":"whatwg-url","version":"8.2.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^16.5.2","domexception":"^2.0.1","eslint":"^7.7.0","glob":"^7.1.6","got":"^11.5.2","jest":"^26.4.2","recast":"^0.20.2","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"3052b3b6141c2f9d7e6e28dd7729eb44fb2f61c5","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.2.1","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"ed73417230784b281fb2a32c3c501738b46167c3","size":18504,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.2.1.tgz","integrity":"sha512-ZmVCr6nfBeaMxEHALLEGy0LszYjpJqf6PVNQUQ1qd9Et+q7Jpygd4rGGDXgHjD8e99yLFseD69msHDM4YwPZ4A=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.2.1_1598370775719_0.98344739277726"},"_hasShrinkwrap":false,"publish_time":1598370775895,"_cnpm_publish_time":1598370775895,"_cnpmcore_publish_time":"2021-12-13T13:55:26.935Z"},"8.2.0":{"name":"whatwg-url","version":"8.2.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^6.1.0"},"devDependencies":{"browserify":"^16.5.2","domexception":"^2.0.1","eslint":"^7.7.0","glob":"^7.1.6","got":"^11.5.2","jest":"^26.4.2","recast":"^0.20.2","webidl2js":"^16.2.0"},"engines":{"node":">=10"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"56e557231cf14ea3104e44d45da6c9ca2a1216e5","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.2.0","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"shasum":"89383f80ea3888734d1cf29526c135d52e60166d","size":18492,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.2.0.tgz","integrity":"sha512-Sl4svq71j4kzaFD13uxkVl2AIsbj/xwp8NTM1VMhFRyNT1ZMTWaV6+Pva0fQs7y8+cAEPrDGfCAFLvJejhT79g=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.2.0_1598284604545_0.07155127697778196"},"_hasShrinkwrap":false,"publish_time":1598284604690,"_cnpm_publish_time":1598284604690,"_cnpmcore_publish_time":"2021-12-13T13:55:27.461Z"},"8.1.0":{"name":"whatwg-url","version":"8.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.2","webidl-conversions":"^5.0.0"},"devDependencies":{"browserify":"^16.5.0","domexception":"^2.0.1","eslint":"^6.8.0","got":"^10.6.0","jest":"^25.1.0","recast":"^0.18.7","webidl2js":"^14.0.0"},"engines":{"node":">=10"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"1e9fe4924f9760499ed9f722bade9afed4c14265","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.1.0","_nodeVersion":"14.0.0","_npmVersion":"6.14.4","dist":{"shasum":"c628acdcf45b82274ce7281ee31dd3c839791771","size":16869,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.1.0.tgz","integrity":"sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.1.0_1588964820310_0.7405488527743682"},"_hasShrinkwrap":false,"publish_time":1588964820483,"_cnpm_publish_time":1588964820483,"_cnpmcore_publish_time":"2021-12-13T13:55:27.897Z"},"8.0.0":{"name":"whatwg-url","version":"8.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^2.0.0","webidl-conversions":"^5.0.0"},"devDependencies":{"browserify":"^16.5.0","domexception":"^2.0.1","eslint":"^6.8.0","got":"^10.2.1","jest":"^24.9.0","recast":"^0.18.5","webidl2js":"^12.0.0"},"engines":{"node":">=10"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","build-live-viewer":"browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"2a73056229253b42b6833aff93331097f5b51674","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@8.0.0","_nodeVersion":"12.1.0","_npmVersion":"6.9.0","dist":{"shasum":"37f256cb746398e19b107bd6ef820b4ae2d15871","size":16858,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.0.0.tgz","integrity":"sha512-41ou2Dugpij8/LPO5Pq64K5q++MnRCBpEHvQr26/mArEKTkCV5aoXIqyhuYtE0pkqScXwhf2JP57rkRTYM29lQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_8.0.0_1577995852651_0.6281129849289138"},"_hasShrinkwrap":false,"publish_time":1577995852787,"_cnpm_publish_time":1577995852787,"_cnpmcore_publish_time":"2021-12-13T13:55:28.412Z"},"7.1.0":{"name":"whatwg-url","version":"7.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.1","webidl-conversions":"^4.0.2"},"devDependencies":{"browserify":"^16.2.2","domexception":"^1.0.1","eslint":"^5.4.0","got":"^9.2.2","jest":"^23.5.0","recast":"^0.15.3","webidl2js":"^9.0.1"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","build-live-viewer":"browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"d1c8d31465924aaf654a55254c9c63526b73c9dd","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@7.1.0","_nodeVersion":"12.9.1","_npmVersion":"6.10.2","dist":{"shasum":"c2c492f1eca612988efd3d2266be1b9fc6170d06","size":16584,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-7.1.0.tgz","integrity":"sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_7.1.0_1571673869527_0.6964578719490482"},"_hasShrinkwrap":false,"publish_time":1571673869957,"_cnpm_publish_time":1571673869957,"_cnpmcore_publish_time":"2021-12-13T13:55:28.906Z"},"7.0.0":{"name":"whatwg-url","version":"7.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.1","webidl-conversions":"^4.0.2"},"devDependencies":{"browserify":"^16.2.2","domexception":"^1.0.1","eslint":"^5.4.0","jest":"^23.5.0","jsdom":"^11.12.0","recast":"^0.15.3","request":"^2.88.0","webidl2js":"^9.0.1"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","build-live-viewer":"browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"a7ca3cad23d5c4cb263c751492f4a1f867dfafca","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@7.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"fde926fa54a599f3adf82dff25a9f7be02dc6edd","size":16352,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-7.0.0.tgz","integrity":"sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_7.0.0_1534620878844_0.5401327223354646"},"_hasShrinkwrap":false,"publish_time":1534620878926,"_cnpm_publish_time":1534620878926,"_cnpmcore_publish_time":"2021-12-13T13:55:29.388Z"},"6.5.0":{"name":"whatwg-url","version":"6.5.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.1","webidl-conversions":"^4.0.2"},"devDependencies":{"browserify":"^16.2.2","domexception":"^1.0.1","eslint":"^4.19.1","istanbul":"~0.4.5","jest":"^22.4.3","jsdom":"^11.8.0","recast":"~0.14.7","request":"^2.85.0","webidl2js":"^7.4.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","build-live-viewer":"browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"4a073d8641307c377ef736d320616018c17c25e4","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.5.0","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"f2df02bff176fd65070df74ad5ccbb5a199965a8","size":15749,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.5.0.tgz","integrity":"sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_6.5.0_1528490251889_0.8751875236451687"},"_hasShrinkwrap":false,"publish_time":1528490252015,"_cnpm_publish_time":1528490252015,"_cnpmcore_publish_time":"2021-12-13T13:55:29.822Z"},"6.4.1":{"name":"whatwg-url","version":"6.4.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.1","webidl-conversions":"^4.0.2"},"devDependencies":{"domexception":"^1.0.1","eslint":"^4.19.1","istanbul":"~0.4.5","jest":"^22.4.3","jsdom":"^11.8.0","recast":"~0.14.7","request":"^2.85.0","webidl2js":"^7.4.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"cb9f0dd5f01cedcbc81df3f8faeaffae714e9fd2","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.4.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"fdb94b440fd4ad836202c16e9737d511f012fd67","size":15649,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.4.1.tgz","integrity":"sha512-FwygsxsXx27x6XXuExA/ox3Ktwcbf+OAvrKmLulotDAiO1Q6ixchPFaHYsis2zZBZSJTR0+dR+JVtf7MlbqZjw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_6.4.1_1524424529474_0.5994462621079473"},"_hasShrinkwrap":false,"publish_time":1524424529579,"_cnpm_publish_time":1524424529579,"_cnpmcore_publish_time":"2021-12-13T13:55:30.286Z"},"6.4.0":{"name":"whatwg-url","version":"6.4.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.0","webidl-conversions":"^4.0.1"},"devDependencies":{"domexception":"^1.0.0","eslint":"^4.1.1","istanbul":"~0.4.3","jest":"^21.0.2","jsdom":"^11.0.0","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"6bb04c76f48ff5d6eee9776edbc66c648d840179","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.4.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"08fdf2b9e872783a7a1f6216260a1d66cc722e08","size":15236,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.4.0.tgz","integrity":"sha512-Z0CVh/YE217Foyb488eo+iBv+r7eAQ0wSTyApi9n06jhcA3z6Nidg/EGvl0UFkg7kMdKxfBzzr+o9JF+cevgMg=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.4.0.tgz_1512513561005_0.5477508250623941"},"directories":{},"publish_time":1512513562006,"_hasShrinkwrap":false,"_cnpm_publish_time":1512513562006,"_cnpmcore_publish_time":"2021-12-13T13:55:30.826Z"},"6.3.0":{"name":"whatwg-url","version":"6.3.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.0","webidl-conversions":"^4.0.1"},"devDependencies":{"domexception":"^1.0.0","eslint":"^4.1.1","istanbul":"~0.4.3","jest":"^21.0.2","jsdom":"^11.0.0","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"18d92e92de5c052b90694bae9be0a89002f2412f","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.3.0","_npmVersion":"5.4.2","_nodeVersion":"8.5.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"597ee5488371abe7922c843397ddec1ae94c048d","size":15200,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.3.0.tgz","integrity":"sha512-rM+hE5iYKGPAOu05mIdJR47pYSR2vDzfrTEFRc/S8D3L60yW8BuXmUJ7Kog7x/DrokFN7JNaHKadpzjouKRRAw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.3.0.tgz_1506300938920_0.32468617195263505"},"directories":{},"publish_time":1506300939030,"_hasShrinkwrap":false,"_cnpm_publish_time":1506300939030,"_cnpmcore_publish_time":"2021-12-13T13:55:31.430Z"},"6.2.1":{"name":"whatwg-url","version":"6.2.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.0","webidl-conversions":"^4.0.1"},"devDependencies":{"domexception":"^1.0.0","eslint":"^4.1.1","istanbul":"~0.4.3","jest":"^21.0.2","jsdom":"^11.0.0","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"be9038b00a2a1da7a5b4717cee13e4c734e10d8a","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.2.1","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"db8fb96d7f02661af266e3cefc18425923900a00","size":15580,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.2.1.tgz","integrity":"sha512-+WH1K7dyXmt9a3U1Nt1GcsQsmnnHWfl/D8VTSK30ltddZukygZh691yNmydWcyzn0aDwc9+OFpDHYwzRgBEZTQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.2.1.tgz_1505176449662_0.3377517997287214"},"directories":{},"publish_time":1505176450664,"_hasShrinkwrap":false,"_cnpm_publish_time":1505176450664,"_cnpmcore_publish_time":"2021-12-13T13:55:32.067Z"},"6.2.0":{"name":"whatwg-url","version":"6.2.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"^1.0.0","webidl-conversions":"^4.0.1"},"devDependencies":{"domexception":"^1.0.0","eslint":"^4.1.1","istanbul":"~0.4.3","jest":"^21.0.2","jsdom":"^11.0.0","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"jest --coverage","lint":"eslint .","prepublish":"node scripts/transform.js && node scripts/convert-idl.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"8cd6fe99047b0435d97123adfcc6b500de6e6cc0","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.2.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"36a5fee54c32b9f926000031e5526c72ad22ede6","size":15578,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.2.0.tgz","integrity":"sha512-9sOJZPQEVV7P1HVLQqJQnqO79KoH1hr3z5vvc0Uxq78f4Hn5Y2ddnjeEKfokJCeeDCC1+wxJh4KtYHNXzzf00Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.2.0.tgz_1505175805052_0.049473063088953495"},"directories":{},"publish_time":1505175806069,"_hasShrinkwrap":false,"_cnpm_publish_time":1505175806069,"_cnpmcore_publish_time":"2021-12-13T13:55:32.635Z"},"6.1.0":{"name":"whatwg-url","version":"6.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"~0.0.3","webidl-conversions":"^4.0.1"},"devDependencies":{"eslint":"^4.1.1","istanbul":"~0.4.3","jsdom":"^11.0.0","mocha":"^3.4.2","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"ebc0b39f5d24ad4ac22cd10a8e25840cff852f8c","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.1.0","_shasum":"5fc8279b93d75483b9ced8b26239854847a18578","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"5fc8279b93d75483b9ced8b26239854847a18578","size":15136,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.1.0.tgz","integrity":"sha512-fEPI5W0waHZCiBgaz4LxvJbDgaid3ULlHGBNMgqYkwJqbAHRXARn4PNNAhmJYLM10B5mE7vCF7G71kGsVASGuA=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.1.0.tgz_1498781749852_0.31180791836231947"},"directories":{},"publish_time":1498781750961,"_hasShrinkwrap":false,"_cnpm_publish_time":1498781750961,"_cnpmcore_publish_time":"2021-12-13T13:55:33.279Z"},"6.0.1":{"name":"whatwg-url","version":"6.0.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","tr46":"~0.0.3","webidl-conversions":"^4.0.1"},"devDependencies":{"eslint":"^4.1.1","istanbul":"~0.4.3","jsdom":"^11.0.0","mocha":"^3.4.2","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"5738b3effd2307d12683bd7fd5dc5a6391ce1147","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.0.1","_npmVersion":"5.0.4","_nodeVersion":"8.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"e8c88d2c028c4a463d4a0f78e6bb421e4082b323","size":14914,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.0.1.tgz","integrity":"sha512-zC0Q3WsTebgwcOd9dNgeXJ/j2ZuUuAXE5i3ugG7GdpT6RTKR5U4iJdNwMxyXyHQ1sTkdOKYeNAp1Yr+9yFNDIw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.0.1.tgz_1498707863242_0.6493291836231947"},"directories":{},"publish_time":1498707864331,"_hasShrinkwrap":false,"_cnpm_publish_time":1498707864331,"_cnpmcore_publish_time":"2021-12-13T13:55:33.991Z"},"6.0.0":{"name":"whatwg-url","version":"6.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"lodash.sortby":"^4.7.0","stable":"^0.1.6","tr46":"~0.0.3","webidl-conversions":"^4.0.1"},"devDependencies":{"eslint":"^4.1.1","istanbul":"~0.4.3","jsdom":"^11.0.0","mocha":"^3.4.2","recast":"~0.12.6","request":"^2.55.0","webidl2js":"^7.1.0"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"4d52fa4f6bb5d07a3aa34335f59873096b70a3bb","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@6.0.0","_npmVersion":"5.0.4","_nodeVersion":"8.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"b4fabb090b68685e2cdc7f6bae330162814e7173","size":14928,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-6.0.0.tgz","integrity":"sha512-qkcSNAzyC8cvp1NHmJUmhzyFV+6wBa9zkVSwulGYEO01cofdRnSvKQdrSbr4Z5uSRfdJQSpMlqXoGOOpzCemSQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-6.0.0.tgz_1498704193079_0.08849321026355028"},"directories":{},"publish_time":1498704194188,"_hasShrinkwrap":false,"_cnpm_publish_time":1498704194188,"_cnpmcore_publish_time":"2021-12-13T13:55:34.608Z"},"5.0.0":{"name":"whatwg-url","version":"5.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"d34854a7af6ed1204f55d7da7761497bad350a7b","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@5.0.0","_shasum":"966454e8765462e37644d3626f6742ce8b70965d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"966454e8765462e37644d3626f6742ce8b70965d","size":11073,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz","integrity":"sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url-5.0.0.tgz_1495832200994_0.4803313452284783"},"directories":{},"publish_time":1495832201955,"_hasShrinkwrap":false,"_cnpm_publish_time":1495832201955,"_cnpmcore_publish_time":"2021-12-13T13:55:35.173Z"},"4.8.0":{"name":"whatwg-url","version":"4.8.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"0a7f2fbd14aa99a1bcbebe5449e3ecc839af1281","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.8.0","_shasum":"d2981aa9148c1e00a41c5a6131166ab4683bbcc0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"d2981aa9148c1e00a41c5a6131166ab4683bbcc0","size":11118,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.8.0.tgz","integrity":"sha512-nUvUPuenPFtPfy/X+dAYh/TfRbTBlnXTM5iIfLseJFkkQewmpG9pGR6i87E9qL+lZaJzv+99kkQWoGOtLfkZQQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/whatwg-url-4.8.0.tgz_1494442601895_0.890925264917314"},"directories":{},"publish_time":1494442603181,"_hasShrinkwrap":false,"_cnpm_publish_time":1494442603181,"_cnpmcore_publish_time":"2021-12-13T13:55:35.825Z"},"4.7.1":{"name":"whatwg-url","version":"4.7.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"08f7c219053825e78aabeb622e9eefeab499a802","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.7.1","_shasum":"df4dc2e3f25a63b1fa5b32ed6d6c139577d690de","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"df4dc2e3f25a63b1fa5b32ed6d6c139577d690de","size":11095,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.7.1.tgz","integrity":"sha512-7rwLuNiZQbujtIu7Ibp7mq9X/Swqq90X0+zOWESoViRYcIOoQWtThlRX9K2YQHZLwGZv4CBOdTc4N3/SzAdb6w=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.7.1.tgz_1493066682277_0.8912100386805832"},"directories":{},"publish_time":1493066684321,"_hasShrinkwrap":false,"_cnpm_publish_time":1493066684321,"_cnpmcore_publish_time":"2021-12-13T13:55:36.438Z"},"4.7.0":{"name":"whatwg-url","version":"4.7.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"6e0f00c6c020a81c9b918e64c757ba6a727743f6","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.7.0","_shasum":"202035ac1955b087cdd20fa8b58ded3ab1cd2af5","_from":".","_npmVersion":"4.5.0","_nodeVersion":"7.2.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"202035ac1955b087cdd20fa8b58ded3ab1cd2af5","size":11104,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.7.0.tgz","integrity":"sha512-qXGcxwrigpFbkkngFH6EdO6Qt2gb/4zymaHIRqDJTGyRLeRd3KtDH0aCMkvRLXJMXENquxDt0Ld9bylg88Ekrw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/whatwg-url-4.7.0.tgz_1491196642007_0.7352425667922944"},"directories":{},"publish_time":1491196643819,"_hasShrinkwrap":false,"_cnpm_publish_time":1491196643819,"_cnpmcore_publish_time":"2021-12-13T13:55:37.039Z"},"4.6.0":{"name":"whatwg-url","version":"4.6.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"084105d1b524c58d816a57602004c9d1403e99c5","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.6.0","_shasum":"ef98da442273be04cf9632e176f257d2395a1ae4","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"ef98da442273be04cf9632e176f257d2395a1ae4","size":11050,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.6.0.tgz","integrity":"sha512-G6gmP0dV3JEmFD7OpSMkxDirRHGHTv/U9ZfqpOS38AJXFsnU0s+PKOiTnOHBsK1w4VPXQNZBeIgInQm0zzoz8A=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.6.0.tgz_1489608567954_0.9198021700140089"},"directories":{},"publish_time":1489608569895,"_hasShrinkwrap":false,"_cnpm_publish_time":1489608569895,"_cnpmcore_publish_time":"2021-12-13T13:55:37.666Z"},"4.5.1":{"name":"whatwg-url","version":"4.5.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","files":["lib/"],"author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"0a1403bcc0a66ec6dc3efedf3c3947ac690a5c24","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.5.1","_shasum":"ba634f630ff0778212c52ea9055d2d061380b1bb","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"ba634f630ff0778212c52ea9055d2d061380b1bb","size":10963,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.5.1.tgz","integrity":"sha512-B8mgGfhn/3JIucBVRUfjlQj/3YLVjIOGzck3KNqzhekg1wybOIW3ZflFaLc9SqNR/JE4S/dXbYju7f12cyYHnw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/whatwg-url-4.5.1.tgz_1489346471258_0.9136115643195808"},"directories":{},"publish_time":1489346471865,"_hasShrinkwrap":false,"_cnpm_publish_time":1489346471865,"_cnpmcore_publish_time":"2021-12-13T13:55:38.461Z"},"4.5.0":{"name":"whatwg-url","version":"4.5.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"f280010cdc26b016d9c8f785d0ac61fea41e1f39","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.5.0","_shasum":"79bb6f0e370a4dda1cbc8f3062a490cf8bbb09ea","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"79bb6f0e370a4dda1cbc8f3062a490cf8bbb09ea","size":73140,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.5.0.tgz","integrity":"sha512-62+1Y/3MfBoWowCheMuVuMqaAn/lcJKQ9KzHaol9lmi9M5XVuEzkMJBKRDmV0wYIy7uN4G0Mh7wbTQSEoUajYQ=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/whatwg-url-4.5.0.tgz_1487785438418_0.1314921067096293"},"directories":{},"publish_time":1487785439019,"_hasShrinkwrap":false,"_cnpm_publish_time":1487785439019,"_cnpmcore_publish_time":"2021-12-13T13:55:39.148Z"},"4.4.0":{"name":"whatwg-url","version":"4.4.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"8d2df0a2dfe24cbabf72bb4dbd3088481f01236f","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.4.0","_shasum":"594f95781545c13934a62db40897c818cafa2e04","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"594f95781545c13934a62db40897c818cafa2e04","size":73144,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.4.0.tgz","integrity":"sha512-d9l8wkozQjACGpW+4fKdiKpYbbAAZ/9ywiDh/6hZMXgxHjiSbnli6ZBrTXe7nlm82yx3NIuOJR82whGdUCFTBg=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.4.0.tgz_1487277003155_0.2883491162210703"},"directories":{},"publish_time":1487277005197,"_hasShrinkwrap":false,"_cnpm_publish_time":1487277005197,"_cnpmcore_publish_time":"2021-12-13T13:55:39.915Z"},"4.3.0":{"name":"whatwg-url","version":"4.3.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"0f228168cb3aa31366c182f4114ec4d821fb351d","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.3.0","_shasum":"92aaee21f4f2a642074357d70ef8500a7cbb171a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"92aaee21f4f2a642074357d70ef8500a7cbb171a","size":69792,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.3.0.tgz","integrity":"sha512-//VBXpZ8ZHPIkXbtwAuzz4arWsGvGQpWQRRSkGsMuJtkW9UuASFbyXn4CluHEAHXbJ6Px53yLYHf6LNepDIPbA=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.3.0.tgz_1484181629024_0.38307241164147854"},"directories":{},"publish_time":1484181631291,"_hasShrinkwrap":false,"_cnpm_publish_time":1484181631291,"_cnpmcore_publish_time":"2021-12-13T13:55:40.704Z"},"4.2.0":{"name":"whatwg-url","version":"4.2.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"2556e463883639ea74e61d518bf53fb5816b1099","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.2.0","_shasum":"abf1a3f5ff4bc2005b3f0c2119382631789d8e44","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"abf1a3f5ff4bc2005b3f0c2119382631789d8e44","size":69460,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.2.0.tgz","integrity":"sha512-YtaURl3J+k2cqFC881a7Toszc5YNqF+PxRisqYvayMqQ9g+R8tuLmTB1py+8kWVIaCmn0gTCkeImHf441rYL1Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/whatwg-url-4.2.0.tgz_1483481566169_0.0977134327404201"},"directories":{},"publish_time":1483481566910,"_hasShrinkwrap":false,"_cnpm_publish_time":1483481566910,"_cnpmcore_publish_time":"2021-12-13T13:55:41.535Z"},"4.1.1":{"name":"whatwg-url","version":"4.1.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"43e343837b713353d7bde690c407f571b7c670cb","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.1.1","_shasum":"567074923352de781e3500d64a86aa92a971b4a4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"567074923352de781e3500d64a86aa92a971b4a4","size":69739,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.1.1.tgz","integrity":"sha512-ZfgzNjnWCIp2mlqGlZrCOIDunJfPikANOfIa/CeTwdL7pgxKVbY94urL9+pIxe9Jt836KYvRKOC6XygC9cki4Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.1.1.tgz_1482106170404_0.012135676108300686"},"directories":{},"publish_time":1482106172418,"_hasShrinkwrap":false,"_cnpm_publish_time":1482106172418,"_cnpmcore_publish_time":"2021-12-13T13:55:42.368Z"},"4.1.0":{"name":"whatwg-url","version":"4.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"bc1fe214fac5da6b418ab7d46cae7ca879d6d251","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.1.0","_shasum":"7a2863c15805020b37d0c17ed4091f7ce9d1c634","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"7a2863c15805020b37d0c17ed4091f7ce9d1c634","size":10787,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.1.0.tgz","integrity":"sha512-u7mGmpsNAO+WvjNywWGoAg5YGeDwStGjFiiVVPULWjjyth4f57zNqZfOhV2CW77wvO8OA/zkfdM7Uw1aH1V88Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.1.0.tgz_1481305588580_0.8640300696715713"},"directories":{},"publish_time":1481305590354,"_hasShrinkwrap":false,"_cnpm_publish_time":1481305590354,"_cnpmcore_publish_time":"2021-12-13T13:55:43.125Z"},"4.0.0":{"name":"whatwg-url","version":"4.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"ab443c4b4b581fce6661e883f3844bbbafedf451","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@4.0.0","_shasum":"5be362f0b6e2f8760f7260df6e0e1df536f5479c","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"5be362f0b6e2f8760f7260df6e0e1df536f5479c","size":10590,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-4.0.0.tgz","integrity":"sha512-aug4iRR91rrvi4iq2E/oz8Qw/DpejG0WQk8bDiEXZvl6dNojrb3GRMauJ4St/oQiYu0zDwJx4F21/orDUFaCgg=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-4.0.0.tgz_1479612610671_0.005820423131808639"},"directories":{},"publish_time":1479612612579,"_hasShrinkwrap":false,"_cnpm_publish_time":1479612612579,"_cnpmcore_publish_time":"2021-12-13T13:55:43.865Z"},"3.1.0":{"name":"whatwg-url","version":"3.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"96da223b1b36c9028af67dea5911f993420968ae","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@3.1.0","_shasum":"7bdcae490f921aef6451fb6739ec6bbd8e907bf6","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"7bdcae490f921aef6451fb6739ec6bbd8e907bf6","size":10752,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-3.1.0.tgz","integrity":"sha512-eXfeQgVJ6TM0+Fa3Kw36p70QP6lpxAVuleQi7Y9dtHYGvshVB5dfbYx1lzDE+iCujjK0f/neAi3jtMhMg9jlVA=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/whatwg-url-3.1.0.tgz_1479612162307_0.29943900532089174"},"directories":{},"publish_time":1479612162852,"_hasShrinkwrap":false,"_cnpm_publish_time":1479612162852,"_cnpmcore_publish_time":"2021-12-13T13:55:44.620Z"},"3.0.0":{"name":"whatwg-url","version":"3.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.4.3","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"15547ead082b2434331a73d003a71e6923f5783e","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@3.0.0","_shasum":"b9033c50c7ce763e91d78777ce825a6d7f56dac5","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"b9033c50c7ce763e91d78777ce825a6d7f56dac5","size":69767,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-3.0.0.tgz","integrity":"sha512-pv67jGw+Guwm0bIzf3WVs26CYxoj53QAS60W0v+5d5WnPt1tSe1YP6pmATa8mYfzIj2kC0HXKKJd5SSJ55hHRw=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/whatwg-url-3.0.0.tgz_1464463943614_0.6469055290799588"},"directories":{},"publish_time":1464463947252,"_hasShrinkwrap":false,"_cnpm_publish_time":1464463947252,"_cnpmcore_publish_time":"2021-12-13T13:55:45.412Z"},"2.0.1":{"name":"whatwg-url","version":"2.0.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"lib/public-api.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"~0.0.3","webidl-conversions":"^3.0.0"},"devDependencies":{"eslint":"^2.6.0","istanbul":"~0.3.14","mocha":"^2.2.4","recast":"~0.10.29","request":"^2.55.0","webidl2js":"^3.0.2"},"scripts":{"build":"node scripts/transform.js && node scripts/convert-idl.js","coverage":"istanbul cover node_modules/mocha/bin/_mocha","lint":"eslint .","prepublish":"npm run build","pretest":"node scripts/get-latest-platform-tests.js && npm run build","test":"mocha"},"gitHead":"8a94299bb044e46c553e8e0d90ecf338102c2296","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@2.0.1","_shasum":"5396b2043f020ee6f704d9c45ea8519e724de659","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"sebmaster","email":"sebmaster16@gmail.com"},"dist":{"shasum":"5396b2043f020ee6f704d9c45ea8519e724de659","size":10795,"noattachment":false,"tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-2.0.1.tgz","integrity":"sha512-sX+FT4N6iR0ZiqGqyDEKklyfMGR99zvxZD+LQ8IGae5uVGswQ7DOeLPB5KgJY8FzkwSzwqOXLQeVQvtOTSQU9Q=="},"maintainers":[{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"},{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"zirro","email":"code@zirro.se"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/whatwg-url-2.0.1.tgz_1460758356720_0.45845040353015065"},"directories":{},"publish_time":1460758357778,"_hasShrinkwrap":false,"_cnpm_publish_time":1460758357778,"_cnpmcore_publish_time":"2021-12-13T13:55:46.188Z"},"12.0.0":{"name":"whatwg-url","version":"12.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^3.0.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^3.0.0","benchmark":"^2.1.4","domexception":"^4.0.0","esbuild":"^0.16.12","eslint":"^8.30.0","jest":"^29.3.1","minipass-fetch":"^3.0.1","webidl2js":"^17.1.0"},"engines":{"node":">=14"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"c61d5b4fa602fa99d6b24f563d6f12a03f718b21","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@12.0.0","_nodeVersion":"19.1.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-N2SCrbcSPw0gDyNqE+y5qH1gqiOe+HagWfgRJy2SmDO3C23mISmJhQ3zvZljBv2DWfBdLXypAtecWYZ+mg1krQ==","shasum":"cf5798db0f8036de3fffabbcf92180d313811710","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-12.0.0.tgz","fileCount":17,"unpackedSize":95250,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvj6ZYBlpSXyyEKwER96zrQoU+mlLaX5qEyMXC4E0UnQIgbUL9s3B9+Ib+phkYVpNVeCA9stacM0rgHRpwCPchPKQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjs433ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4iBAAhgM+sb2f7yXe4/kPYZ7aHuaKw+EBIzzf22CUUH4ImyLqu5J5\r\nmjvbevnaO77Xe/LYuLw3bw0TtJMSwSoOxJMeAVrdiLnYQPOZyK+3cLJNTUTp\r\nicmrAcp2AZXBaO4YYmRDO7aGGiLD0EvoYQa3yJvDiCBB0Q48fY9u43yZCgD/\r\nFjtTUoXzdG/f+xJXGlK/V6/PGmwh81kcWsv0g+FRiU5ni8ZKYdSsG2cpWlv2\r\nC2lGpH3qz+TSK/MqxYMILvoxUgW7sFEmqFQdRhQTu1YpFBKwwldSMCWi3oVE\r\nzT9IapAduCZ0Bo5MqvcW7EZowLLPE/DxP0YrmVFFqPcGUI7wOrH7IGjs0Ncw\r\nL/slAeWVUKwXcPjDPCfEzymnobXEyouw5rzqKaQXnVy8K+w5OK6zyiazH03D\r\nuM2WXemNEMPRlBlcY5e6G7baPwRUOWo8Mk+xoMAqZCcWh84Pg6H4Zyb4jlC5\r\n2itISWcMnPE4YYm0sWDWIv6jbnYH51GqPUjR+aYzmm2oY3ItUwQGc+1yIOd9\r\nUO/s43kUPX1+BxwiIZtiRfDP62e4hEHdpmwhYrBHRLAeke9WvN492RcWIu6K\r\nfKEoxIjzMoG2sqJGUGWYRQshz5zc7+l7eSNPSDFUUWZmF8WPqiBSmOZf7DTo\r\nd2nGujpuVhwJHjh3QbN08skdkkTal34ZxvE=\r\n=/Blt\r\n-----END PGP SIGNATURE-----\r\n","size":19049},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_12.0.0_1672711671606_0.6466384149945548"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-03T02:08:02.203Z"},"12.0.1":{"name":"whatwg-url","version":"12.0.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^4.1.1","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^3.0.0","benchmark":"^2.1.4","domexception":"^4.0.0","esbuild":"^0.17.11","eslint":"^8.35.0","jest":"^29.5.0","minipass-fetch":"^3.0.1","webidl2js":"^17.1.0"},"engines":{"node":">=14"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"423b9fad5c8f260d06bbd807bda7eb558fce3260","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@12.0.1","_nodeVersion":"19.7.0","_npmVersion":"9.5.0","dist":{"integrity":"sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==","shasum":"fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-12.0.1.tgz","fileCount":17,"unpackedSize":95250,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJIOSWwUUfbICFJFD3mvFpdClzDRE/HpDRGyxFHTqdmwIhALq7hVrisotMfauF+/BO/pQmB0VKtgvyA7pnQp5kSJq1"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkCDbnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmof6RAAlQZIqeRSmRRzQBFReXDzRkvvDZgsMDst8+VTGWWb5v/VwIYT\r\nHv2ap0x74Sb+g1yl/SibwMxm2Q7qEgiWMKljj8xZ8/4K4SmMSJ9FzUiFNrix\r\nWq4810bsI/1tP4NA6lBuEBkgAGmjEcWJED/umpusc6SNNlv7p6wTM8hyKd5U\r\nBsLwIA8IQrXO2opiBDVsAsvJP9zunuqNeTo+ibGvhDyFnaw26c6P/9Mb+Dm6\r\nDihaKj54xGsBoz1L2VEZmqYYvUP2SbE0zUJOpSCJB3lx0Xsc1sDSzUYAplwG\r\noqs0rtF7Fv5fFZDvKUfQfYw41VRNyYTZfIogNQNT7lINZwdiZQYH+G10qWK4\r\ntohllFQy/F2nmQNvGNZLGs0Ug+vE02skbi1nC3HAJcMyswhVQqyxdUJiLAlD\r\nRxQqVc79VFcV29HgBhv/7XPYBNml8M6m9A1H92mbwJ3Re8TPQ5uGDCb6Tqll\r\n/zIcOkyKCy7AHdxW/vO+xZrOYacoUZ9NLeJ8tRqhKR5kkO/c5Ht1JdSIJNOy\r\neujaziBN+MEWm24UMwRTH6d/VaQRc9YVi8f/EGYqUOKsMMhRa69Gn0CvDCbL\r\nFO0hKoqiKAfqWM/LWrr3flUthtK21J+n0N+JRuNrT+fXpoCxoIQ2fiR2QAs4\r\nH4BSsTFRi9lz4BRPc0/5o5989GA26CAkErc=\r\n=M+wz\r\n-----END PGP SIGNATURE-----\r\n","size":19050},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_12.0.1_1678259943165_0.8303601655605488"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-08T07:19:03.350Z","publish_time":1678259943350},"13.0.0":{"name":"whatwg-url","version":"13.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^4.1.1","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^3.0.0","benchmark":"^2.1.4","domexception":"^4.0.0","esbuild":"^0.17.19","eslint":"^8.41.0","jest":"^29.5.0","minipass-fetch":"^3.0.3","webidl2js":"^17.1.0"},"engines":{"node":">=16"},"scripts":{"coverage":"jest --coverage","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"jest"},"jest":{"collectCoverageFrom":["lib/**/*.js","!lib/utils.js"],"coverageDirectory":"coverage","coverageReporters":["lcov","text-summary"],"testEnvironment":"node","testMatch":["<rootDir>/test/**/*.js"],"testPathIgnorePatterns":["^<rootDir>/test/testharness.js$","^<rootDir>/test/web-platform-tests/"]},"gitHead":"64edabb353e9f69af4385ac6332b5ab624684747","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_id":"whatwg-url@13.0.0","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==","shasum":"b7b536aca48306394a34e44bda8e99f332410f8f","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-13.0.0.tgz","fileCount":17,"unpackedSize":97976,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrL9bkQfVluLFQdzVHyqLNwgkbedGmrw3YcnmIi9vadAIhAJiyNq8nUnZ7iZKQ4XaU7XuRf5sOx/U8TThZl0Xh8gGQ"}],"size":19334},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_13.0.0_1685262853808_0.11358340651737486"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-28T08:34:14.013Z","publish_time":1685262854013,"_source_registry_name":"default"},"14.0.0":{"name":"whatwg-url","version":"14.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^5.0.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^3.0.0","benchmark":"^2.1.4","c8":"^8.0.1","domexception":"^4.0.0","esbuild":"^0.19.5","eslint":"^8.53.0","webidl2js":"^17.1.0"},"engines":{"node":">=18"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint .","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"_id":"whatwg-url@14.0.0","gitHead":"6c6fb1771f9d12d7174d586ebbfc8f2db401557a","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"21.1.0","_npmVersion":"10.2.0","dist":{"integrity":"sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==","shasum":"00baaa7fd198744910c4b1ef68378f2200e4ceb6","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-14.0.0.tgz","fileCount":17,"unpackedSize":97803,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqY8Orgym9YDdlv8H3yexTTsn0e+ho3dScI9VMnkKj0QIhAN1LjIU/SsXmcyrdIvQljE1b9HtLHqz5RokgcNVMpiMA"}],"size":19356},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_14.0.0_1699193937969_0.5104030376808613"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-05T14:18:58.221Z","publish_time":1699193938221,"_source_registry_name":"default"},"14.1.0":{"name":"whatwg-url","version":"14.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^5.0.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^4.0.1","benchmark":"^2.1.4","c8":"^10.1.2","esbuild":"^0.24.0","eslint":"^9.16.0","globals":"^15.13.0","webidl2js":"^18.0.0"},"engines":{"node":">=18"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"_id":"whatwg-url@14.1.0","gitHead":"807353d966f73cdf62f852230b699bbf5c9cefca","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"22.11.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==","shasum":"fffebec86cc8e6c2a657e50dc606207b870f0ab3","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-14.1.0.tgz","fileCount":17,"unpackedSize":98895,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDl9FNLSWA7FLwc5JpPJ0uLYHd7CkonpetAYpWWD8OaswIgSSAhmx9ktP25eDyyapKFY78c/sasLcx+FGLTNNqG4qY="}],"size":19407},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/whatwg-url_14.1.0_1733277434728_0.9361355166842509"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-04T01:57:14.913Z","publish_time":1733277434913,"_source_registry_name":"default"},"14.1.1":{"name":"whatwg-url","version":"14.1.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^5.0.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^4.0.1","benchmark":"^2.1.4","c8":"^10.1.2","esbuild":"^0.24.0","eslint":"^9.16.0","globals":"^15.13.0","webidl2js":"^18.0.0"},"engines":{"node":">=18"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js","bench":"node scripts/benchmark.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"_id":"whatwg-url@14.1.1","gitHead":"0dfbc79cc48342a906ccaba66cc7b1ee5c5cb507","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"23.7.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==","shasum":"ce71e240c61541315833b5cdafd139a479e47058","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-14.1.1.tgz","fileCount":17,"unpackedSize":99235,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDQgfvCLliH/qSWiAgXQ1GqmTn0BsNXZ+N40RIHJRrD3QIhAJ+ujPKnf0Tkf7DPqEa8C2yMYgRW6BZ7an3J3L0q0Nsy"}],"size":19523},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/whatwg-url_14.1.1_1739263973016_0.9176991696890151"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-11T08:52:53.202Z","publish_time":1739263973202,"_source_registry_name":"default"},"14.2.0":{"name":"whatwg-url","version":"14.2.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^5.1.0","webidl-conversions":"^7.0.0"},"devDependencies":{"@domenic/eslint-config":"^4.0.1","benchmark":"^2.1.4","c8":"^10.1.3","esbuild":"^0.25.1","eslint":"^9.22.0","globals":"^16.0.0","webidl2js":"^18.0.0"},"engines":{"node":">=18"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js","bench":"node scripts/benchmark.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"_id":"whatwg-url@14.2.0","gitHead":"414f17a3459b0872baee7a2b77e23953b8a5ccd9","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"23.7.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==","shasum":"4ee02d5d725155dae004f6ae95c73e7ef5d95663","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-14.2.0.tgz","fileCount":17,"unpackedSize":98558,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDDwtNT4nXObRhvdP9yEeuTkn825rEZ8BV//O1ec/UMtwIgCcoxF6hi4Ff8T7v4XF3A4yKYKDYrm6vAx5gQXH69Wng="}],"size":19402},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/whatwg-url_14.2.0_1742022761716_0.5025897377834339"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-03-15T07:12:41.904Z","publish_time":1742022761904,"_source_registry_name":"default"},"15.0.0":{"name":"whatwg-url","version":"15.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^5.1.1","webidl-conversions":"^8.0.0"},"devDependencies":{"@domenic/eslint-config":"^4.0.1","benchmark":"^2.1.4","c8":"^10.1.3","esbuild":"^0.25.9","eslint":"^9.35.0","globals":"^16.4.0","webidl2js":"^19.0.0"},"engines":{"node":">=20"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js","bench":"node scripts/benchmark.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"_id":"whatwg-url@15.0.0","gitHead":"c1d45f450e35759c6a8588498904b7465f937cf4","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"24.4.1","_npmVersion":"11.4.2","dist":{"integrity":"sha512-+0q+Pc6oUhtbbeUfuZd4heMNOLDJDdagYxv756mCf9vnLF+NTj4zvv5UyYNkHJpc3CJIesMVoEIOdhi7L9RObA==","shasum":"2e293304676e03ce4ec85ca857756ff5a156d5ab","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-15.0.0.tgz","fileCount":17,"unpackedSize":100033,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCMi0whA+KBaXk1ZqrwZ/brNLB1yLkmKdlj85DpBC6OnQIgWPeB6CbfQhxNW8n1aA4K1/tzpO0jiyhsqPvtvFkBIMg="}],"size":19703},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/whatwg-url_15.0.0_1757735069538_0.8145815874183155"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-13T03:44:29.719Z","publish_time":1757735069719,"_source_registry_name":"default"},"15.1.0":{"name":"whatwg-url","version":"15.1.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"tr46":"^6.0.0","webidl-conversions":"^8.0.0"},"devDependencies":{"@domenic/eslint-config":"^4.0.1","benchmark":"^2.1.4","c8":"^10.1.3","esbuild":"^0.25.9","eslint":"^9.35.0","globals":"^16.4.0","webidl2js":"^19.0.0"},"engines":{"node":">=20"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js","bench":"node scripts/benchmark.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"_id":"whatwg-url@15.1.0","gitHead":"4ff0e2ec5c4d29cb56b935e9748d41c0e5942548","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"24.7.0","_npmVersion":"11.5.1","dist":{"integrity":"sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==","shasum":"5c433439b9a5789eeb3806bbd0da89a8bd40b8d7","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-15.1.0.tgz","fileCount":17,"unpackedSize":100096,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIHL4dFhY6Aazk2biRGp7m4LCZ1zdBPTlXu0L302iqj3UAiEA73jr9AJHs1ZTvNP6573i+5r922sHpITz6Pyl3Pts1kI="}],"size":19723},"_npmUser":{"name":"domenic","email":"d@domenic.me"},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/whatwg-url_15.1.0_1758156660620_0.6484137308024316"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-18T00:51:00.815Z","publish_time":1758156660815,"_source_registry_name":"default"},"16.0.0":{"name":"whatwg-url","version":"16.0.0","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"@exodus/bytes":"^1.11.0","tr46":"^6.0.0","webidl-conversions":"^8.0.1"},"devDependencies":{"@domenic/eslint-config":"^4.1.0","tinybench":"^6.0.0","c8":"^10.1.3","esbuild":"^0.27.2","eslint":"^9.39.2","globals":"^17.3.0","webidl2js":"^19.1.0"},"engines":{"node":"^20.19.0 || ^22.12.0 || >=24.0.0"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js","bench":"node scripts/benchmark.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"gitHead":"ca9fe33faa48f961391c6873a022c8f60b5cf990","_id":"whatwg-url@16.0.0","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"24.13.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-9CcxtEKsf53UFwkSUZjG+9vydAsFO4lFHBpJUtjBcoJOCJpKnSJNwCw813zrYJHpCJ7sgfbtOe0V5Ku7Pa1XMQ==","shasum":"73bafd41b77c54abfa40c4a4fd9c6103024e97d2","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-16.0.0.tgz","fileCount":17,"unpackedSize":100934,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/whatwg-url@16.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIADBYAn0oT8h4kMxh3An/6U6Gsqb/8B+FG5x9tAEZsANAiEAvwCW+iV7xoAB6SmcxJ7wVOdk0zaQN5CaRzZ0sCs7bg0="}],"size":19878},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:0d308184-061a-469f-ba09-efb52011d4b0"}},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/whatwg-url_16.0.0_1770008430732_0.4936056977105481"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-02-02T05:00:30.896Z","publish_time":1770008430896,"_source_registry_name":"default"},"16.0.1":{"name":"whatwg-url","version":"16.0.1","description":"An implementation of the WHATWG URL Standard's URL API and parsing machinery","main":"index.js","author":{"name":"Sebastian Mayr","email":"github@smayr.name"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"dependencies":{"@exodus/bytes":"^1.11.0","tr46":"^6.0.0","webidl-conversions":"^8.0.1"},"devDependencies":{"@domenic/eslint-config":"^4.1.0","tinybench":"^6.0.0","c8":"^10.1.3","esbuild":"^0.27.2","eslint":"^9.39.2","globals":"^17.3.0","webidl2js":"^19.1.0"},"engines":{"node":"^20.19.0 || ^22.12.0 || >=24.0.0"},"scripts":{"coverage":"c8 node --test --experimental-test-coverage test/*.js","lint":"eslint","prepare":"node scripts/transform.js","pretest":"node scripts/get-latest-platform-tests.js && node scripts/transform.js","build-live-viewer":"esbuild --bundle --format=esm --sourcemap --outfile=live-viewer/whatwg-url.mjs index.js","test":"node --test test/*.js","bench":"node scripts/benchmark.js"},"c8":{"reporter":["text","html"],"exclude":["lib/Function.js","lib/URL.js","lib/URLSearchParams.js","lib/utils.js","scripts/","test/"]},"gitHead":"569898d259128238ae4e6037ada4652d6d10f935","_id":"whatwg-url@16.0.1","bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","_nodeVersion":"24.13.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==","shasum":"047f7f4bd36ef76b7198c172d1b1cebc66f764dd","tarball":"https://registry.npmmirror.com/whatwg-url/-/whatwg-url-16.0.1.tgz","fileCount":17,"unpackedSize":100967,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/whatwg-url@16.0.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIFA4tnAnRNFk4cUz6/nnjgFrAmu7pzQR9An8NDvTgmXXAiAxCxZfOKZ715GdpV1yk6n/euU5E1wVuoA1xz0EYpYRAw=="}],"size":19875},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:0d308184-061a-469f-ba09-efb52011d4b0"}},"directories":{},"maintainers":[{"name":"timothygu","email":"timothygu99@gmail.com"},{"name":"domenic","email":"d@domenic.me"},{"name":"sebmaster","email":"sebmaster16@gmail.com"},{"name":"zirro","email":"code@zirro.se"},{"name":"tmpvar","email":"tmpvar@gmail.com"},{"name":"joris-van-der-wel","email":"joris@jorisvanderwel.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/whatwg-url_16.0.1_1771376629628_0.0897574392406939"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-02-18T01:03:49.781Z","publish_time":1771376629781,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/jsdom/whatwg-url/issues"},"homepage":"https://github.com/jsdom/whatwg-url#readme","repository":{"type":"git","url":"git+https://github.com/jsdom/whatwg-url.git"},"_source_registry_name":"default"}