{"_id":"url-regex","_rev":"51-5b4f54a2067830030b7d410d1d3aae2c","name":"url-regex","time":{"modified":"2022-06-28T06:18:52.366Z","created":"2014-09-05T17:00:11.805Z","1.0.0":"2014-09-05T17:00:11.805Z","1.0.1":"2014-09-05T17:15:01.773Z","1.0.2":"2014-09-05T17:59:03.992Z","1.0.3":"2014-09-05T23:07:41.372Z","1.0.4":"2014-10-27T15:12:15.027Z","2.0.0":"2014-11-19T13:06:37.785Z","2.0.1":"2014-11-19T13:12:21.757Z","2.0.2":"2014-11-19T13:36:19.324Z","2.0.3":"2014-11-21T18:29:40.676Z","2.1.0":"2014-11-26T11:19:45.771Z","2.1.1":"2014-11-26T11:26:27.325Z","2.1.2":"2014-12-01T14:09:43.684Z","2.1.3":"2015-06-16T19:28:38.919Z","3.0.0":"2015-06-22T15:34:39.789Z","3.0.1":"2015-12-05T16:49:13.429Z","3.1.0":"2015-12-05T16:50:18.653Z","3.1.1":"2016-04-13T14:30:20.331Z","3.2.0":"2016-06-08T12:14:59.620Z","4.0.0":"2016-09-29T21:30:39.001Z","4.1.0":"2017-06-02T11:58:11.766Z","4.1.1":"2017-06-13T12:25:51.619Z","5.0.0":"2019-04-21T13:40:03.628Z"},"maintainers":[{"email":"niftylettuce@gmail.com","name":"niftylettuce"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"npm@titanism.com","name":"titanism"}],"dist-tags":{"latest":"5.0.0"},"description":"Regular expression for matching URLs","readme":"# url-regex [![Build Status](http://img.shields.io/travis/kevva/url-regex.svg?style=flat)](https://travis-ci.org/kevva/url-regex)\n\n> Regular expression for matching URLs\n\nBased on this [gist](https://gist.github.com/dperini/729294) by Diego Perini.\n\n\n## Install\n\n```\n$ npm install url-regex\n```\n\n\n## Usage\n\n```js\nconst urlRegex = require('url-regex');\n\nurlRegex().test('http://github.com foo bar');\n//=> true\n\nurlRegex().test('www.github.com foo bar');\n//=> true\n\nurlRegex({exact: true}).test('http://github.com foo bar');\n//=> false\n\nurlRegex({exact: true}).test('http://github.com');\n//=> true\n\nurlRegex({strict: false}).test('github.com foo bar');\n//=> true\n\nurlRegex({exact: true, strict: false}).test('github.com');\n//=> true\n\n'foo http://github.com bar //google.com'.match(urlRegex());\n//=> ['http://github.com', '//google.com']\n```\n\n\n## API\n\n### urlRegex([options])\n\nReturns a `RegExp` for matching URLs.\n\n#### options\n\n##### exact\n\nType: `boolean`<br>\nDefault: `false`\n\nOnly match an exact string. Useful with `RegExp#test` to check if a string is a URL.\n\n##### strict\n\nType: `boolean`<br>\nDefault: `true`\n\nForce URLs to start with a valid protocol or `www`. If set to `false` it'll match the TLD against a list of valid [TLDs](https://github.com/stephenmathieson/node-tlds).\n\n\n## Related\n\n- [get-urls](https://github.com/sindresorhus/get-urls) - Get all URLs in text\n- [linkify-urls](https://github.com/sindresorhus/linkify-urls) - Linkify URLs in text\n\n\n## License\n\nMIT © [Kevin Mårtensson](https://github.com/kevva) and [Diego Perini](https://github.com/dperini)\n","versions":{"1.0.1":{"name":"url-regex","version":"1.0.1","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"devDependencies":{"ava":"0.0.4"},"gitHead":"d90f28d1fab00207219e2b2f36398497e6fc2b4e","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@1.0.1","_shasum":"0b1ec0339f43cfff36ce52cc7db4ce0b57c29b39","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"0b1ec0339f43cfff36ce52cc7db4ce0b57c29b39","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-1.0.1.tgz","integrity":"sha512-yf6HjUoNir+q2IaMvDEO4W5c8ir8oJfOegbFnXUT2kNJuW7EE4EQnNAqjSte5Bh3+ALNAMz5hxAuVER+5DAjYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCq0Mx/xY0qw4zIalngdchy0870aUFJGlydEXdVf7XEggIgF9TlujvF3IPnp/ctNoeSPNo3NkUW7KeS5mAjsCmfEIo="}]},"directories":{}},"1.0.2":{"name":"url-regex","version":"1.0.2","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"devDependencies":{"ava":"0.0.4"},"gitHead":"340e45694d776a436a66673f7105301b41c20e42","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@1.0.2","_shasum":"bf59c2dbafab2544513add9286c4fd099cd489d8","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"bf59c2dbafab2544513add9286c4fd099cd489d8","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-1.0.2.tgz","integrity":"sha512-TlfFzuPxjCuBBbqYZiASASzsqHxhCbjF/3HLgo+2X5RWQ9IZmCvM2twP3NsHlUKbSCUf/d/FTOXj3pyC7WduLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCe0qb8FoW2aNsSmh7GihFJJG0fiOqBj6AJb1+Wd+kWUgIhAKZQoiPh7TyYj0D3cU9zz9Jt+szjVJrCwvFudq7ftwil"}]},"directories":{}},"1.0.3":{"name":"url-regex","version":"1.0.3","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"devDependencies":{"ava":"0.0.4"},"gitHead":"65445b1575bedb8700430700e3986d832d009b15","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@1.0.3","_shasum":"9eaab707e6a8b413ae04890cb8b6b6adc090d259","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"9eaab707e6a8b413ae04890cb8b6b6adc090d259","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-1.0.3.tgz","integrity":"sha512-emy5hOJIzBXUUXvxHjDhvx6hLojFFihuWhE41LAnjihrrRwiptTi/3JS8PrsiH0pJsP1+/rtte+Nkfe2khEZ0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDf+JFAnHFDBhoisKDpj3n3m+/bm20SU7f9E8ZH/kdTzAiAwyXIlQrJoFB1uxUnp3Bk62mZ7o1Ei8Pa6UvMDEtQqHQ=="}]},"directories":{}},"1.0.4":{"name":"url-regex","version":"1.0.4","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"devDependencies":{"ava":"0.0.4"},"gitHead":"72d1931d1d0947efa0734ab886dc0d2f43bc8437","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@1.0.4","_shasum":"da5bd330cdbf434a00c4d19d1cfbe9d00a175eae","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"da5bd330cdbf434a00c4d19d1cfbe9d00a175eae","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-1.0.4.tgz","integrity":"sha512-a5gSupmIF53jT7mBQMTuq1xSvlLlADRbkdC5Y7Dz68b6f+uKmYNF/ERaNtaZ62f1n4//msoFRwohlhiYzGNdqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCo/tUs5VpejzicK8d+Es+mEmbVXouvixCIci7y31/fiwIgLBfRnT0qZ2YqCNL2PG0gTDE70wE5FECV3XjHdWWqIlE="}]},"directories":{}},"2.0.0":{"name":"url-regex","version":"2.0.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.0"},"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"5d504e76a32fe5f2e9a6ea456c0718c82549d9fc","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.0.0","_shasum":"74d7c9cd35bde61d6baa7d7539d9c84ee9cc879c","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"74d7c9cd35bde61d6baa7d7539d9c84ee9cc879c","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.0.0.tgz","integrity":"sha512-NUZIh/tDeVbyCezRzTGkX/TLEdoy3QN5xjrZzbl7eex+xspKzst3QF52USD0NrrGmWVZMKaWrHr1bX73l4XgOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICfSQfGqs9sYAjW55ujGr28X9UTcytu2VrAjgFivOHQsAiBdLfFUyohaIwBxoyKuID8paeon8x9SuUAVYIQxe5vGCA=="}]},"directories":{}},"2.0.1":{"name":"url-regex","version":"2.0.1","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"c54c43a7ed385daa058d3a5131182a4145dc00f2","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.0.1","_shasum":"95fcd1d32a6f76f05fe486307c1b3cfcbdeb221f","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"95fcd1d32a6f76f05fe486307c1b3cfcbdeb221f","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.0.1.tgz","integrity":"sha512-nigsdzb2UsFaQDE491CGJb/UuIm5XQr6CDMI6YobR8tAtXYvmpSpVpFexLEqqAMLtgcEEWTCE8Uao6kjuFIKaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD70GaugNWIiwNMoe3qyhp5rliFgE5aHWdYtdeIymU2HAIgNfEjAwOpluw3cQOsqI1AqGzHRsnFUgfwQIJ64bYUcZ8="}]},"directories":{}},"2.0.2":{"name":"url-regex","version":"2.0.2","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"6c8b7fb5f3861e9f503af40a2a44006f64b0f5ed","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.0.2","_shasum":"13ec1d27809c76f8e3080d1df03bba9c3e5a9124","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"13ec1d27809c76f8e3080d1df03bba9c3e5a9124","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.0.2.tgz","integrity":"sha512-n5PLd+7qTZm7XZPzViGhtvhvn1NNNkUD0lweqYyqfyWja7dKBGVoRZSd51S2DiaSrFS17iFH4iXPSElGxsiWhA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDOEbHS9Z7P6eedZgJacEhnMx1Yf34u25XTSUTGgCFGGAiEAmr+84RS05D1emz9syhpwNgcho4Ux+tk3F5iYByttE40="}]},"directories":{}},"2.0.3":{"name":"url-regex","version":"2.0.3","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"ae35fca3355f5e4cea72919f4b9636cb8c62d4e1","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.0.3","_shasum":"e62443e71b77f36f87f3e85aa4fe1779efba5b8d","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"e62443e71b77f36f87f3e85aa4fe1779efba5b8d","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.0.3.tgz","integrity":"sha512-ws61GhPl2HPvjLA5iXqw6nvclqC1CGegbm/rJekz40J12V0qHZdWr5TFKTbz1VOuluPpCJr/K0/uzhaXR5Q41Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF8C2wmrwG+pHiIn2rD7fR4Mfrdou1ItVFCToO6MVOF9AiEAzxx4se/hHEovdbZuuMjIeR+yLUtH9uHbczsZiNrVqZ0="}]},"directories":{}},"2.1.0":{"name":"url-regex","version":"2.1.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"ca075838db59e62d8bf6590ac80b1e765b279545","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.1.0","_shasum":"d6736db79f7d94df720fd86c1b008af08ce1613d","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"d6736db79f7d94df720fd86c1b008af08ce1613d","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.1.0.tgz","integrity":"sha512-Wq0pOnKYn1WqG4zGDh4yt0ANWBE6JWxR1Uj4p0wNYIFygO5mgUXrqEoieAEFhrVefOQkB4e3bJ5nrWcg5iY6AQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGI/hbDmB5cfXVfHo0Y4PqTbxjsc7TaDAeGdwYWNQw37AiAJVCkHGLtFgiJ0M8wu18gLR69z3ChzLIRD+31/fLEq5w=="}]},"directories":{}},"2.1.1":{"name":"url-regex","version":"2.1.1","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"4beedc0cdbbfeee69f6dd130c20222d1a6acf465","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.1.1","_shasum":"25b3c58a1c8ef68a196acd7a7c55e0d07ae7d85f","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"25b3c58a1c8ef68a196acd7a7c55e0d07ae7d85f","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.1.1.tgz","integrity":"sha512-git0evp1FKgC6hbFIplwgRPHs+gGL2oVEjTiiRYlwWy8IVUfPvvntg7GxlTQeru9Jj8B9MlkPRER8mqDBiHr+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsDdZMiqZv6N9ncS7aj4iyXorln5jP2QiGAznZk7U10AIhAPtTy1zDEIGAWXGc1Fij1sIx/cvIVquQ9Kzqh1RT/j2g"}]},"directories":{}},"2.1.2":{"name":"url-regex","version":"2.1.2","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"https://github.com/kevva/url-regex"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"dependencies":{"ip-regex":"^1.0.1"},"gitHead":"de17af9f8146cf06bd73e32d8a45b36764014636","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex","_id":"url-regex@2.1.2","_shasum":"706e4d965c9af84921085486af5c6639fadf6e06","_from":".","_npmVersion":"2.1.7","_nodeVersion":"0.10.32","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"706e4d965c9af84921085486af5c6639fadf6e06","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.1.2.tgz","integrity":"sha512-B9CTxHuCdsisdYvQJFADQdWbL4kuRBQNUa1+GC5164CdIujoZSe7CmIvJrg+2moqYvQWnAW/JxRudcyUTYnnjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwH28nu+wISYb5wG3fhj40W/13aRaB3pnvzmjpsq3PcgIgU4qfE4PDAIHRmS1R4gWVjJE+4BRrGuR0dPfd8qZ/Cxw="}]},"directories":{}},"2.1.3":{"name":"url-regex","version":"2.1.3","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"prepublish":"node lib/index.js","pretest":"node lib/index.js","test":"node test.js"},"files":["index.js","tlds.json"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"^0.0.4","tlds":"^1.14.0"},"gitHead":"a451e2041256b6737f810803f6864f5ab75919cd","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@2.1.3","_shasum":"839d13d602183202ea70fef96fc6c3d29514fb84","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.0","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"839d13d602183202ea70fef96fc6c3d29514fb84","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-2.1.3.tgz","integrity":"sha512-h/GFw+h9YbbluQdrYKHeGAIIwKw2BuopatTlCNFZukw1TuJ2+44y8vh6ST9T6ft1DLW0nAnBEK2FHnxXCAc5aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCDuSWMjg2Gv86V/oKnvQnroCcf/WHblHnKpi3Y5wLpmgIhAJrT6PFmy8fcvGxMqXCUQ9UAHmzOw8qYSsU4HsfFulYE"}]},"directories":{}},"3.0.0":{"name":"url-regex","version":"3.0.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"^0.0.4"},"gitHead":"3a2c139fa12e7e468614740285f03297f41ac141","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@3.0.0","_shasum":"23ba60d6893f8a89fb685be193af9876ddfd95e4","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.0","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"dist":{"shasum":"23ba60d6893f8a89fb685be193af9876ddfd95e4","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-3.0.0.tgz","integrity":"sha512-tP50MaadQUH3a/edTyEAfnAqGF0RUoqpbj4F4CD47YXxfw9AkptCmQ2QG3MtX//3lFclmxIPqkl35kqJKE8eyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDlzfu6SyjC3+AYKAqHdDMYziwKCfmw2EfZJZl9R650JAiEAyNeKJmvmIyc1q2R9likOEaoViCM5ACCfb/PP25wbWU4="}]},"directories":{}},"3.0.1":{"name":"url-regex","version":"3.0.1","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"^0.0.4"},"gitHead":"b0202a521907b1a6efb65fb63c717a68fe4d6bd7","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@3.0.1","_shasum":"bb7c09f7fcf8a10df03d40950b3d3326bdb1a214","_from":".","_npmVersion":"3.5.1","_nodeVersion":"5.1.1","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"shasum":"bb7c09f7fcf8a10df03d40950b3d3326bdb1a214","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-3.0.1.tgz","integrity":"sha512-OWKFfdhWQHesz78lRVdh1+t0DcogOzuZvlg6yppeGoV9KX0PK43fIdl/w2Ccnys0TqBp//sSDmBUv/Q2XS1cXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNpkb50MaiGfJdPA0UmdzguiKMoymobUj9N7dLUAFBkwIhAIwg0kfo+LM8ZucQPLjG/7JFSWxTQt4Hf4qPuJVOIWWm"}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"}],"directories":{}},"3.1.0":{"name":"url-regex","version":"3.1.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"node test.js"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"^0.0.4"},"gitHead":"8518421242d8dd685d5e58ddf60f10b9435bbf99","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@3.1.0","_shasum":"4a32a51817031e64af26f9154ebefdd5bc6998c6","_from":".","_npmVersion":"3.5.1","_nodeVersion":"5.1.1","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"shasum":"4a32a51817031e64af26f9154ebefdd5bc6998c6","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-3.1.0.tgz","integrity":"sha512-F5XZ/L6icU96pUzrr+3ynVp0vc3reKYHn/8+Enj20YP2cOHw/e3BXMZYiRip9/9Y1W2lGY2iK1lA+zAn3Snw8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEgh1rj4UM0fcRb4F+XBjIMIc+hW76w2bY02PNU3OwajAiEA+PiENvGHG10H+rojPvz3ZfOFmjL0kCyuxOjj2BRz3T0="}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"3.1.1":{"name":"url-regex","version":"3.1.1","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"ignores":["test.js"]},"gitHead":"17a7de34ba8dc5b9eefa8a56720702f3262f8c33","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@3.1.1","_shasum":"8bbfea280d6b608fdd596a05fe102f7c3befa600","_from":".","_npmVersion":"3.7.0","_nodeVersion":"5.10.1","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"shasum":"8bbfea280d6b608fdd596a05fe102f7c3befa600","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-3.1.1.tgz","integrity":"sha512-oqXgbr0dxfwby36P4InEBgW3XDdM2CCGyfn3PeVskhXJILqpamI4sBoqImvVToxVz/biD0Hf8ZS6gxbpB/SUKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICx77+lz/v+b7O8PA3MB1moOppXIqqHwYpiATSaduYcWAiEAv/u2Cj3oa/5YFog6mpfzEI3byP5iudvDLO3uD9ThSK4="}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/url-regex-3.1.1.tgz_1460557818016_0.01159217837266624"},"directories":{}},"3.2.0":{"name":"url-regex","version":"3.2.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"ignores":["test.js"]},"gitHead":"2ffbc86f47be1c937e1592fdc6ac5a13fb3449fb","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@3.2.0","_shasum":"dbad1e0c9e29e105dd0b1f09f6862f7fdb482724","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"shasum":"dbad1e0c9e29e105dd0b1f09f6862f7fdb482724","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz","integrity":"sha512-dQ9cJzMou5OKr6ZzfvwJkCq3rC72PNXhqz0v3EIhF4a3Np+ujr100AhUx2cKx5ei3iymoJpJrPB3sVSEMdqAeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICwS0iyFtAPtbbQgM1qoIC5K7zOaaV2mWxSnUNjm64DdAiB+QHnQ9ARVi38Ug3/qnGLUcysI3orTNmsuYafgaEHomQ=="}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/url-regex-3.2.0.tgz_1465388097645_0.674384823301807"},"directories":{}},"4.0.0":{"name":"url-regex","version":"4.0.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1"},"devDependencies":{"ava":"*","xo":"*"},"gitHead":"d283cdf5fdea31ea785a117727322d77ca6d10c8","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@4.0.0","_shasum":"eb48fbaf380fbf4c952c76ebd2d2ce00f9b4ca32","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.5.0","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"shasum":"eb48fbaf380fbf4c952c76ebd2d2ce00f9b4ca32","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-4.0.0.tgz","integrity":"sha512-K6hZiXVsp2tOdyrems+0h0KydePAXU8mjB8FHKgWXGbbG10Td/IQZ+ct2AHuiEdSmoR0BiEw2HKUbtY98RRN9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDx1XIgZEz3QIkgfdcZgxYlf8QdUyzZ1yBHjQsqoYBvSwIgTYNmy5maF1CKXzieFvDiAFdg5VY2Kufc305mMPfLGNk="}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/url-regex-4.0.0.tgz_1475184636997_0.6231794985942543"},"directories":{}},"4.1.0":{"name":"url-regex","version":"4.1.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1","tlds":"^1.187.0"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"d77130b5f7ed9fb744c801e47a530a50f265fd89","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@4.1.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"integrity":"sha512-9IVoLbdpm1u0YkaC98OhauqCiqcP01Xx45gAea1Rfnwkb4D6w5ogwk0UtGsdgVYwPpkUr4zRNwVqUSasoImjhw==","shasum":"727c404891d1caa5f54e3da44e8665860f2b5761","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-4.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCqtLtpOVZnPo8Iej76H0WIPAROwz4spu83xHGzKT/MFwIhAKUnlahGbjKtcVMT46JhhUiIH5y/vQsnZN/Wf3epZy9a"}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/url-regex-4.1.0.tgz_1496404690826_0.4030125893186778"},"directories":{}},"4.1.1":{"name":"url-regex","version":"4.1.1","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^1.0.1","tlds":"^1.187.0"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"1e9fdb9d320a44168d1f3f255622d02badb20113","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@4.1.1","_npmVersion":"5.0.3","_nodeVersion":"8.0.0","_npmUser":{"name":"kevva","email":"kevinmartensson@gmail.com"},"dist":{"integrity":"sha512-ViSDgDPNKkrQHI81GLCjdDN+Rsk3tAW/uLXlBOJxtcHzWZjta58Z0APXhfXzS89YszsheMnEvXeDXsWUB53wwA==","shasum":"a5617b22e15e26dac57ce74c3f52088bcdfec995","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-4.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDMMP6CHGUOujyiWYKV9lDHS4cHM5+rTMFiZKHU/+twgIhAJWqGA3xY6tdB4sDD9GQII7NhWj0R9rzFZx6WsHamLw5"}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/url-regex-4.1.1.tgz_1497356750683_0.571814741473645"},"directories":{}},"5.0.0":{"name":"url-regex","version":"5.0.0","description":"Regular expression for matching URLs","license":"MIT","repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"engines":{"node":">=8"},"scripts":{"test":"xo && ava && tsd"},"keywords":["regex","string","url"],"dependencies":{"ip-regex":"^4.1.0","tlds":"^1.203.0"},"devDependencies":{"ava":"^1.4.1","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"9f0450b59906264b5f9b789ee873dd8837d7d909","bugs":{"url":"https://github.com/kevva/url-regex/issues"},"homepage":"https://github.com/kevva/url-regex#readme","_id":"url-regex@5.0.0","_nodeVersion":"8.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-O08GjTiAFNsSlrUWfqF1jH0H1W3m35ZyadHrGv5krdnmPPoxP27oDTqux/579PtaroiSGm5yma6KT1mHFH6Y/g==","shasum":"8f5456ab83d898d18b2f91753a702649b873273a","tarball":"https://registry.npmjs.org/url-regex/-/url-regex-5.0.0.tgz","fileCount":5,"unpackedSize":5263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvHK0CRA9TVsSAnZWagAAbEkP/0/3Nkcqn0ABger1Wxw9\n0uJ0d4UDgofTsIVvL2y3dGKa2ETx6cFmTKUz3gUr29CWYT0tUeqVgshGV2mU\neN7GJUhqwsQhScACBCm7Vg0WvnBI+/A4aRSmuIsAvwN0BcDbe/aEBS/3hNVp\nSTK/Ix31DYlGRf62HnbNgLLOl6QMvMIHWCIAr7I5h548Vy/Pvb/YQ8ZvIvKs\ncRlyBThIaj5rnOCsdSDcDa93tE7jWC/CizXwLk6J4SbKJ/RnjaSCHbgrMLLa\nxmGcu7Fgzqq0xqF1R6M4QrvLl+S6LqFuW6xDJN9X1diZ/jPAeRp83gAa7vcv\nhEp2llFL3+KpE6a4ughCaSdY09dUYCc99nLBIu3RmeVxERcwTj5SDX+UVHCB\nSo6ljKx4nlOViNGOsMq9z2IpPZy5DWesz1+qWxQXFxcytgv7zvt+mEat8Yfz\nDOrv88HCtzlmxyTrEmakmtxnvPqVY9B+AeWXO4QeUEpXdXLIM9aWn1A/S1Pu\nd7ZgPJkGSL4j0qvp3VE6rVgXYoZgHpzT2pVuXnJUVlfCF09+g0mb46ZEcEjU\ngyAw67eTq34SD94ziVj3pH2CNfrFNOoEluoRuddmdGIfslvR4gODkKbLmtNQ\nKB/wXjnUCNJuf4PkIw6UX5Kequ8/JbsW/fmp/rz1dpNXZmCoe44EcGBu0MBo\nN4Kd\r\n=Kqto\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBQBBr/Ekblx+UEDc4mYK0vicfT4JJ8CxjvYXXfhS0NYAiBtu/OmpL9N47rKjujmK1A2EyvYM1nB613bWI3k3KnTLQ=="}]},"maintainers":[{"name":"kevva","email":"kevinmartensson@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/url-regex_5.0.0_1555854003456_0.33890334807970435"},"_hasShrinkwrap":false}},"homepage":"https://github.com/kevva/url-regex#readme","keywords":["regex","string","url"],"repository":{"type":"git","url":"git+https://github.com/kevva/url-regex.git"},"author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"https://github.com/kevva"},"bugs":{"url":"https://github.com/kevva/url-regex/issues"},"license":"MIT","readmeFilename":"readme.md","users":{"julien-f":true,"stringparser":true,"zeke":true,"fibo":true,"mojaray2k":true,"huhgawz":true,"arteffeckt":true,"kakaman":true,"rocket0191":true}}