{"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"sz.marczak@gmail.com","name":"szmarczak"}],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dist-tags":{"latest":"9.6.0","rc":"6.0.0-rc1","5.x-branch":"5.7.1"},"description":"Simplified HTTP requests","readme":"<div align=\"center\">\n\t<br>\n\t<br>\n\t<img width=\"360\" src=\"media/logo.svg\" alt=\"Got\">\n\t<br>\n\t<br>\n\t<br>\n\t<p align=\"center\">Huge thanks to <a href=\"https://moxy.studio\"><img src=\"https://sindresorhus.com/assets/thanks/moxy-logo.svg\" width=\"150\"></a> for sponsoring me!\n\t</p>\n\t<br>\n\t<br>\n</div>\n\n> Simplified HTTP requests\n\n[![Build Status: Linux](https://travis-ci.org/sindresorhus/got.svg?branch=master)](https://travis-ci.org/sindresorhus/got) [![Coverage Status](https://coveralls.io/repos/github/sindresorhus/got/badge.svg?branch=master)](https://coveralls.io/github/sindresorhus/got?branch=master) [![Downloads](https://img.shields.io/npm/dm/got.svg)](https://npmjs.com/got) [![Install size](https://packagephobia.now.sh/badge?p=got)](https://packagephobia.now.sh/result?p=got)\n\nGot is a human-friendly and powerful HTTP request library.\n\nIt was created because the popular [`request`](https://github.com/request/request) package is bloated: [![Install size](https://packagephobia.now.sh/badge?p=request)](https://packagephobia.now.sh/result?p=request)\n\nGot is for Node.js. For browsers, we recommend [Ky](https://github.com/sindresorhus/ky).\n\n\n## Highlights\n\n- [Promise & stream API](#api)\n- [Request cancelation](#aborting-the-request)\n- [RFC compliant caching](#cache-adapters)\n- [Follows redirects](#followredirect)\n- [Retries on failure](#retry)\n- [Progress events](#onuploadprogress-progress)\n- [Handles gzip/deflate](#decompress)\n- [Timeout handling](#timeout)\n- [Errors with metadata](#errors)\n- [JSON mode](#json)\n- [WHATWG URL support](#url)\n- [Hooks](#hooks)\n- [Instances with custom defaults](#instances)\n- [Composable](advanced-creation.md#merging-instances)\n- [Electron support](#useelectronnet)\n- [Used by ~2000 packages and ~500K repos](https://github.com/sindresorhus/got/network/dependents)\n- Actively maintained\n\n[Moving from Request?](migration-guides.md)\n\n[See how Got compares to other HTTP libraries](#comparison)\n\n## Install\n\n```\n$ npm install got\n```\n\n<a href=\"https://www.patreon.com/sindresorhus\">\n\t<img src=\"https://c5.patreon.com/external/logo/become_a_patron_button@2x.png\" width=\"160\">\n</a>\n\n\n## Usage\n\n```js\nconst got = require('got');\n\n(async () => {\n\ttry {\n\t\tconst response = await got('sindresorhus.com');\n\t\tconsole.log(response.body);\n\t\t//=> '<!doctype html> ...'\n\t} catch (error) {\n\t\tconsole.log(error.response.body);\n\t\t//=> 'Internal server error ...'\n\t}\n})();\n```\n\n###### Streams\n\n```js\nconst fs = require('fs');\nconst got = require('got');\n\ngot.stream('sindresorhus.com').pipe(fs.createWriteStream('index.html'));\n\n// For POST, PUT, and PATCH methods `got.stream` returns a `stream.Writable`\nfs.createReadStream('index.html').pipe(got.stream.post('sindresorhus.com'));\n```\n\n\n### API\n\nIt's a `GET` request by default, but can be changed by using different methods or in the `options`.\n\n#### got(url, [options])\n\nReturns a Promise for a [`response` object](#response) or a [stream](#streams-1) if `options.stream` is set to true.\n\n##### url\n\nType: `string` `Object`\n\nThe URL to request, as a string, a [`https.request` options object](https://nodejs.org/api/https.html#https_https_request_options_callback), or a [WHATWG `URL`](https://nodejs.org/api/url.html#url_class_url).\n\nProperties from `options` will override properties in the parsed `url`.\n\nIf no protocol is specified, it will default to `https`.\n\n##### options\n\nType: `Object`\n\nAny of the [`https.request`](https://nodejs.org/api/https.html#https_https_request_options_callback) options.\n\n###### baseUrl\n\nType: `string` `Object`\n\nWhen specified, `url` will be prepended by `baseUrl`.<br>\nIf you specify an absolute URL, it will skip the `baseUrl`.\n\nVery useful when used with `got.extend()` to create niche-specific Got instances.\n\nCan be a string or a [WHATWG `URL`](https://nodejs.org/api/url.html#url_class_url).\n\nSlash at the end of `baseUrl` and at the beginning of the `url` argument is optional:\n\n```js\nawait got('hello', {baseUrl: 'https://example.com/v1'});\n//=> 'https://example.com/v1/hello'\n\nawait got('/hello', {baseUrl: 'https://example.com/v1/'});\n//=> 'https://example.com/v1/hello'\n\nawait got('/hello', {baseUrl: 'https://example.com/v1'});\n//=> 'https://example.com/v1/hello'\n```\n\n###### headers\n\nType: `Object`<br>\nDefault: `{}`\n\nRequest headers.\n\nExisting headers will be overwritten. Headers set to `null` will be omitted.\n\n###### stream\n\nType: `boolean`<br>\nDefault: `false`\n\nReturns a `Stream` instead of a `Promise`. This is equivalent to calling `got.stream(url, [options])`.\n\n###### body\n\nType: `string` `Buffer` `stream.Readable` [`form-data` instance](https://github.com/form-data/form-data)\n\n**Note:** If you provide this option, `got.stream()` will be read-only.\n\nThe body that will be sent with a `POST` request.\n\nIf present in `options` and `options.method` is not set, `options.method` will be set to `POST`.\n\nThe `content-length` header will be automatically set if `body` is a `string` / `Buffer` / `fs.createReadStream` instance / [`form-data` instance](https://github.com/form-data/form-data), and `content-length` and `transfer-encoding` are not manually set in `options.headers`.\n\n###### cookieJar\n\nType: [`tough.CookieJar` instance](https://github.com/salesforce/tough-cookie#cookiejar)\n\n**Note:** If you provide this option, `options.headers.cookie` will be overridden.\n\nCookie support. You don't have to care about parsing or how to store them. [Example.](#cookies)\n\n###### encoding\n\nType: `string` `null`<br>\nDefault: `'utf8'`\n\n[Encoding](https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings) to be used on `setEncoding` of the response data. If `null`, the body is returned as a [`Buffer`](https://nodejs.org/api/buffer.html) (binary data).\n\n###### form\n\nType: `boolean`<br>\nDefault: `false`\n\n**Note:** If you provide this option, `got.stream()` will be read-only.\n**Note:** `body` must be a plain object. It will be converted to a query string using [`(new URLSearchParams(object)).toString()`](https://nodejs.org/api/url.html#url_constructor_new_urlsearchparams_obj).\n\nIf set to `true` and `Content-Type` header is not set, it will be set to `application/x-www-form-urlencoded`.\n\n###### json\n\nType: `boolean`<br>\nDefault: `false`\n\n**Note:** If you use `got.stream()`, this option will be ignored.\n**Note:** `body` must be a plain object or array and will be stringified.\n\nIf set to `true` and `Content-Type` header is not set, it will be set to `application/json`.\n\nParse response body with `JSON.parse` and set `accept` header to `application/json`. If used in conjunction with the `form` option, the `body` will the stringified as querystring and the response parsed as JSON.\n\n###### query\n\nType: `string` `Object<string, string|number>` [`URLSearchParams`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams)\n\nQuery string that will be added to the request URL. This will override the query string in `url`.\n\nIf you need to pass in an array, you can do it using a `URLSearchParams` instance:\n\n```js\nconst got = require('got');\n\nconst query = new URLSearchParams([['key', 'a'], ['key', 'b']]);\n\ngot('https://example.com', {query});\n\nconsole.log(query.toString());\n//=> 'key=a&key=b'\n```\n\nAnd if you need a different array format, you could use the [`query-string`](https://github.com/sindresorhus/query-string) package:\n\n```js\nconst got = require('got');\nconst queryString = require('query-string');\n\nconst query = queryString.stringify({key: ['a', 'b']}, {arrayFormat: 'bracket'});\n\ngot('https://example.com', {query});\n\nconsole.log(query);\n//=> 'key[]=a&key[]=b'\n```\n\n###### timeout\n\nType: `number` `Object`\n\nMilliseconds to wait for the server to end the response before aborting the request with [`got.TimeoutError`](#gottimeouterror) error (a.k.a. `request` property). By default, there's no timeout.\n\nThis also accepts an `object` with the following fields to constrain the duration of each phase of the request lifecycle:\n\n- `lookup` starts when a socket is assigned and ends when the hostname has been resolved. Does not apply when using a Unix domain socket.\n- `connect` starts when `lookup` completes (or when the socket is assigned if lookup does not apply to the request) and ends when the socket is connected.\n- `secureConnect` starts when `connect` completes and ends when the handshaking process completes (HTTPS only).\n- `socket` starts when the socket is connected. See [request.setTimeout](https://nodejs.org/api/http.html#http_request_settimeout_timeout_callback).\n- `response` starts when the request has been written to the socket and ends when the response headers are received.\n- `send` starts when the socket is connected and ends with the request has been written to the socket.\n- `request` starts when the request is initiated and ends when the response's end event fires.\n\n###### retry\n\nType: `number` `Object`<br>\nDefault:\n- retries: `2`\n- methods: `GET` `PUT` `HEAD` `DELETE` `OPTIONS` `TRACE`\n- statusCodes: [`408`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) [`413`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413) [`429`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) [`500`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) [`502`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502) [`503`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503) [`504`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504)\n- maxRetryAfter: `undefined`\n- errorCodes: `ETIMEDOUT` `ECONNRESET` `EADDRINUSE` `ECONNREFUSED` `EPIPE` `ENOTFOUND` `ENETUNREACH` `EAI_AGAIN`\n\nAn object representing `retries`, `methods`, `statusCodes`, `maxRetryAfter` and `errorCodes` fields for the time until retry, allowed methods, allowed status codes, maximum [`Retry-After`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After) time and allowed error codes.\n\nIf `maxRetryAfter` is set to `undefined`, it will use `options.timeout`.<br>\nIf [`Retry-After`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After) header is greater than `maxRetryAfter`, it will cancel the request.\n\nDelays between retries counts with function `1000 * Math.pow(2, retry) + Math.random() * 100`, where `retry` is attempt number (starts from 1).\n\nThe `retries` property can be a `number` or a `function` with `retry` and `error` arguments. The function must return a delay in milliseconds (`0` return value cancels retry).\n\nBy default, it retries *only* on the specified methods, status codes, and on these network errors:\n- `ETIMEDOUT`: One of the [timeout](#timeout) limits were reached.\n- `ECONNRESET`: Connection was forcibly closed by a peer.\n- `EADDRINUSE`: Could not bind to any free port.\n- `ECONNREFUSED`: Connection was refused by the server.\n- `EPIPE`: The remote side of the stream being written has been closed.\n- `ENOTFOUND`: Couldn't resolve the hostname to an IP address.\n- `ENETUNREACH`: No internet connection.\n- `EAI_AGAIN`: DNS lookup timed out.\n\n###### followRedirect\n\nType: `boolean`<br>\nDefault: `true`\n\nDefines if redirect responses should be followed automatically.\n\nNote that if a `303` is sent by the server in response to any request type (`POST`, `DELETE`, etc.), Got will automatically request the resource pointed to in the location header via `GET`. This is in accordance with [the spec](https://tools.ietf.org/html/rfc7231#section-6.4.4).\n\n###### decompress\n\nType: `boolean`<br>\nDefault: `true`\n\nDecompress the response automatically. This will set the `accept-encoding` header to `gzip, deflate` unless you set it yourself.\n\nIf this is disabled, a compressed response is returned as a `Buffer`. This may be useful if you want to handle decompression yourself or stream the raw compressed data.\n\n###### cache\n\nType: `Object`<br>\nDefault: `false`\n\n[Cache adapter instance](#cache-adapters) for storing cached data.\n\n###### request\n\nType: `Function`<br>\nDefault: `http.request` `https.request` *(depending on the protocol)*\n\nCustom request function. The main purpose of this is to [support HTTP2 using a wrapper](#experimental-http2-support).\n\n###### useElectronNet\n\nType: `boolean`<br>\nDefault: `false`\n\nWhen used in Electron, Got will use [`electron.net`](https://electronjs.org/docs/api/net/) instead of the Node.js `http` module. According to the Electron docs, it should be fully compatible, but it's not entirely. See [#443](https://github.com/sindresorhus/got/issues/443) and [#461](https://github.com/sindresorhus/got/issues/461).\n\n###### throwHttpErrors\n\nType: `boolean`<br>\nDefault: `true`\n\nDetermines if a `got.HTTPError` is thrown for error responses (non-2xx status codes).\n\nIf this is disabled, requests that encounter an error status code will be resolved with the `response` instead of throwing. This may be useful if you are checking for resource availability and are expecting error responses.\n\n###### agent\n\nSame as the [`agent` option](https://nodejs.org/api/http.html#http_http_request_url_options_callback) for `http.request`, but with an extra feature:\n\nIf you require different agents for different protocols, you can pass a map of agents to the `agent` option. This is necessary because a request to one protocol might redirect to another. In such a scenario, Got will switch over to the right protocol agent for you.\n\n```js\nconst got = require('got');\nconst HttpAgent = require('agentkeepalive');\nconst {HttpsAgent} = HttpAgent;\n\ngot('sindresorhus.com', {\n\tagent: {\n\t\thttp: new HttpAgent(),\n\t\thttps: new HttpsAgent()\n\t}\n});\n```\n\n###### hooks\n\nType: `Object<string, Function[]>`\n\nHooks allow modifications during the request lifecycle. Hook functions may be async and are run serially.\n\n###### hooks.init\n\nType: `Function[]`<br>\nDefault: `[]`\n\nCalled with plain [request options](#options), right before their normalization. This is especially useful in conjunction with [`got.extend()`](#instances) and [`got.create()`](advanced-creation.md) when the input needs custom handling.\n\nSee the [Request migration guide](migration-guides.md#breaking-changes) for an example.\n\n**Note**: This hook must be synchronous!\n\n###### hooks.beforeRequest\n\nType: `Function[]`<br>\nDefault: `[]`\n\nCalled with [normalized](source/normalize-arguments.js) [request options](#options). Got will make no further changes to the request before it is sent. This is especially useful in conjunction with [`got.extend()`](#instances) and [`got.create()`](advanced-creation.md) when you want to create an API client that, for example, uses HMAC-signing.\n\nSee the [AWS section](#aws) for an example.\n\n**Note:** If you modify the `body` you will need to modify the `content-length` header too, because it has already been computed and assigned.\n\n###### hooks.beforeRedirect\n\nType: `Function[]`<br>\nDefault: `[]`\n\nCalled with [normalized](source/normalize-arguments.js) [request options](#options). Got will make no further changes to the request. This is especially useful when you want to avoid dead sites. Example:\n\n```js\nconst got = require('got');\n\ngot('example.com', {\n\thooks: {\n\t\tbeforeRedirect: [\n\t\t\toptions => {\n\t\t\t\tif (options.hostname === 'deadSite') {\n\t\t\t\t\toptions.hostname = 'fallbackSite';\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n});\n```\n\n###### hooks.beforeRetry\n\nType: `Function[]`<br>\nDefault: `[]`\n\nCalled with [normalized](source/normalize-arguments.js) [request options](#options), the error and the retry count. Got will make no further changes to the request. This is especially useful when some extra work is required before the next try. Example:\n\n```js\nconst got = require('got');\n\ngot('example.com', {\n\thooks: {\n\t\tbeforeRetry: [\n\t\t\t(options, error, retryCount) => {\n\t\t\t\tif (error.statusCode === 413) { // Payload too large\n\t\t\t\t\toptions.body = getNewBody();\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n});\n```\n\n###### hooks.afterResponse\n\nType: `Function[]`<br>\nDefault: `[]`\n\nCalled with [response object](#response) and a retry function.\n\nEach function should return the response. This is especially useful when you want to refresh an access token. Example:\n\n```js\nconst got = require('got');\n\nconst instance = got.extend({\n\thooks: {\n\t\tafterResponse: [\n\t\t\t(response, retryWithMergedOptions) => {\n\t\t\t\tif (response.statusCode === 401) { // Unauthorized\n\t\t\t\t\tconst updatedOptions = {\n\t\t\t\t\t\theaders: {\n\t\t\t\t\t\t\ttoken: getNewToken() // Refresh the access token\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// Save for further requests\n\t\t\t\t\tinstance.defaults.options = got.mergeOptions(instance.defaults.options, updatedOptions);\n\n\t\t\t\t\t// Make a new retry\n\t\t\t\t\treturn retryWithMergedOptions(updatedOptions);\n\t\t\t\t}\n\n\t\t\t\t// No changes otherwise\n\t\t\t\treturn response;\n\t\t\t}\n\t\t]\n\t},\n\tmutableDefaults: true\n});\n```\n\n###### hooks.beforeError\n\nType: `Function[]`<br>\nDefault: `[]`\n\nCalled with an `Error` instance. The error is passed to the hook right before it's thrown. This is especially useful when you want to have more detailed errors.\n\n**Note**: Errors thrown while normalizing input options are thrown directly and not part of this hook.\n\n```js\t\nconst got = require('got');\t\n\ngot('api.github.com/some-endpoint', {\t\n\thooks: {\t\n\t\tonError: [\t\n\t\t\terror => {\t\n\t\t\t\tconst {response} = error;\t\n \t\t\t\tif (response && response.body) {\t\n\t\t\t\t\terror.name = 'GitHubError';\t\n\t\t\t\t\terror.message = `${response.body.message} (${error.statusCode})`;\t\n\t\t\t\t}\n\n \t\t\t\treturn error;\t\n\t\t\t}\t\n\t\t]\t\n\t}\t\n});\t\n```\n\n#### Response\n\nThe response object will typically be a [Node.js HTTP response stream](https://nodejs.org/api/http.html#http_class_http_incomingmessage), however, if returned from the cache it will be a [response-like object](https://github.com/lukechilds/responselike) which behaves in the same way.\n\n##### request\n\nType: `Object`\n\n**Note:** This is not a [http.ClientRequest](https://nodejs.org/api/http.html#http_class_http_clientrequest).\n\n- `gotOptions` - The options that were set on this request.\n\n##### body\n\nType: `string` `Object` *(depending on `options.json`)*\n\nThe result of the request.\n\n##### url\n\nType: `string`\n\nThe request URL or the final URL after redirects.\n\n##### requestUrl\n\nType: `string`\n\nThe original request URL.\n\n##### timings\n\nType: `Object`\n\nThe object contains the following properties:\n\n- `start` - Time when the request started.\n- `socket` - Time when a socket was assigned to the request.\n- `lookup` - Time when the DNS lookup finished.\n- `connect` - Time when the socket successfully connected.\n- `upload` - Time when the request finished uploading.\n- `response` - Time when the request fired the `response` event.\n- `end` - Time when the response fired the `end` event.\n- `error` - Time when the request fired the `error` event.\n- `phases`\n\t- `wait` - `timings.socket - timings.start`\n\t- `dns` - `timings.lookup - timings.socket`\n\t- `tcp` - `timings.connect - timings.lookup`\n\t- `request` - `timings.upload - timings.connect`\n\t- `firstByte` - `timings.response - timings.upload`\n\t- `download` - `timings.end - timings.response`\n\t- `total` - `timings.end - timings.start` or `timings.error - timings.start`\n\n**Note:** The time is a `number` representing the milliseconds elapsed since the UNIX epoch.\n\n##### fromCache\n\nType: `boolean`\n\nWhether the response was retrieved from the cache.\n\n##### redirectUrls\n\nType: `Array`\n\nThe redirect URLs.\n\n##### retryCount\n\nType: `number`\n\nThe number of times the request was retried.\n\n#### Streams\n\n**Note:** Progress events, redirect events and request/response events can also be used with promises.\n\n#### got.stream(url, [options])\n\nSets `options.stream` to `true`.\n\nReturns a [duplex stream](https://nodejs.org/api/stream.html#stream_class_stream_duplex) with additional events:\n\n##### .on('request', request)\n\n`request` event to get the request object of the request.\n\n**Tip:** You can use `request` event to abort request:\n\n```js\ngot.stream('github.com')\n\t.on('request', request => setTimeout(() => request.abort(), 50));\n```\n\n##### .on('response', response)\n\nThe `response` event to get the response object of the final request.\n\n##### .on('redirect', response, nextOptions)\n\nThe `redirect` event to get the response object of a redirect. The second argument is options for the next request to the redirect location.\n\n##### .on('uploadProgress', progress)\n##### .on('downloadProgress', progress)\n\nProgress events for uploading (sending a request) and downloading (receiving a response). The `progress` argument is an object like:\n\n```js\n{\n\tpercent: 0.1,\n\ttransferred: 1024,\n\ttotal: 10240\n}\n```\n\nIf it's not possible to retrieve the body size (can happen when streaming), `total` will be `null`.\n\n```js\n(async () => {\n\tconst response = await got('sindresorhus.com')\n\t\t.on('downloadProgress', progress => {\n\t\t\t// Report download progress\n\t\t})\n\t\t.on('uploadProgress', progress => {\n\t\t\t// Report upload progress\n\t\t});\n\n\tconsole.log(response);\n})();\n```\n\n##### .on('error', error, body, response)\n\nThe `error` event emitted in case of a protocol error (like `ENOTFOUND` etc.) or status error (4xx or 5xx). The second argument is the body of the server response in case of status error. The third argument is a response object.\n\n#### got.get(url, [options])\n#### got.post(url, [options])\n#### got.put(url, [options])\n#### got.patch(url, [options])\n#### got.head(url, [options])\n#### got.delete(url, [options])\n\nSets `options.method` to the method name and makes a request.\n\n### Instances\n\n#### got.extend([options])\n\nConfigure a new `got` instance with default `options`. The `options` are merged with the parent instance's `defaults.options` using [`got.mergeOptions`](#gotmergeoptionsparentoptions-newoptions). You can access the resolved options with the `.defaults` property on the instance.\n\n```js\nconst client = got.extend({\n\tbaseUrl: 'https://example.com',\n\theaders: {\n\t\t'x-unicorn': 'rainbow'\n\t}\n});\n\nclient.get('/demo');\n\n/* HTTP Request =>\n * GET /demo HTTP/1.1\n * Host: example.com\n * x-unicorn: rainbow\n */\n```\n\n```js\n(async () => {\n\tconst client = got.extend({\n\t\tbaseUrl: 'httpbin.org',\n\t\theaders: {\n\t\t\t'x-foo': 'bar'\n\t\t}\n\t});\n\tconst {headers} = (await client.get('/headers', {json: true})).body;\n\t//=> headers['x-foo'] === 'bar'\n\n\tconst jsonClient = client.extend({\n\t\tjson: true,\n\t\theaders: {\n\t\t\t'x-baz': 'qux'\n\t\t}\n\t});\n\tconst {headers: headers2} = (await jsonClient.get('/headers')).body;\n\t//=> headers2['x-foo'] === 'bar'\n\t//=> headers2['x-baz'] === 'qux'\n})();\n```\n\n**Tip:** Need more control over the behavior of Got? Check out the [`got.create()`](advanced-creation.md).\n\n#### got.mergeOptions(parentOptions, newOptions)\n\nExtends parent options. Avoid using [object spread](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax#Spread_in_object_literals) as it doesn't work recursively:\n\n```js\nconst a = {headers: {cat: 'meow', wolf: ['bark', 'wrrr']}};\nconst b = {headers: {cow: 'moo', wolf: ['auuu']}};\n\n{...a, ...b}            // => {headers: {cow: 'moo', wolf: ['auuu']}}\ngot.mergeOptions(a, b)  // => {headers: {cat: 'meow', cow: 'moo', wolf: ['auuu']}}\n```\n\nOptions are deeply merged to a new object. The value of each key is determined as follows:\n\n- If the new property is set to `undefined`, it keeps the old one.\n- If the parent property is an instance of `URL` and the new value is a `string` or `URL`, a new URL instance is created: [`new URL(new, parent)`](https://developer.mozilla.org/en-US/docs/Web/API/URL/URL#Syntax).\n- If the new property is a plain `Object`:\n\t- If the parent property is a plain `Object` too, both values are merged recursively into a new `Object`.\n\t- Otherwise, only the new value is deeply cloned.\n- If the new property is an `Array`, it overwrites the old one with a deep clone of the new property.\n- Otherwise, the new value is assigned to the key.\n\n#### got.defaults\n\nType: `Object`\n\nThe default Got options.\n\n## Errors\n\nEach error contains `host`, `hostname`, `method`, `path`, `protocol`, `url` and `gotOptions` properties to make debugging easier.\n\nIn Promise mode, the `response` is attached to the error.\n\n#### got.CacheError\n\nWhen a cache method fails, for example, if the database goes down or there's a filesystem error.\n\n#### got.RequestError\n\nWhen a request fails. Contains a `code` property with error class code, like `ECONNREFUSED`.\n\n#### got.ReadError\n\nWhen reading from response stream fails.\n\n#### got.ParseError\n\nWhen `json` option is enabled, server response code is 2xx, and `JSON.parse` fails. Includes `statusCode` and `statusMessage` properties.\n\n#### got.HTTPError\n\nWhen the server response code is not 2xx. Includes `body`, `statusCode`, `statusMessage`, and `redirectUrls` properties.\n\n#### got.MaxRedirectsError\n\nWhen the server redirects you more than ten times. Includes a `statusCode`, `statusMessage`, and `redirectUrls` property which is an array of the URLs Got was redirected to before giving up.\n\n#### got.UnsupportedProtocolError\n\nWhen given an unsupported protocol.\n\n#### got.CancelError\n\nWhen the request is aborted with `.cancel()`.\n\n#### got.TimeoutError\n\nWhen the request is aborted due to a [timeout](#timeout). Includes an `event` property.\n\n## Aborting the request\n\nThe promise returned by Got has a [`.cancel()`](https://github.com/sindresorhus/p-cancelable) method which when called, aborts the request.\n\n```js\n(async () => {\n\tconst request = got(url, options);\n\n\t// …\n\n\t// In another part of the code\n\tif (something) {\n\t\trequest.cancel();\n\t}\n\n\t// …\n\n\ttry {\n\t\tawait request;\n\t} catch (error) {\n\t\tif (request.isCanceled) { // Or `error instanceof got.CancelError`\n\t\t\t// Handle cancelation\n\t\t}\n\n\t\t// Handle other errors\n\t}\n})();\n```\n\n<a name=\"cache-adapters\"></a>\n## Cache\n\nGot implements [RFC 7234](http://httpwg.org/specs/rfc7234.html) compliant HTTP caching which works out of the box in-memory and is easily pluggable with a wide range of storage adapters. Fresh cache entries are served directly from the cache, and stale cache entries are revalidated with `If-None-Match`/`If-Modified-Since` headers. You can read more about the underlying cache behavior in the [`cacheable-request` documentation](https://github.com/lukechilds/cacheable-request).\n\nYou can use the JavaScript `Map` type as an in-memory cache:\n\n```js\nconst got = require('got');\nconst map = new Map();\n\n(async () => {\n\t\tlet response = await got('sindresorhus.com', {cache: map});\n\t\tconsole.log(response.fromCache);\n\t\t//=> false\n\n\t\tresponse = await got('sindresorhus.com', {cache: map});\n\t\tconsole.log(response.fromCache);\n\t\t//=> true\n})();\n```\n\nGot uses [Keyv](https://github.com/lukechilds/keyv) internally to support a wide range of storage adapters. For something more scalable you could use an [official Keyv storage adapter](https://github.com/lukechilds/keyv#official-storage-adapters):\n\n```\n$ npm install @keyv/redis\n```\n\n```js\nconst got = require('got');\nconst KeyvRedis = require('@keyv/redis');\n\nconst redis = new KeyvRedis('redis://user:pass@localhost:6379');\n\ngot('sindresorhus.com', {cache: redis});\n```\n\nGot supports anything that follows the Map API, so it's easy to write your own storage adapter or use a third-party solution.\n\nFor example, the following are all valid storage adapters:\n\n```js\nconst storageAdapter = new Map();\n// Or\nconst storageAdapter = require('./my-storage-adapter');\n// Or\nconst QuickLRU = require('quick-lru');\nconst storageAdapter = new QuickLRU({maxSize: 1000});\n\ngot('sindresorhus.com', {cache: storageAdapter});\n```\n\nView the [Keyv docs](https://github.com/lukechilds/keyv) for more information on how to use storage adapters.\n\n\n## Proxies\n\nYou can use the [`tunnel`](https://github.com/koichik/node-tunnel) package with the `agent` option to work with proxies:\n\n```js\nconst got = require('got');\nconst tunnel = require('tunnel');\n\ngot('sindresorhus.com', {\n\tagent: tunnel.httpOverHttp({\n\t\tproxy: {\n\t\t\thost: 'localhost'\n\t\t}\n\t})\n});\n```\n\nCheck out [`global-tunnel`](https://github.com/np-maintain/global-tunnel) if you want to configure proxy support for all HTTP/HTTPS traffic in your app.\n\n\n## Cookies\n\nYou can use the [`tough-cookie`](https://github.com/salesforce/tough-cookie) package:\n\n```js\nconst got = require('got');\nconst {CookieJar} = require('tough-cookie');\n\nconst cookieJar = new CookieJar();\ncookieJar.setCookie('foo=bar', 'https://www.google.com');\n\ngot('google.com', {cookieJar});\n```\n\n\n## Form data\n\nYou can use the [`form-data`](https://github.com/form-data/form-data) package to create POST request with form data:\n\n```js\nconst fs = require('fs');\nconst got = require('got');\nconst FormData = require('form-data');\nconst form = new FormData();\n\nform.append('my_file', fs.createReadStream('/foo/bar.jpg'));\n\ngot.post('google.com', {\n\tbody: form\n});\n```\n\n\n## OAuth\n\nYou can use the [`oauth-1.0a`](https://github.com/ddo/oauth-1.0a) package to create a signed OAuth request:\n\n```js\nconst got = require('got');\nconst crypto  = require('crypto');\nconst OAuth = require('oauth-1.0a');\n\nconst oauth = OAuth({\n\tconsumer: {\n\t\tkey: process.env.CONSUMER_KEY,\n\t\tsecret: process.env.CONSUMER_SECRET\n\t},\n\tsignature_method: 'HMAC-SHA1',\n\thash_function: (baseString, key) => crypto.createHmac('sha1', key).update(baseString).digest('base64')\n});\n\nconst token = {\n\tkey: process.env.ACCESS_TOKEN,\n\tsecret: process.env.ACCESS_TOKEN_SECRET\n};\n\nconst url = 'https://api.twitter.com/1.1/statuses/home_timeline.json';\n\ngot(url, {\n\theaders: oauth.toHeader(oauth.authorize({url, method: 'GET'}, token)),\n\tjson: true\n});\n```\n\n\n## Unix Domain Sockets\n\nRequests can also be sent via [unix domain sockets](http://serverfault.com/questions/124517/whats-the-difference-between-unix-socket-and-tcp-ip-socket). Use the following URL scheme: `PROTOCOL://unix:SOCKET:PATH`.\n\n- `PROTOCOL` - `http` or `https` *(optional)*\n- `SOCKET` - Absolute path to a unix domain socket, for example: `/var/run/docker.sock`\n- `PATH` - Request path, for example: `/v2/keys`\n\n```js\ngot('http://unix:/var/run/docker.sock:/containers/json');\n\n// Or without protocol (HTTP by default)\ngot('unix:/var/run/docker.sock:/containers/json');\n```\n\n\n## AWS\n\nRequests to AWS services need to have their headers signed. This can be accomplished by using the [`aws4`](https://www.npmjs.com/package/aws4) package. This is an example for querying an [\"API Gateway\"](https://docs.aws.amazon.com/apigateway/api-reference/signing-requests/) with a signed request.\n\n```js\nconst AWS = require('aws-sdk');\nconst aws4 = require('aws4');\nconst got = require('got');\n\nconst chain = new AWS.CredentialProviderChain();\n\n// Create a Got instance to use relative paths and signed requests\nconst awsClient = got.extend({\n\tbaseUrl: 'https://<api-id>.execute-api.<api-region>.amazonaws.com/<stage>/',\n\thooks: {\n\t\tbeforeRequest: [\n\t\t\tasync options => {\n\t\t\t\tconst credentials = await chain.resolvePromise();\n\t\t\t\taws4.sign(options, credentials);\n\t\t\t}\n\t\t]\n\t}\n});\n\nconst response = await awsClient('endpoint/path', {\n\t// Request-specific options\n});\n```\n\n\n## Testing\n\nYou can test your requests by using the [`nock`](https://github.com/node-nock/nock) package to mock an endpoint:\n\n```js\nconst got = require('got');\nconst nock = require('nock');\n\nnock('https://sindresorhus.com')\n\t.get('/')\n\t.reply(200, 'Hello world!');\n\n(async () => {\n\tconst response = await got('sindresorhus.com');\n\tconsole.log(response.body);\n\t//=> 'Hello world!'\n})();\n```\n\nIf you need real integration tests you can use [`create-test-server`](https://github.com/lukechilds/create-test-server):\n\n```js\nconst got = require('got');\nconst createTestServer = require('create-test-server');\n\n(async () => {\n\tconst server = await createTestServer();\n\tserver.get('/', 'Hello world!');\n\n\tconst response = await got(server.url);\n\tconsole.log(response.body);\n\t//=> 'Hello world!'\n\n\tawait server.close();\n})();\n```\n\n\n## Tips\n\n### User Agent\n\nIt's a good idea to set the `'user-agent'` header so the provider can more easily see how their resource is used. By default, it's the URL to this repo. You can omit this header by setting it to `null`.\n\n```js\nconst got = require('got');\nconst pkg = require('./package.json');\n\ngot('sindresorhus.com', {\n\theaders: {\n\t\t'user-agent': `my-package/${pkg.version} (https://github.com/username/my-package)`\n\t}\n});\n\ngot('sindresorhus.com', {\n\theaders: {\n\t\t'user-agent': null\n\t}\n});\n```\n\n### 304 Responses\n\nBear in mind; if you send an `if-modified-since` header and receive a `304 Not Modified` response, the body will be empty. It's your responsibility to cache and retrieve the body contents.\n\n### Custom endpoints\n\nUse `got.extend()` to make it nicer to work with REST APIs. Especially if you use the `baseUrl` option.\n\n**Note:** Not to be confused with [`got.create()`](advanced-creation.md), which has no defaults.\n\n```js\nconst got = require('got');\nconst pkg = require('./package.json');\n\nconst custom = got.extend({\n\tbaseUrl: 'example.com',\n\tjson: true,\n\theaders: {\n\t\t'user-agent': `my-package/${pkg.version} (https://github.com/username/my-package)`\n\t}\n});\n\n// Use `custom` exactly how you use `got`\n(async () => {\n\tconst list = await custom('/v1/users/list');\n})();\n```\n\n**Tip:** Need to merge some instances into a single one? Check out [`got.mergeInstances()`](advanced-creation.md#merging-instances).\n\n### Experimental HTTP2 support\n\nGot provides an experimental support for HTTP2 using the [`http2-wrapper`](https://github.com/szmarczak/http2-wrapper) package:\n\n```js\nconst got = require('got');\nconst {request} = require('http2-wrapper');\n\nconst h2got = got.extend({request});\n\n(async () => {\n\tconst {body} = await h2got('https://nghttp2.org/httpbin/headers');\n\tconsole.log(body);\n})();\n```\n\n## Comparison\n\n|                       |      `got`     | [`request`][r0] | [`node-fetch`][n0] |  [`axios`][a0]  |  [`superagent`][s0]  |\n|-----------------------|:--------------:|:---------------:|:------------------:|:---------------:|:--------------------:|\n| HTTP/2 support        |        ❔       |        ✖       |          ✖         |        ✖       |          ✔\\*\\*      |\n| Browser support       |        ✖       |        ✖       |          ✔\\*       |        ✔       |          ✔          |\n| Electron support      |        ✔       |        ✖       |          ✖         |        ✖       |          ✖          |\n| Promise API           |        ✔       |        ✔       |          ✔         |        ✔       |          ✔          |\n| Stream API            |        ✔       |        ✔       |    Node.js only    |        ✖       |          ✔          |\n| Request cancelation   |        ✔       |        ✖       |          ✔         |        ✔       |          ✔          |\n| RFC compliant caching |        ✔       |        ✖       |          ✖         |        ✖       |          ✖          |\n| Cookies (out-of-box)  |        ✔       |        ✔       |          ✖         |        ✖       |          ✖          |\n| Follows redirects     |        ✔       |        ✔       |          ✔         |        ✔       |          ✔          |\n| Retries on failure    |        ✔       |        ✖       |          ✖         |        ✖       |          ✔          |\n| Progress events       |        ✔       |        ✖       |          ✖         |  Browser only  |          ✔          |\n| Handles gzip/deflate  |        ✔       |        ✔       |          ✔         |        ✔       |          ✔          |\n| Advanced timeouts     |        ✔       |        ✖       |          ✖         |        ✖       |          ✖          |\n| Timings               |        ✔       |        ✔       |          ✖         |        ✖       |          ✖          |\n| Errors with metadata  |        ✔       |        ✖       |          ✖         |        ✔       |          ✖          |\n| JSON mode             |        ✔       |        ✔       |          ✖         |        ✔       |          ✔          |\n| Custom defaults       |        ✔       |        ✔       |          ✖         |        ✔       |          ✖          |\n| Composable            |        ✔       |        ✖       |          ✖         |        ✖       |          ✔          |\n| Hooks                 |        ✔       |        ✖       |          ✖         |        ✔       |          ✖          |\n| Issues open           | [![][gio]][g1] | [![][rio]][r1]  |   [![][nio]][n1]   |  [![][aio]][a1] |   [![][sio]][s1]    |\n| Issues closed         | [![][gic]][g2] | [![][ric]][r2]  |   [![][nic]][n2]   |  [![][aic]][a2] |   [![][sic]][s2]    |\n| Downloads             | [![][gd]][g3]  |  [![][rd]][r3]  |   [![][nd]][n3]    |  [![][ad]][a3]  |   [![][sd]][s3]     |\n| Coverage              | [![][gc]][g4]  |  [![][rc]][r4]  |   [![][nc]][n4]    |  [![][ac]][a4]  |       unknown       |\n| Build                 | [![][gb]][g5]  |  [![][rb]][r5]  |   [![][nb]][n5]    |  [![][ab]][a5]  |   [![][sb]][s5]     |\n| Bugs                  | [![][gbg]][g6] | [![][rbg]][r6]  |   [![][nbg]][n6]   |  [![][abg]][a6] |   [![][sbg]][s6]    |\n| Dependents            | [![][gdp]][g7] | [![][rdp]][r7]  |   [![][ndp]][n7]   |  [![][adp]][a7] |   [![][sdp]][s7]    |\n| Install size          | [![][gis]][g8] | [![][ris]][r8]  |   [![][nis]][n8]   |  [![][ais]][a8] |   [![][sis]][s8]    |\n\n\\* It's almost API compatible with the browser `fetch` API.<br>\n\\*\\* Need to switch the protocol manually.<br>\n❔ Experimental support.\n\n<!-- GITHUB -->\n[r0]: https://github.com/request/request\n[n0]: https://github.com/bitinn/node-fetch\n[a0]: https://github.com/axios/axios\n[s0]: https://github.com/visionmedia/superagent\n\n<!-- ISSUES OPEN -->\n[gio]: https://badgen.net/github/open-issues/sindresorhus/got?label\n[rio]: https://badgen.net/github/open-issues/request/request?label\n[nio]: https://badgen.net/github/open-issues/bitinn/node-fetch?label\n[aio]: https://badgen.net/github/open-issues/axios/axios?label\n[sio]: https://badgen.net/github/open-issues/visionmedia/superagent?label\n\n[g1]: https://github.com/sindresorhus/got/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc\n[r1]: https://github.com/request/request/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc\n[n1]: https://github.com/bitinn/node-fetch/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc\n[a1]: https://github.com/axios/axios/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc\n[s1]: https://github.com/visionmedia/superagent/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc\n\n<!-- ISSUES CLOSED -->\n[gic]: https://badgen.net/github/closed-issues/sindresorhus/got?label\n[ric]: https://badgen.net/github/closed-issues/request/request?label\n[nic]: https://badgen.net/github/closed-issues/bitinn/node-fetch?label\n[aic]: https://badgen.net/github/closed-issues/axios/axios?label\n[sic]: https://badgen.net/github/closed-issues/visionmedia/superagent?label\n\n[g2]: https://github.com/sindresorhus/got/issues?q=is%3Aissue+is%3Aclosed+sort%3Aupdated-desc\n[r2]: https://github.com/request/request/issues?q=is%3Aissue+is%3Aclosed+sort%3Aupdated-desc\n[n2]: https://github.com/bitinn/node-fetch/issues?q=is%3Aissue+is%3Aclosed+sort%3Aupdated-desc\n[a2]: https://github.com/axios/axios/issues?q=is%3Aissue+is%3Aclosed+sort%3Aupdated-desc\n[s2]: https://github.com/visionmedia/superagent/issues?q=is%3Aissue+is%3Aclosed+sort%3Aupdated-desc\n\n<!-- DOWNLOADS -->\n[gd]: https://badgen.net/npm/dm/got?label\n[rd]: https://badgen.net/npm/dm/request?label\n[nd]: https://badgen.net/npm/dm/node-fetch?label\n[ad]: https://badgen.net/npm/dm/axios?label\n[sd]: https://badgen.net/npm/dm/superagent?label\n\n[g3]: https://www.npmjs.com/package/got\n[r3]: https://www.npmjs.com/package/request\n[n3]: https://www.npmjs.com/package/node-fetch\n[a3]: https://www.npmjs.com/package/axios\n[s3]: https://www.npmjs.com/package/superagent\n\n<!-- COVERAGE -->\n[gc]: https://badgen.net/coveralls/c/github/sindresorhus/got?label\n[rc]: https://badgen.net/coveralls/c/github/request/request?label\n[nc]: https://badgen.net/coveralls/c/github/bitinn/node-fetch?label\n[ac]: https://badgen.net/coveralls/c/github/mzabriskie/axios?label\n\n[g4]: https://coveralls.io/github/sindresorhus/got\n[r4]: https://coveralls.io/github/request/request\n[n4]: https://coveralls.io/github/bitinn/node-fetch\n[a4]: https://coveralls.io/github/mzabriskie/axios\n\n<!-- BUILD -->\n[gb]: https://badgen.net/travis/sindresorhus/got?label\n[rb]: https://badgen.net/travis/request/request?label\n[nb]: https://badgen.net/travis/bitinn/node-fetch?label\n[ab]: https://badgen.net/travis/axios/axios?label\n[sb]: https://badgen.net/travis/visionmedia/superagent?label\n\n[g5]: https://travis-ci.org/sindresorhus/got\n[r5]: https://travis-ci.org/request/request\n[n5]: https://travis-ci.org/bitinn/node-fetch\n[a5]: https://travis-ci.org/axios/axios\n[s5]: https://travis-ci.org/visionmedia/superagent\n\n<!-- BUGS -->\n[gbg]: https://badgen.net/github/label-issues/sindresorhus/got/bug/open?label\n[rbg]: https://badgen.net/github/label-issues/request/request/Needs%20investigation/open?label\n[nbg]: https://badgen.net/github/label-issues/bitinn/node-fetch/bug/open?label\n[abg]: https://badgen.net/github/label-issues/axios/axios/bug/open?label\n[sbg]: https://badgen.net/github/label-issues/visionmedia/superagent/Bug/open?label\n\n[g6]: https://github.com/sindresorhus/got/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abug\n[r6]: https://github.com/request/request/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A\"Needs+investigation\"\n[n6]: https://github.com/bitinn/node-fetch/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abug\n[a6]: https://github.com/axios/axios/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abug\n[s6]: https://github.com/visionmedia/superagent/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3ABug\n\n<!-- DEPENDENTS -->\n[gdp]: https://badgen.net/npm/dependents/got?label\n[rdp]: https://badgen.net/npm/dependents/request?label\n[ndp]: https://badgen.net/npm/dependents/node-fetch?label\n[adp]: https://badgen.net/npm/dependents/axios?label\n[sdp]: https://badgen.net/npm/dependents/superagent?label\n\n[g7]: https://www.npmjs.com/package/got?activeTab=dependents\n[r7]: https://www.npmjs.com/package/request?activeTab=dependents\n[n7]: https://www.npmjs.com/package/node-fetch?activeTab=dependents\n[a7]: https://www.npmjs.com/package/axios?activeTab=dependents\n[s7]: https://www.npmjs.com/package/visionmedia?activeTab=dependents\n\n<!-- INSTALL SIZE -->\n[gis]: https://badgen.net/packagephobia/install/got?label\n[ris]: https://badgen.net/packagephobia/install/request?label\n[nis]: https://badgen.net/packagephobia/install/node-fetch?label\n[ais]: https://badgen.net/packagephobia/install/axios?label\n[sis]: https://badgen.net/packagephobia/install/superagent?label\n\n[g8]: https://packagephobia.now.sh/result?p=got\n[r8]: https://packagephobia.now.sh/result?p=request\n[n8]: https://packagephobia.now.sh/result?p=node-fetch\n[a8]: https://packagephobia.now.sh/result?p=axios\n[s8]: https://packagephobia.now.sh/result?p=superagent\n\n\n## Related\n\n- [gh-got](https://github.com/sindresorhus/gh-got) - Got convenience wrapper to interact with the GitHub API\n- [gl-got](https://github.com/singapore/gl-got) - Got convenience wrapper to interact with the GitLab API\n- [travis-got](https://github.com/samverschueren/travis-got) - Got convenience wrapper to interact with the Travis API\n- [graphql-got](https://github.com/kevva/graphql-got) - Got convenience wrapper to interact with GraphQL\n- [GotQL](https://github.com/khaosdoctor/gotql) - Got convenience wrapper to interact with GraphQL using JSON-parsed queries instead of strings\n\n\n## Maintainers\n\n[![Sindre Sorhus](https://github.com/sindresorhus.png?size=100)](https://sindresorhus.com) | [![Vsevolod Strukchinsky](https://github.com/floatdrop.png?size=100)](https://github.com/floatdrop) | [![Alexander Tesfamichael](https://github.com/AlexTes.png?size=100)](https://github.com/AlexTes) | [![Luke Childs](https://github.com/lukechilds.png?size=100)](https://github.com/lukechilds) | [![Szymon Marczak](https://github.com/szmarczak.png?size=100)](https://github.com/szmarczak) | [![Brandon Smith](https://github.com/brandon93s.png?size=100)](https://github.com/brandon93s)\n---|---|---|---|---|---\n[Sindre Sorhus](https://sindresorhus.com) | [Vsevolod Strukchinsky](https://github.com/floatdrop) | [Alexander Tesfamichael](https://alextes.me) | [Luke Childs](https://github.com/lukechilds) | [Szymon Marczak](https://github.com/szmarczak) | [Brandon Smith](https://github.com/brandon93s)\n\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"users":{"floatdrop":true,"zhangyaochun":true,"pid":true,"nickleefly":true,"davidchubbs":true,"amio":true,"vlkosinov":true,"cilindrox":true,"rsp":true,"btd":true,"moimikey":true,"ciceropablo":true,"kbakba":true,"rwhogg":true,"goliatone":true,"filipecarmona":true,"xieranmaya":true,"nichoth":true,"fdaciuk":true,"markthethomas":true,"xgheaven":true,"hengkiardo":true,"gvn":true,"carsy":true,"s4g6":true,"tobiasnickel":true,"knksmith57":true,"goblindegook":true,"allenmoore":true,"parkerproject":true,"starknode":true,"nickeltobias":true,"semencov":true,"vutran":true,"antixrist":true,"kevin-smets":true,"preco21":true,"jerrywu":true,"arttse":true,"slurm":true,"antanst":true,"pahud":true,"kissyid":true,"lousando":true,"programmer.severson":true,"lorenazohar":true,"mccoyjordan":true,"roccomuso":true,"gurunate":true,"eerne":true,"swapnil_mishra":true,"nxc":true,"evocateur":true,"azevedo":true,"sealthedeal":true,"floriannagel":true,"langri-sha":true,"xumx":true,"soenkekluth":true,"quanru":true,"internoma":true,"vinbhatt":true,"seangenabe":true,"tommytroylin":true,"restmount":true,"matthiasg":true,"quocnguyen":true,"archcorsair":true,"rocket0191":true,"tvtamas":true,"bigp":true,"panlw":true,"ishman":true,"omegga":true,"bphanikumar":true,"abuelwafa":true,"nerdybeast":true,"ahme-t":true,"3dprintingsystems":true,"netoperatorwibby":true,"ganesh.bhat":true,"andygreenegrass":true,"stevenvachon":true,"zousandian":true,"matthewh":true,"mlcdf":true,"wvlvik":true,"gfilip":true,"pmcalabrese":true,"d-band":true,"drewigg":true,"kostya.fokin":true,"monjer":true,"shanewholloway":true,"reggiezhang":true,"xcatliu":true,"lassevolkmann":true,"gprasannah":true,"space_cat_lady":true,"dqisme":true,"jota":true,"firefoxnx":true,"buddh!ka":true,"edjroz":true,"lestad":true,"program247365":true,"yusef.ho.tw":true,"vboctor":true,"leonadler":true,"adeamos83":true,"axelrindle":true,"nraibaud":true,"avivharuzi":true,"tomgao365":true,"maleeb":true,"herve":true,"phris":true,"rikstam":true,"d3ck":true,"chrisbuttery":true,"pl0x":true,"jochemstoel":true,"hualei":true,"huiyifyj":true},"bugs":{"url":"https://github.com/sindresorhus/got/issues"},"license":"MIT","versions":{"0.1.0":{"name":"got","version":"0.1.0","description":"Simplified HTTP/HTTPS GET requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@0.1.0","dist":{"shasum":"a014ed629a57d9cf6fc28716ba091d102a48713d","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.1.1":{"name":"got","version":"0.1.1","description":"Simplified HTTP/HTTPS GET requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@0.1.1","dist":{"shasum":"9e85cb9fb7054e73af744c1f49d5509b95cdfb71","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-0.1.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.2.0":{"name":"got","version":"0.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@0.2.0","dist":{"shasum":"d00c248b29fdccaea940df9ca0995ebff31b51a5","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-0.2.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.3.0":{"name":"got","version":"0.3.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@0.3.0","_shasum":"888ec66ca4bc735ab089dbe959496d0f79485493","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"888ec66ca4bc735ab089dbe959496d0f79485493","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-0.3.0.tgz"},"directories":{}},"1.0.0":{"name":"got","version":"1.0.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"gitHead":"9a593acd8412f5e412f0e7e6044a88a5ea93ca90","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@1.0.0","_shasum":"792b340223b8df77d6e2c1090dc54341fc42df11","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"792b340223b8df77d6e2c1090dc54341fc42df11","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"got","version":"1.0.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"gitHead":"37322366c7e85c898fbc9bf92bd32afa9a228aae","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@1.0.1","_shasum":"ac662d4912a9d0d5611a2b395e2a0116340a56a0","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"ac662d4912a9d0d5611a2b395e2a0116340a56a0","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-1.0.1.tgz"},"directories":{}},"1.1.0":{"name":"got","version":"1.1.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"gitHead":"89e93578089beaa068119828b21e2874c60938bf","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@1.1.0","_shasum":"82788a0a573a60a8f18b9901236d43c91fcd664b","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"82788a0a573a60a8f18b9901236d43c91fcd664b","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"got","version":"1.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"gitHead":"98063aa442f389d7787b262a29629df7294e19da","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@1.2.0","_shasum":"11407f478e2ec1355a25427fba2e7563cbe8e732","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"11407f478e2ec1355a25427fba2e7563cbe8e732","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"got","version":"1.2.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^0.3.0"},"devDependencies":{"mocha":"*"},"gitHead":"df87ffc5c56554ad0d6907d49abcdc9076c46d16","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@1.2.1","_shasum":"5878b85de16034b74d947ad41f729d41534fe6e2","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"5878b85de16034b74d947ad41f729d41534fe6e2","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"got","version":"1.2.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^1.0.0"},"devDependencies":{"mocha":"*"},"gitHead":"51b1b90b2636dae4b8f33211fa347a9c92838910","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@1.2.2","_shasum":"d9430ba32f6a30218243884418767340aafc0400","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"d9430ba32f6a30218243884418767340aafc0400","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-1.2.2.tgz"},"directories":{}},"2.0.0":{"name":"got","version":"2.0.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^2.0.0","read-all-stream":"^0.1.0","timed-out":"^1.0.0"},"devDependencies":{"mocha":"*"},"gitHead":"b4a05e441d5a5f730f0b2e58c3cce1f36ed44a73","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.0.0","_shasum":"8a21692827888114c498aa9b81171d0c86fd5a72","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"dist":{"shasum":"8a21692827888114c498aa9b81171d0c86fd5a72","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.0.0.tgz"},"directories":{}},"2.1.0":{"name":"got","version":"2.1.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"object-assign":"^2.0.0","read-all-stream":"^0.1.0","timed-out":"^2.0.0"},"devDependencies":{"mocha":"*"},"gitHead":"5a7944a5892d710cefd33ca48ba5f696d9de60df","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.1.0","_shasum":"6bc9c28ffdcd3c530c607f736692355b6939acb7","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"dist":{"shasum":"6bc9c28ffdcd3c530c607f736692355b6939acb7","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.1.0.tgz"},"directories":{}},"2.2.0":{"name":"got","version":"2.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha --timeout 50000"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","object-assign":"^2.0.0","read-all-stream":"^0.1.0","timed-out":"^2.0.0"},"devDependencies":{"mocha":"*"},"gitHead":"009b973bf313c9721fe8c015090c38270c3cd13d","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.2.0","_shasum":"e5c0a24870aaefb36eda8b7195736e61810477ea","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"dist":{"shasum":"e5c0a24870aaefb36eda8b7195736e61810477ea","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.2.0.tgz"},"directories":{}},"2.3.0":{"name":"got","version":"2.3.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"taper test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^0.1.0","isstream":"^0.1.1","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^0.1.0","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","pem":"^1.4.4","tape":"^3.0.3","taper":"^0.3.0"},"gitHead":"c616d256ae67cb78ce41fbfaa2e04f6e5dff0594","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.3.0","_shasum":"460f95732e09b1adf96f6c7aeaee6240e5085ee1","_from":".","_npmVersion":"2.1.16","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"460f95732e09b1adf96f6c7aeaee6240e5085ee1","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.3.0.tgz"},"directories":{}},"2.3.1":{"name":"got","version":"2.3.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"taper test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^1.0.0","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","pem":"^1.4.4","tape":"^3.0.3","taper":"^0.3.0"},"gitHead":"2a61a7a695741bbc736a8abe80db0c627e403814","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.3.1","_shasum":"f644b11ee85c67577e017bfec2a7a234557e1759","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"f644b11ee85c67577e017bfec2a7a234557e1759","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.3.1.tgz"},"directories":{}},"2.3.2":{"name":"got","version":"2.3.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"taper test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^1.0.0","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","pem":"^1.4.4","tape":"^3.0.3","taper":"^0.3.0"},"gitHead":"e535190af9f301612295d11fc8756d2f4f6f9dbb","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.3.2","_shasum":"2dc21af7012f7c4ef33edfb62a2a7faa69548c5e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2dc21af7012f7c4ef33edfb62a2a7faa69548c5e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.3.2.tgz"},"directories":{}},"2.4.0":{"name":"got","version":"2.4.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"taper test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^1.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","pem":"^1.4.4","tape":"^3.0.3","taper":"^0.3.0"},"gitHead":"6757c4c37b107bf404bcbc819982c9e12d589203","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.4.0","_shasum":"e4087a2cd59b5d20f2d169dc85d2169ed9e89f56","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"e4087a2cd59b5d20f2d169dc85d2169ed9e89f56","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.4.0.tgz"},"directories":{}},"2.5.0":{"name":"got","version":"2.5.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"taper test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^1.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","pem":"^1.4.4","tape":"^3.0.3","taper":"^0.3.0"},"gitHead":"9f81a55b62e419f8bc41ebdb363faafdf250fd06","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.5.0","_shasum":"44d917c8bb481c00721832fd80c4481e9af3df5e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"44d917c8bb481c00721832fd80c4481e9af3df5e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.5.0.tgz"},"directories":{}},"2.6.0":{"name":"got","version":"2.6.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"86b869730780c14e6be39136758ac98d740949f7","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.6.0","_shasum":"a6c752e289d6f3326aaebd0d86a24b3ec0616d91","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"a6c752e289d6f3326aaebd0d86a24b3ec0616d91","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.6.0.tgz"},"directories":{}},"2.7.0":{"name":"got","version":"2.7.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"abdd0f09606fa4c79b277d2b637a9aa47b9c9643","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.7.0","_shasum":"c4bd3a4fcc3c8501d1891c0fae4ef5648ff372da","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"c4bd3a4fcc3c8501d1891c0fae4ef5648ff372da","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.7.0.tgz"},"directories":{}},"2.7.1":{"name":"got","version":"2.7.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"a790ee2527dc52d9902aff7574ad5165fbc05907","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.7.1","_shasum":"4c82c8a8be7f3e79384ec94b736fe07081c4064c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"4c82c8a8be7f3e79384ec94b736fe07081c4064c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.7.1.tgz"},"directories":{}},"2.7.2":{"name":"got","version":"2.7.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"42294172307b042dfdb1432ebf24ed51cb7f897c","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.7.2","_shasum":"089cfe07c37590d6ab59ced31d5ff5b09f05145d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"089cfe07c37590d6ab59ced31d5ff5b09f05145d","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.7.2.tgz"},"directories":{}},"2.8.0":{"name":"got","version":"2.8.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"63738b527f23b370e0405fb3979863976f438afe","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.8.0","_shasum":"98ed3b127fede9f667a1c292afd58f563e01b30e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"98ed3b127fede9f667a1c292afd58f563e01b30e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.8.0.tgz"},"directories":{}},"2.8.1":{"name":"got","version":"2.8.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"709b056bd241475c626c3f7038846526095d48a9","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@2.8.1","_shasum":"72247785828e96df4872d99674f2a6196926d361","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"72247785828e96df4872d99674f2a6196926d361","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.8.1.tgz"},"directories":{}},"2.9.0":{"name":"got","version":"2.9.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"1005cfc39135d9e73e5f8cca5b0b0c9ccc8a6841","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.9.0","_shasum":"ad2c3f9264271edabf5479f29f69606643dab4ce","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"ad2c3f9264271edabf5479f29f69606643dab4ce","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.9.0.tgz"},"directories":{}},"2.9.1":{"name":"got","version":"2.9.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"e10f3b0b820a9d5e921e781ad8da016fd0d07cf5","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.9.1","_shasum":"8661f8a3302d774186e01dd86ea00ee99b00ac82","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"8661f8a3302d774186e01dd86ea00ee99b00ac82","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.9.1.tgz"},"directories":{}},"2.9.2":{"name":"got","version":"2.9.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"a982c75a235fe4a64f5557763758580c5a393ee3","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@2.9.2","_shasum":"2e1ee58ea1e8d201e25ae580b96e63c15fefd4ee","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"2e1ee58ea1e8d201e25ae580b96e63c15fefd4ee","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-2.9.2.tgz"},"directories":{}},"3.0.0":{"name":"got","version":"3.0.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"d611ac5faada0389640af789c91c3906525d1a02","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@3.0.0","_shasum":"62c20f39fc5c48b32bd4da16041f96b897a1f903","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"62c20f39fc5c48b32bd4da16041f96b897a1f903","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-3.0.0.tgz"},"directories":{}},"3.1.0":{"name":"got","version":"3.1.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"1a59f479d9ea35e2fddcf0cf2c5c5250a0c52b27","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@3.1.0","_shasum":"a9ffd775c1cf098a7fc91eb71a176a63379f0e28","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"a9ffd775c1cf098a7fc91eb71a176a63379f0e28","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-3.1.0.tgz"},"directories":{}},"3.2.0":{"name":"got","version":"3.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tape test/test-*.js | tap-dot","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap-dot":"^1.0.0","tape":"^3.5.0"},"gitHead":"1fa82fb44810d835eb090ca28af7b72a9e6be527","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@3.2.0","_shasum":"3182273b695da605c50003dc2d708217cf8156e9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"3182273b695da605c50003dc2d708217cf8156e9","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-3.2.0.tgz"},"directories":{}},"3.3.0":{"name":"got","version":"3.3.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tap test/test-*.js","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^2.0.0","prepend-http":"^1.0.0","read-all-stream":"^2.0.0","statuses":"^1.2.1","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap":"^1.0.0"},"gitHead":"3c728bc664cf0dd9dd4f77643b4e4a2878f86e9e","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@3.3.0","_shasum":"6b1cb3d1f576c2491536f0d28b6cdd23aa4de3e9","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"6b1cb3d1f576c2491536f0d28b6cdd23aa4de3e9","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-3.3.0.tgz"},"directories":{}},"3.3.1":{"name":"got","version":"3.3.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tap test/test-*.js","coverage":"istanbul cover tape --report html -- test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexify":"^3.2.0","infinity-agent":"^2.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","nested-error-stacks":"^1.0.0","object-assign":"^3.0.0","prepend-http":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap":"^1.0.0"},"gitHead":"7bc82b8eb63893f264d3c109abe1530ca74a3fb0","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@3.3.1","_shasum":"e5d0ed4af55fc3eef4d56007769d98192bcb2eca","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"e5d0ed4af55fc3eef4d56007769d98192bcb2eca","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-3.3.1.tgz"},"directories":{}},"4.0.0":{"name":"got","version":"4.0.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tap test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","object-assign":"^3.0.0","pinkie-promise":"^1.0.0","prepend-http":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0"},"devDependencies":{"from2-array":"0.0.3","istanbul":"^0.3.13","pem":"^1.4.4","tap":"^1.0.0"},"gitHead":"f96498fa2f7af1f84d3822d3d531489e7b52c4bc","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@4.0.0","_shasum":"9ea4de4f4c38e7893c145a82dedd231a56c111f4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"9ea4de4f4c38e7893c145a82dedd231a56c111f4","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-4.0.0.tgz"},"directories":{}},"4.1.0":{"name":"got","version":"4.1.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tap test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^3.0.0","pinkie-promise":"^1.0.0","prepend-http":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0"},"devDependencies":{"into-stream":"^2.0.0","istanbul":"^0.3.13","pem":"^1.4.4","tap":"^1.0.0"},"gitHead":"f677a3ef54a8948712e3af86ba807e2f672a3c45","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@4.1.0","_shasum":"96deff3edf46c93a19b7c180409ed73bebd24977","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"96deff3edf46c93a19b7c180409ed73bebd24977","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-4.1.0.tgz"},"directories":{}},"4.1.1":{"name":"got","version":"4.1.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"tap test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^3.0.0","pinkie-promise":"^1.0.0","prepend-http":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0"},"devDependencies":{"into-stream":"^2.0.0","istanbul":"^0.3.13","pem":"^1.4.4","tap":"^1.0.0"},"gitHead":"a7071713f02dc286d7fb8cb7c7f0dfd7b2a8c7af","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@4.1.1","_shasum":"52125e24d488fbfe42ec2ebf84ec9f37b4e3ff44","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"52125e24d488fbfe42ec2ebf84ec9f37b4e3ff44","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-4.1.1.tgz"},"directories":{}},"4.2.0":{"name":"got","version":"4.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && tap test/test-*.js"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^3.0.0","parse-json":"^2.1.0","pinkie-promise":"^1.0.0","prepend-http":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0"},"devDependencies":{"into-stream":"^2.0.0","istanbul":"^0.3.13","pem":"^1.4.4","tap":"^1.0.0","tempfile":"^1.1.1","xo":"*"},"gitHead":"0bf55bbe547c4de4744277dbebdbe7522d87332c","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@4.2.0","_shasum":"af59f461834bfafd722cba01acf4c14a9dd5da06","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"af59f461834bfafd722cba01acf4c14a9dd5da06","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-4.2.0.tgz"},"directories":{}},"5.0.0":{"name":"got","version":"5.0.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"git+https://github.com/sindresorhus/ava.git#7cebc1099","coveralls":"^2.11.4","get-port":"^1.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.2.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"0933d0bb13f704bc9aabcc1eec7a8e33dc8aba51","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.0.0","_shasum":"e1e5b551b09ff02c58b0d0bc77a9028d23299474","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"e1e5b551b09ff02c58b0d0bc77a9028d23299474","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.0.0.tgz"},"directories":{}},"5.1.0":{"name":"got","version":"5.1.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^1.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.3.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"473759c7dad2d23b0f1c1ac466ee40866eeb917e","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.1.0","_shasum":"4735a4184dc3d248cae5105ca692372d0194242a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"4735a4184dc3d248cae5105ca692372d0194242a","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.1.0.tgz"},"directories":{}},"5.2.0":{"name":"got","version":"5.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"2f5d5ba94d625802880b3c793c3c1aa7798d0533","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.2.0","_shasum":"35d15a3da4806470b674664823e9c3bb7924347e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"35d15a3da4806470b674664823e9c3bb7924347e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.2.0.tgz"},"directories":{}},"6.0.0-rc1":{"name":"got","version":"6.0.0-rc1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","@floatdrop/duplexer2":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.7.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^4.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true,"ignores":["test/**"],"rules":{"prefer-reflect":1}},"gitHead":"0d90e18d2d9a63d2843e60c6057c3d4c6146279b","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.0.0-rc1","_shasum":"20830b1d5f6c5efa3601ed64d2ba07398c6415af","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"20830b1d5f6c5efa3601ed64d2ba07398c6415af","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.0.0-rc1.tgz"},"directories":{}},"5.2.1":{"name":"got","version":"5.2.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"a34c96fd45ac080733a068e8cb50a1cc3c33816f","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.2.1","_shasum":"6619b24b185eec92fd420c1203dca1b224925845","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"6619b24b185eec92fd420c1203dca1b224925845","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.2.1.tgz"},"directories":{}},"5.3.0":{"name":"got","version":"5.3.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexify":"^3.2.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"c71a39ebd92fcea28ef21ab4115be0d2beddbc8a","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.3.0","_shasum":"e1ca75936e6512ca7bd23632667aa320dac6e51f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"e1ca75936e6512ca7bd23632667aa320dac6e51f","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.3.0.tgz"},"directories":{}},"6.0.0":{"name":"got","version":"6.0.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","@floatdrop/duplexer2":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.9.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"e5c2d9e93137263c68db985b3dc5b57865c67b82","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.0.0","_shasum":"0800d65a33a255e1fce7de1dd46e1e0b8c62c875","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"0800d65a33a255e1fce7de1dd46e1e0b8c62c875","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.0.0.tgz"},"directories":{}},"6.0.1":{"name":"got","version":"6.0.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexer3":"^0.1.4","create-error-class":"^3.0.0","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.9.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"cbbb249ccb439738d803d26e48f679868a556740","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.0.1","_shasum":"460455fdf793866a70c08e4d1f135e733256f528","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"460455fdf793866a70c08e4d1f135e733256f528","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.0.1.tgz"},"directories":{}},"5.3.1":{"name":"got","version":"5.3.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"db5fbfb32b8d96e1e1b311901c9cd606a5e3841a","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.3.1","_shasum":"75eb796aeb597726afdda572134cb02ad96f5d8b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"75eb796aeb597726afdda572134cb02ad96f5d8b","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.3.1.tgz"},"directories":{}},"5.3.2":{"name":"got","version":"5.3.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"29191a2da41ff5177f54e2568c22d6393b71fddb","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.3.2","_shasum":"b1cac877522dfb262b4b666f0646d40b7b8bca14","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"b1cac877522dfb262b4b666f0646d40b7b8bca14","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.3.2.tgz"},"directories":{}},"6.0.2":{"name":"got","version":"6.0.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"duplexer3":"^0.1.4","create-error-class":"^3.0.0","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.9.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"21be4c1e6634a9446bc4876fe718dda70da6aec8","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.0.2","_shasum":"34ba1bbb8ba17c30f02bc78e9c7f013de730601f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"34ba1bbb8ba17c30f02bc78e9c7f013de730601f","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.0.2.tgz"},"directories":{}},"5.4.0":{"name":"got","version":"5.4.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"2f8fc8f12c75626e84b80bdd62626cef9a8bedd6","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.4.0","_shasum":"680e26c2f56450b9ddc4a295a1262eb96a65055d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"680e26c2f56450b9ddc4a295a1262eb96a65055d","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.4.0.tgz"},"directories":{}},"6.1.0":{"name":"got","version":"6.1.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.10.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"540f2b55459be9b1a762a159eef20fb2531d1dae","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.1.0","_shasum":"8fd2c0f17e7a95753b0688ae5bcc86f41c7d5a93","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"8fd2c0f17e7a95753b0688ae5bcc86f41c7d5a93","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.1.0.tgz"},"directories":{}},"5.4.1":{"name":"got","version":"5.4.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"f81e4eb22950993503a1d08af7cafad88a352a39","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.4.1","_shasum":"d36ced55ff37cbf0541f687cfeb1c6e15f59e374","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"d36ced55ff37cbf0541f687cfeb1c6e15f59e374","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.4.1.tgz"},"directories":{}},"6.1.1":{"name":"got","version":"6.1.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.11.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"26ec3d43f077db28e4f3ee9eeb2de0bdc4afd0af","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.1.1","_shasum":"d7fdeeade40b82b4e583d1c626f64ff5dcba1980","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"d7fdeeade40b82b4e583d1c626f64ff5dcba1980","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.1.1.tgz"},"directories":{}},"6.1.2":{"name":"got","version":"6.1.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.12.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"cecea2d1081c2dc255995229cbcf4eff92a7efb1","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.1.2","_shasum":"4043ab0571216c0a86758151b6ab407e92b4d1a7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"4043ab0571216c0a86758151b6ab407e92b4d1a7","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.1.2.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/got-6.1.2.tgz_1456683078993_0.8965819810982794"},"directories":{}},"5.4.2":{"name":"got","version":"5.4.2","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"ba09d3662ff3d8f1f10150ee41d0170bc11c2f5e","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.4.2","_shasum":"e1ee8338823f06a488b092ac9489d7100e932df5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"e1ee8338823f06a488b092ac9489d7100e932df5","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/got-5.4.2.tgz_1456683103650_0.0760814230889082"},"directories":{}},"6.2.0":{"name":"got","version":"6.2.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.12.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^5.0.1","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"fc86dcc8f100c6b93fe70e945807a4c68be90f4f","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.2.0","_shasum":"eab52adb8b44fad77430ed828d0d531264afb2d7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"eab52adb8b44fad77430ed828d0d531264afb2d7","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/got-6.2.0.tgz_1456991638863_0.8261470813304186"},"directories":{}},"5.5.0":{"name":"got","version":"5.5.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^2.0.0","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"9ed4ed46bc8b219b3f838e4a7737628d370ec4ba","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.5.0","_shasum":"761cbbab3cda44e34123bf543d82c441b531f32d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"761cbbab3cda44e34123bf543d82c441b531f32d","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/got-5.5.0.tgz_1456992043612_0.0267808532807976"},"directories":{}},"5.5.1":{"name":"got","version":"5.5.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.1","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"db9f86dfc25bc75c873a3191055a478ce21b403c","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.5.1","_shasum":"c7d0af2beb0c0e21a6cc2cf235c6591960118a11","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"c7d0af2beb0c0e21a6cc2cf235c6591960118a11","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.5.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-5.5.1.tgz_1459841349746_0.03332527121528983"},"directories":{}},"5.6.0":{"name":"got","version":"5.6.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.1","duplexer2":"^0.1.4","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.5.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^3.2.2","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"ignores":["test/**"]},"gitHead":"d6a81871cf6871548bc79fd9998fd7b47e730f0e","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@5.6.0","_shasum":"bb1d7ee163b78082bbc8eb836f3f395004ea6fbf","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"bb1d7ee163b78082bbc8eb836f3f395004ea6fbf","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.6.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-5.6.0.tgz_1459967538089_0.3577845075633377"},"directories":{}},"6.3.0":{"name":"got","version":"6.3.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/got"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^1.1.0","is-plain-obj":"^1.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^1.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.13.0","coveralls":"^2.11.4","get-port":"^2.0.0","into-stream":"^2.0.0","nyc":"^6.0.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"d360a1d53624c33efbec884e3ef60ee67ddb2f7e","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got","_id":"got@6.3.0","_shasum":"4699e801063f58052b6d66208dc9670c67c18883","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"4699e801063f58052b6d66208dc9670c67c18883","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-6.3.0.tgz_1459967587204_0.5463452294934541"},"directories":{}},"6.5.0":{"name":"got","version":"6.5.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^2.3.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^2.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^1.0.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^3.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"c9f36716797122491ccae779768a9f8c7bf002fa","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.5.0","_shasum":"67dcc727db871c7b250320860180e24d2db18a04","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"67dcc727db871c7b250320860180e24d2db18a04","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/got-6.5.0.tgz_1473843739793_0.4577683887910098"},"directories":{}},"5.7.0":{"name":"got","version":"5.7.0","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0 <7"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.1","duplexer2":"^0.1.4","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^3.0.0","unzip-response":"^1.0.2","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^2.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"0.16.x"},"xo":{"ignores":["test/**"]},"gitHead":"295a6e9c3bfc891740789ed164b15733958d54eb","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@5.7.0","_shasum":"718879e60f824cc0f69721127b835379b056a3af","_from":".","_npmVersion":"2.15.1","_nodeVersion":"0.10.48","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"718879e60f824cc0f69721127b835379b056a3af","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.7.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/got-5.7.0.tgz_1477989819207_0.28333850181661546"},"directories":{}},"6.6.0":{"name":"got","version":"6.6.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^2.3.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^3.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^3.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"4f4ebd7531db3d1e8c1fd309c3dace6181d6175b","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.6.0","_shasum":"8e9b2986e13c27bdea3b5f6707e11886131a452e","_from":".","_npmVersion":"2.15.1","_nodeVersion":"0.10.48","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"8e9b2986e13c27bdea3b5f6707e11886131a452e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.6.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-6.6.0.tgz_1477990276613_0.8485816544853151"},"directories":{}},"6.6.1":{"name":"got","version":"6.6.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^2.3.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^3.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^3.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"e6b86e862a2251c829255e341c1a7bdde4e62122","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.6.1","_shasum":"542d7a0e34676060e561b1b90d103876eefabed2","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"542d7a0e34676060e561b1b90d103876eefabed2","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.6.1.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/got-6.6.1.tgz_1478067096983_0.5160537739284337"},"directories":{}},"5.7.1":{"name":"got","version":"5.7.1","description":"Simplified HTTP/HTTPS requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=0.10.0 <7"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.1","duplexer2":"^0.1.4","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^1.0.0","object-assign":"^4.0.1","parse-json":"^2.1.0","pinkie-promise":"^2.0.0","read-all-stream":"^3.0.0","readable-stream":"^2.0.5","timed-out":"^3.0.0","unzip-response":"^1.0.2","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^2.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"0.16.x"},"xo":{"ignores":["test/**"]},"gitHead":"856b4caf16b02ce28ef0d92e83cf434a50b71e84","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@5.7.1","_shasum":"5f81635a61e4a6589f180569ea4e381680a51f35","_from":".","_npmVersion":"2.15.1","_nodeVersion":"0.10.48","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"5f81635a61e4a6589f180569ea4e381680a51f35","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-5.7.1.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/got-5.7.1.tgz_1478113400687_0.6078383799176663"},"directories":{}},"6.6.2":{"name":"got","version":"6.6.2","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4.5.0"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^2.3.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^3.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^3.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"bf790c52a2ad8c567a126696fc44b7c98f34d683","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.6.2","_shasum":"2419c558bd41eb601b29317cc0dc329c17076b05","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"2419c558bd41eb601b29317cc0dc329c17076b05","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.6.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-6.6.2.tgz_1478427331393_0.7536597871221602"},"directories":{}},"6.6.3":{"name":"got","version":"6.6.3","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^2.3.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","node-status-codes":"^2.0.0","timed-out":"^3.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.16.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","get-stream":"^2.3.0","into-stream":"^3.0.0","nyc":"^8.1.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"gitHead":"9af0330f4d29598ecea162ad6e7be58ece63e681","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.6.3","_shasum":"ff72c56d7f040eb8918ffb80fb62bcaf489d4eec","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"ff72c56d7f040eb8918ffb80fb62bcaf489d4eec","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.6.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-6.6.3.tgz_1478427923035_0.28121051751077175"},"directories":{}},"6.7.0":{"name":"got","version":"6.7.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","safe-buffer":"^5.0.1","timed-out":"^4.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.17.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","into-stream":"^3.0.0","nyc":"^10.0.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"ava":{"concurrency":4},"gitHead":"e367ee460b3c4750093a48ede6c3a25e0b7590c7","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.7.0","_shasum":"a3a7a4473f4f3118095b24567ec5c1b04c069d26","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"a3a7a4473f4f3118095b24567ec5c1b04c069d26","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.7.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/got-6.7.0.tgz_1483006685204_0.2042575771920383"},"directories":{}},"6.7.1":{"name":"got","version":"6.7.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"engines":{"node":">=4"},"browser":{"unzip-response":false},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dependencies":{"create-error-class":"^3.0.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","is-redirect":"^1.0.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","lowercase-keys":"^1.0.0","safe-buffer":"^5.0.1","timed-out":"^4.0.0","unzip-response":"^2.0.1","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.17.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^2.0.0","into-stream":"^3.0.0","nyc":"^10.0.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","xo":"*"},"xo":{"esnext":true},"ava":{"concurrency":4},"gitHead":"52da6067ddac5250d6c2e76af9a150b9cf4ba025","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@6.7.1","_shasum":"240cd05785a9a18e561dc1b44b41c763ef1e8db0","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"floatdrop","email":"floatdrop@gmail.com"},"dist":{"shasum":"240cd05785a9a18e561dc1b44b41c763ef1e8db0","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-6.7.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/got-6.7.1.tgz_1483022570319_0.12133173388428986"},"directories":{}},"7.0.0":{"name":"got","version":"7.0.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"floatdrop@gmail.com","name":"floatdrop"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"decompress-response":"^3.2.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","is-plain-obj":"^1.1.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","p-cancelable":"^0.2.0","p-timeout":"^1.1.1","safe-buffer":"^5.0.1","timed-out":"^4.0.0","url-parse-lax":"^1.0.0"},"devDependencies":{"ava":"^0.19.1","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^3.0.0","into-stream":"^3.0.0","nyc":"^10.0.0","pem":"^1.4.4","pify":"^2.3.0","tempfile":"^1.1.1","tempy":"^0.1.0","universal-url":"^1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false},"gitHead":"c20bc5e8c826045e11a3497baef413232871d6fa","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@7.0.0","_shasum":"82d439f6763cdb1c8821b7a3aae2784c88c3b8d3","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"82d439f6763cdb1c8821b7a3aae2784c88c3b8d3","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-7.0.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got-7.0.0.tgz_1496044922128_0.4668192621320486"},"directories":{}},"7.1.0":{"name":"got","version":"7.1.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"floatdrop@gmail.com","name":"floatdrop"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"decompress-response":"^3.2.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","is-plain-obj":"^1.1.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^1.1.1","safe-buffer":"^5.0.1","timed-out":"^4.0.0","url-parse-lax":"^1.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.20.0","coveralls":"^2.11.4","form-data":"^2.1.1","get-port":"^3.0.0","into-stream":"^3.0.0","nyc":"^11.0.2","pem":"^1.4.4","pify":"^3.0.0","tempfile":"^2.0.0","tempy":"^0.1.0","universal-url":"^1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false},"gitHead":"b725ef576864fc6dd331b4df58ddb12f2f7d6b3a","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@7.1.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==","shasum":"05450fd84094e6bbea56f451a43a9c289166385a","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-7.1.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got-7.1.0.tgz_1498837826024_0.5711319362744689"},"directories":{}},"8.0.0":{"name":"got","version":"8.0.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"floatdrop@gmail.com","name":"floatdrop"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-plain-obj":"^1.1.0","is-retry-allowed":"^1.1.0","is-stream":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^1.2.0","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.23.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"570ff68c4853beda669ed597cd97f5acc24b9f60","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.0.0","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-lqVA9ORcSGfJPHfMXh1RW451aYMP1NyXivpGqGggnfDqNz3QVfMl7MkuEz+dr70gK2X8dhLiS5YzHhCV3/3yOQ==","shasum":"57a11f841edc58e3f3eba4b3ac220faf5133770f","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.0.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got-8.0.0.tgz_1510826780925_0.03324738144874573"},"directories":{}},"8.0.1":{"name":"got","version":"8.0.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"},{"email":"floatdrop@gmail.com","name":"floatdrop"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.6.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.23.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"685c7f3701c38d01e918221e2995c657151505f6","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.0.1","_shasum":"6d7f8bb3eb99e5af912efe26a104476441e08e7f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"6d7f8bb3eb99e5af912efe26a104476441e08e7f","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.0.1.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got-8.0.1.tgz_1512132624720_0.8290727592539042"},"directories":{}},"8.0.2":{"name":"got","version":"8.0.2","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.24.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"f607c7d2a9f6d5da3d3eb0b17a9151054d98e61c","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.0.2","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-6zqdrXga5IfVEgnOwVRcDeSBIRM6oFMcznmZs8iq4herWtVNRMWMSQS+qaBwzMuutuonWJEhGKmWMslvmWcFMw==","shasum":"94d2054767875df4d5eb330f703c63881fc9cd64","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.0.2.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got-8.0.2.tgz_1515851818300_0.5123776632826775"},"directories":{}},"8.0.3":{"name":"got","version":"8.0.3","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.24.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"3f427bb08f30e9a9b8581e77ebb259b52f19d7c5","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.0.3","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-U9GopEw0RLE8c3rbMmQ5/LtM2pLMopRxV7cVh6pNcX6ITLsH/iweqEn6GqoFxoGJHRbNZFvpFJ/knc+RITL6lg==","shasum":"15d038e8101f89e93585d1639d9c49e8a55ae6bc","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.0.3.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got-8.0.3.tgz_1516481774979_0.3266338026151061"},"directories":{}},"8.1.0":{"name":"got","version":"8.1.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.24.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.18.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"17011250185fb37dc435186e6d3fbd4bcdd0f7f6","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-clILMRaLB1Ase3NWiSgTUrhpc951Z5V2IMtcFp8SKwu2aY+aeZZUuv/KKQmix+pz+Ov9SugLry6+JsBezHa9Vw==","shasum":"353a8cdf85ef8f958a38de7729610c43c179141b","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.1.0.tgz","fileCount":5,"unpackedSize":39785},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_8.1.0_1518362489760_0.6916592588929329"},"_hasShrinkwrap":false},"8.2.0":{"name":"got","version":"8.2.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.25.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.20.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"3963b5a25fcd42114ca139e08b625f808d57efbe","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-giadqJpXIwjY+ZsuWys8p2yjZGhOHiU4hiJHjS/oeCxw1u8vANQz3zPlrxW2Zw/siCXsSMI3hvzWGcnFyujyAg==","shasum":"0d11a071d05046348a2f5c0a5fa047fb687fdfc6","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.2.0.tgz","fileCount":5,"unpackedSize":39828},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_8.2.0_1519021389250_0.18971065946124077"},"_hasShrinkwrap":false},"8.3.0":{"name":"got","version":"8.3.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.4.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.25.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","proxyquire":"^1.8.0","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.20.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"7d1aa01e69229ad50ce355589681ff1d1a765627","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.3.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-kBNy/S2CGwrYgDSec5KTWGKUvupwkkTVAjIsVFF2shXO13xpZdFP4d4kxa//CLX2tN/rV0aYwK8vY6UKWGn2vQ==","shasum":"6ba26e75f8a6cc4c6b3eb1fe7ce4fec7abac8533","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.3.0.tgz","fileCount":5,"unpackedSize":41679},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_8.3.0_1520614656306_0.5834686069770603"},"_hasShrinkwrap":false},"8.3.1":{"name":"got","version":"8.3.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.4.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.25.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","proxyquire":"^1.8.0","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.20.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"bd3315b6c61d20a68944831d8b3a05046d5554ad","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.3.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-tiLX+bnYm5A56T5N/n9Xo89vMaO1mrS9qoDqj3u/anVooqGozvY/HbXzEpDfbNeKsHCBpK40gSbz8wGYSp3i1w==","shasum":"093324403d4d955f5a16a7a8d39955d055ae10ed","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.3.1.tgz","fileCount":5,"unpackedSize":42079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6BgNCRA9TVsSAnZWagAAeNwP/34bcjZvnu7Z8s0tCxru\nfRdWjUHrBk4nIdxII0cz9uthhCDkOv6CN6R4P01zkw3U9lI5yoDPebUlqXww\n7Wz5HcODeiAWtjD2OKwDDKdi1ShTdhXKd8mvz0/CgYgLjDwzhxqJwbmSGHZt\nXA1UJfQ2k4ttlpf/7fxe5YEUBQy+vwpMUS0VT7hNEiE8N8DJtg9nj6rXCQ1b\nBIEXQLinfQKtBx6W0I6tdfWDoIJCGjbKsDqsxjCOB2fnxC7K3IBkUahAxw9v\nlNMqOzXgCj8BUkkUaJt1IBmSMr2nzG6HQ6L4MvpkTK9Qeb3bFHD8EqYgCfUB\nsTNupR7W3cXY3H9R8b22BSq+91GS8m1AMFmfVIgxbYV+qv6dSUrqFrh0fUln\n2cnZ1XjWJVvtXBWW/4xceQA8s5SuNfyyrb0kEywj9YzhGG/XfeDyj1NiQJdT\nkKnfT2BIusYR+4ePrioWU1p2KlZbVXUbLGM8yPSl7uTTJS1j/TjOcYgYQqnV\npolyw9z3nOIJPCvjwdl7GV+ea96bBKhifVP1oxqESOvRQUwNWFnD3Ear2GXj\nOfFFJXRFDEPdg7+RvgLpn6HtiR//CGiwkXFjPuLKamlCH4lud90lkA++RdAD\nrByNrS7CLf5WsTl5c2eXNmgTviBxZ18Ej83sVGnAjn0LVbL9NC87vm8TGOkw\n/8Bd\r\n=kfsS\r\n-----END PGP SIGNATURE-----\r\n"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_8.3.1_1525159947345_0.628558559395153"},"_hasShrinkwrap":false},"8.3.2":{"name":"got","version":"8.3.2","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","errors.js"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.7.0","cacheable-request":"^2.1.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","into-stream":"^3.1.0","is-retry-allowed":"^1.1.0","isurl":"^1.0.0-alpha5","lowercase-keys":"^1.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.4.0","p-timeout":"^2.0.1","pify":"^3.0.0","safe-buffer":"^5.1.1","timed-out":"^4.0.1","url-parse-lax":"^3.0.0","url-to-options":"^1.0.1"},"devDependencies":{"ava":"^0.25.0","coveralls":"^3.0.0","form-data":"^2.1.1","get-port":"^3.0.0","nyc":"^11.0.2","p-event":"^1.3.0","pem":"^1.4.4","proxyquire":"^1.8.0","sinon":"^4.0.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","universal-url":"1.0.0-alpha","xo":"^0.20.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"ad7b361dcb2490c3864b845b979b756f13f7d89b","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@8.3.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==","shasum":"1d23f64390e97f776cac52e5b936e5f514d2e937","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-8.3.2.tgz","fileCount":5,"unpackedSize":42097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOztZCRA9TVsSAnZWagAAkHAP/0wgOosxGWAt+NpUaQNh\n+CccVWx2Kdbym5AvviSF4jzNp0TO+uorMLgE7mUk2fHkryJQjtmTEdSOV0AF\n4rETEIqvYv1kiGTaXYYAylWzWZR/Kh3L9fzMltEhamXKTSGsIVBMiJHEQeEU\nDE9v/iEPa/+WqjKYGypiUMH1BxtrRzoJn/kRqkPjOlgHloHBoEVAO7rz7V9N\nnprEt/4wDp0Hot+LT8caNRDvgjdk3RgHkrkKq3g/hQ662z1QVhZOWsw6ICNR\nXMbn7RhZAJOqO6QTSAVzO7ztaNeQPlDjU18ddTktn5y6N6tMhFju/A3HJ38n\nLaTv8D0ojMlXQaD1LBVvIa5IdGXVwaAi2GznHvjP2R3vB2SVw6GHODxzrO0p\ncQyc8sgN1QPznDAFBHCIZ8UrUqyMSBeJoJCGLn+ImPRUlL/++em96qa8oXDm\nN0eAUys7GVsbL8NrXP4JHyvccvytG+jvAQAzFnj1OHIdPkIy+fbuDX5ZWbjl\nW1hR55MxVBjFda2mj29jnvgtqt7AdFCL+vgEW8HiWQudjUJzbP8wQdtun3Fu\nY173NF4PUIxFDQedZQbPW59dasXdpEUaeEdoCN904cPYd0k6dNyWwBgclnqC\nEmWYzk8N7QsWAiy/BekK0D6tkVrCtZM46vYVqO4uIkT5VNd8ASmfSy54h/2L\nCTCj\r\n=8ZZL\r\n-----END PGP SIGNATURE-----\r\n"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_8.3.2_1530608473068_0.7461942716317538"},"_hasShrinkwrap":false},"9.0.0":{"name":"got","version":"9.0.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["source"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.11.0","cacheable-request":"^4.0.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^3.0.0","mimic-response":"^1.0.0","p-cancelable":"^0.5.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"^1.0.0-beta.6","coveralls":"^3.0.0","delay":"^3.0.0","form-data":"^2.1.1","get-port":"^4.0.0","nyc":"^12.0.2","p-event":"^2.1.0","pem":"^1.4.4","proxyquire":"^2.0.1","sinon":"^6.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","xo":"^0.21.1"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"3a145c0477b2b2f7607107a6f0cb69f6b19574bb","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.0.0","_npmVersion":"6.3.0","_nodeVersion":"8.11.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-TumaTIc9kYMFTkLwtvELc1IQYpQDqKqVuLx07I+kQmWHF6LELztdtHoy7w6UYkLfSkNnvzMRkasC/75aJMNiHw==","shasum":"8673d2838adbac8a2e4a07e5772e238c701e9b7c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.0.0.tgz","fileCount":19,"unpackedSize":61968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZUskCRA9TVsSAnZWagAAlgsQAIdbMp39An9WAovDBMSS\nVlux6ohlAe8xAY/8UnvVxbt4k0gI7AWRX0skFxfBGeizAboUhbGRFzRc6j/x\nHxEmgmx9btpi90DcpRWCNgYZHH2qhrD1nG1y/UhiNJ+9jInAOiOG2FWU+ATu\nqlrtYFO+/kxlvLG/TshzQBB1c2WCHiMjzDnzslKBY8qH6/DG+tG1z8CtW/so\nfVOOKMLojujoXaq9zZA17LwQ/Z6IiSbx8xbRPrCbLKP7jISnlHI/EG0LC0vk\n7jJKW4qSF9RbezC4Tav/uelMaSlD89Da/X/GE073y9lDh9U2tS6SwFArJgVu\n7ikMAIiv/77GdpOOIo0Pn3AZGOHXzKF3UXZ750naxQwgjtNLq1MPsUaJiIn8\nk/jjcXsobTFwX/LebQ1XXRebZiJt1PjKRabcYvS5gzk8szCNGcqa4uZMYPAp\nGoz3R793/tq15NiZQyWZ3owSyfJJ0mnDJsjsTxsWT00GgBD96d2Nl/EBjkx4\ns4iTFT6uZwwF7P3ipe81JTQIpqNjWBGbwsi9N9QazdNCydfC/KB2FCac6OaB\nL9fse9CRCsvQkF2sGKaUdfeaK5lsvNZ0gft82LnWJxpsrkQU9ZDw3kMXPHx4\nG3LQGuQI0F/+Le8yPJ8sXZ7+Rlt73VrgHzf9VelmM/CVOBJ40AEhkNKHXfdb\njcEi\r\n=EhYC\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"lukechilds123@gmail.com","name":"lukechilds"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.0.0_1533365028069_0.829938386523517"},"_hasShrinkwrap":false},"9.1.0":{"name":"got","version":"9.1.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["source"],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.11.0","cacheable-request":"^4.0.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.0.0","mimic-response":"^1.0.1","p-cancelable":"^0.5.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-beta.7","coveralls":"^3.0.0","delay":"^3.0.0","form-data":"^2.1.1","get-port":"^4.0.0","nyc":"^12.0.2","p-event":"^2.1.0","pem":"^1.4.4","proxyquire":"^2.0.1","sinon":"^6.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","xo":"^0.22.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"1c54a03bc6a809b73970f1694d3fccd22b664997","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-jAFv4Y23cGnIjQypO5NYuxw+UZDy6MdSX0mp8dMFb7niTQ+4xKhXIpE4tD/blMC/wxhDV1M13SdAPyheKwAeWQ==","shasum":"e31aa530bf953ca51599c5722039f891e49cf2ca","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.1.0.tgz","fileCount":21,"unpackedSize":69011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfqDkCRA9TVsSAnZWagAAE0YP/RtD7TXKkC1xPiM8PCUE\nmp9BBs5K4KX9OcusEfvIHYLEzKaggJebnJKczrLieQcneFggp7dCUnqnZ6/S\n+DCVrXbM7nvvap8IDbRBrqZuEf2JF8meHuK2+XKDjJ6fQ6YldbMcPpWOwvJZ\n5QpYP6DMdvCIVCG7/5lewx4fsOe0cZstTLXS/CUgFHn4T5z2NrZIw+ilplgi\nIzw8pMxA+icYXsnxfCxv3SQen4ahaSvU7fYAUEdrmpIoqSiBPFIFLECGa0rG\n97xCXJgW93Brqhzcy6a2w9zBAlqjwq6Q853u1V4RECB4iSeC9WcLNwPFB5vc\n5ghq4qcaigx6C9zig0kVrMozBK41GU3jsk5F5yeqwU6FntZIocDCPLjN6c7f\nBa3dF0+foDFgOX77cMF234U10x/BP+RN2oy/XZd7UgEkIJwZGmJAHpG1TGMU\nZA4PZ4Ter6OVxUsSPmv2nEJtzvj+O4ZvHIN9cfuQScTR4vhgWu44EsN4JHU4\nlxmGU5n6W8rieOzUd1uaFKhRY0N+KsSEpzZmJjmT4D+1mYs0uX32cJzXRo5y\ntvvvnsON8YKL1ks6EaOAkZ0p4hlFRT1+bWE/LndArgJBOB3Zn2gJfa00JXtE\nfDI5cbeYR+xR8FZ3ZMewb5PZh+qspWlsoP+uSFXcYtNHsYMYtcYKUZ0LPhGp\nJJa/\r\n=w2gD\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"lukechilds123@gmail.com","name":"lukechilds"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.1.0_1535025379793_0.797993204647272"},"_hasShrinkwrap":false},"9.2.0":{"name":"got","version":"9.2.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","coveralls":"nyc report --reporter=text-lcov | coveralls"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.11.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^4.0.1","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.0.0","mimic-response":"^1.0.1","p-cancelable":"^0.5.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-beta.7","coveralls":"^3.0.0","delay":"^3.0.0","form-data":"^2.1.1","get-port":"^4.0.0","nyc":"^12.0.2","p-event":"^2.1.0","pem":"^1.4.4","proxyquire":"^2.0.1","sinon":"^6.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.22.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"aec95d2ddaa25cbb09cc1b3a0084e2051345a574","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-H6GUT6PMamiIm5pVufgmfmuk7Tl92Vr2RHf8n587SGs5HPiarOUVrmyL6bGIfX/mJ5IEUMpHEdGR03LSIHhZrQ==","shasum":"f6aa4e26c984a3175f1073c421e2e40640f8295c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.2.0.tgz","fileCount":21,"unpackedSize":73350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiSOXCRA9TVsSAnZWagAAXVgQAJJ5y1HPxKzm0pxihNWF\nvNmb2Lpm42MezqqGnSNJ7VerYKDIrlctskkJ9mNpPbe64mw23vIIpVBOHt2h\nY2puj2uLiQlIXg3YPoamotixyq45GsXrqMY+f59uVwJuWIREtL8+f1OXS0nX\nuOan1f9w4GbFcUklZhIc3hfH4Ds2Dr5PKlFlByCfOHKUxaD0ZQh5iVVkTRPg\no25kJLDbNTlbbhDaIv1Z0eUhruO3ZYaYRjS+niS+Bqn7ps32J97ZEHazLVXY\n5riFQMi7Hv9dRKTyCFPxHWDDMi0SVdehMSZQmVlrydt7HnANQMev+mq73NxF\nRf1iGnG5lp0jF4oFKyh22k5sCslVUl2UBBOKMrrKi7jgMWmwZQGDe/2VToSS\ncj15ZmbD7DqYJFzzsNrirdz1kzTjvAbKyXqQ2wHFR9J4aAWyo9anA7LfY7uH\nu2ZTVBtU2uEWIpfC7kO3VTrOoq5mp/4fv0L9TJ8sBAnd0AMUr5VozTPN7NAw\nD9OpUv9Wem/T60WeuRwldC5Z+dyjT1Kgyxj7eb9OIAP3CYq9XO4Fdxcr1/mb\nyu016z8NWo+BkZrJ2Fv4yp7rThQ6kh9kOkigbj96yGGNX9ZcU6xK/2tQxKkv\n2S2gWqaxuflYjDM4AVzq0PU6F9CrcZOakLFwKjQzvl7BAvzrmDzAod0mkZAb\n0n2K\r\n=5udz\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"lukechilds123@gmail.com","name":"lukechilds"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.2.0_1535714198736_0.032577579628410236"},"_hasShrinkwrap":false},"9.2.1":{"name":"got","version":"9.2.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.11.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.0.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.0.0","mimic-response":"^1.0.1","p-cancelable":"^0.5.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-beta.8","coveralls":"^3.0.0","delay":"^4.0.0","form-data":"^2.1.1","get-port":"^4.0.0","nyc":"^13.0.1","p-event":"^2.1.0","pem":"^1.4.4","proxyquire":"^2.0.1","sinon":"^6.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"0ddf3ac4a97739a733a4126d8c5ac48075f17a15","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-NntrjQKYtdvTIXUiwPL9kc3gJeJS61UncPVsldGaN1t+k3RdXEUOQcd4zx+mMOnmuDqm2/Gd9PEFSvaQx/so7A==","shasum":"dc2145dfa26ee8e33a9b22e0c54a630f1c2df0ae","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.2.1.tgz","fileCount":21,"unpackedSize":73538,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkQKpCRA9TVsSAnZWagAAzFUP/1uqNqvaZJWEXmjgK40m\n10wYyPQPcAUItakWDss0Hz/PE7v09PyubV8eLF60eoqG5Wcg0h6mIlKj9WCS\nWIqtylGM4G/oHAoMk6C8h/EBTIYcTRU4SGAZen5qy76HI6Ju6s/xAQs4iK8P\nkksdugOl/afC9LHK4sEitPTRYcZ4AX72TD69o3UeIHb3qPOOdzBbgOhprr4g\nrc6OlwuWo9NSkoRQ+B2ZX0IkiN6mxj9HkbDR7s3zVfTFt7UNAFuGKa7eIbfH\nnd7VTxJ5M5IeNRVWr2a4dxIcd9bmksRxTKrTtrgY8JOOMS3CM0LMmXOzmFoY\nIo8u/Ekt0manfl4QG+DeRNJ5NNr7EjTOTnuUNDjty34JqdxrKQFd4jzwpR3w\nkFDBNklcw1InNry4WJEzUWDprYLbRNWpJtnVDWP63Xjyd+o7Kp1LdS32+ZPn\n7CL3K/YO1VV9tr7qRFiegQXMHDsGaMyh8rdaLZ8smOhV2JD55uKhFPV+Qux0\nhWd+i0CQEZyKsYfNu6ytCNNLgBa6do77rS/I6boK+jTTGvBGx30CJmrRt3qA\nBJWQESL8Gs2Q7JOhJq0gb56c7v3xmDVQT5KCFox2NuB1Ztcr7EJOS0lOkMKK\nOJ2clbcwp8qtEoZmFvkXomIJBPSYlHtKg8ldRi3slgJFe2l1ybd5x2Vry3pe\n429x\r\n=hJ8L\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"lukechilds123@gmail.com","name":"lukechilds"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.2.1_1536230056271_0.5184274546412673"},"_hasShrinkwrap":false},"9.2.2":{"name":"got","version":"9.2.2","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.11.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.0.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.0.0","mimic-response":"^1.0.1","p-cancelable":"^0.5.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-beta.8","coveralls":"^3.0.0","delay":"^4.0.0","form-data":"^2.1.1","get-port":"^4.0.0","nyc":"^13.0.1","p-event":"^2.1.0","pem":"^1.4.4","proxyquire":"^2.0.1","sinon":"^6.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"248d68c997f1c37551a4d6b56695bfe17a5db14e","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.2.2","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-XLXmtO1QxLuzj6t4JBClWD1NI/bMvsR9utYl0yyPg49eUJjqU7HaQhPDvSVGwYoSbAqsRfe5aNZXHl1Zctzwmw==","shasum":"d6cb73f40d4cb512864c2f66f275f258ab43aa25","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.2.2.tgz","fileCount":20,"unpackedSize":73699,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnznkCRA9TVsSAnZWagAA2YkP/1GpaPLyaewPZn9M6jCq\nNcLzP/aG4dFS82ML1hlTawg3g4Yf2Umyxchb7C5TqTsw7HRWWrVfMl1Xqcca\nqKslpQxCOypPNrfnQd0EAdoE56d7IWoWIzV03UZo+8Dl9qgOOdp6d5yqM6Ty\n4TAru0RRdmp3QjBGND1EVeyccBaDgYbrFcMAt2H0OS3vkIG8cTFd5sh1k6WV\nZIUxoH3nvoj2ktY2BumWi+QHEqKGSMkHOuHof+K33IGSqMR+3PL7QaV3ef1G\nhINX3QGgI1zclIS0Rn82f1qD3TejpgNYH8zTyaT023hHAYOKhl/ZVVP4BYgV\nUx/e0eNCb7ZVPFngjJqtxKQGGSAFGDfFxsMWyjEANTVYoT0pu+yak6ZMkwou\nBp0Garp9Rx8fDzbchB+HbnewRLPg1meIyWWKy4EWoW2VO+SYpFp69C27ag+6\nS2Lg9UeF+Riome0zHoMTWGBukGj6NZ7r+kjNx/1DM1noTpqMNmJI0EtwIPt1\nP8EN7XHTTmILs19jkMx56gSFTLhgowIlBw4E7oVvFWrEdMfq4PZvNaWCOGkv\nyH2Lhn7ZdAL6xLk9idgRyghNlEISuzv0PZXf8r6iWWfq/fn/00JsyiRNmvgL\nq/cMP0E1XNe5vda5Fs7ITt5pNti9IGADiXy/MGxqNVRMaiSVssHWx+ejCu4x\n0Txm\r\n=odMv\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"alex.tesfamichael@gmail.com","name":"alextes"},{"email":"floatdrop@gmail.com","name":"floatdrop"},{"email":"kevinmartensson@gmail.com","name":"kevva"},{"email":"lukechilds123@gmail.com","name":"lukechilds"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.2.2_1537161699123_0.8406477951172775"},"_hasShrinkwrap":false},"9.3.0":{"name":"got","version":"9.3.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.12.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.1.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-rc.1","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.0.4","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"232e0f365ff4a636e9fc53bda79f4b483998cc50","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.3.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-4WTeObCRe7hatjQmeCwmkviu+ibyfeF5v6De+FeZdfsLEIe/7d9rl3VOzrknXveeQV/Pq/+f+KbscBQsP8ZxUg==","shasum":"9187472a6e7c642264d041b0e670fd8bb1eebb67","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.3.0.tgz","fileCount":20,"unpackedSize":78111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2B4FCRA9TVsSAnZWagAAjQoQAIRujBCd0vssICbEtXsB\n6RnNXClXjEGkYwd2WbipnKggWc0O8mxoYjfotliGDa2ZGqkAzvgOSFcDBXTS\ntuRsKjGm5as1Am+7WzZvHMEUVoCsyBmItknWKc5zQWd02GM5PQKaoMInep3G\nhXP3t4u7H+HccHd66YjZG1XsWnHsXdttIxubcZUNCC83irHujPJxr7OFja+D\nTjZHM6QCY6cQW7yT9f1mALU2EI5Vy29tBc8/IAhsqLL8YBZMeLTrdwtA0Pl1\nfjSf72XLYYoB+pLdD6y0KppJ0+/rfq9xxVyThcbl0dIepf85jq2uZBriMB4t\nDppOyv3wSBrAf9vR5fE8ta0NoklAmstZLfmf5MrbAhV3wWRmKCQMaVn4ZgO1\nY4UJuXz3zcdxbZmtRcWWoUYwkTCEaVF0JDC8o56T3ZL250zkmqyN5e/+XJi6\nXTM5EJU3Wx/ykre7zitVrkOQJIHFYAAyrwgJO6/FBqnbStF7CEe7ihByT9Xf\nZ5kFtwqEe78Ubrr4lcS+hVvMpPw2bgvHnXMZBdvegLJONeyIPKr2wCSlKKDZ\nX2uH2ehNyHmbDgcweGiHxsepDH4Bho0Do4iEEX6nYQuG9EP7VlUV8VAB5HSM\nCHtkDsfuWEa3QNRz0dduwDJynPbXFnATFvhU6kW6FG3Q/+IloTnZXQtkPxWD\n1t+h\r\n=KLLk\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.3.0_1540890115149_0.03451283131331917"},"_hasShrinkwrap":false},"9.3.1":{"name":"got","version":"9.3.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.12.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.1.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-rc.1","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.0.4","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"50fdab303cb2a6b34383de13e5e0ece9ceaf80c9","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.3.1","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-lIVTDQipyF6uz7FpfHJ2Yd67tgb58C6eKAE46CYPqPj4BEkCT/HgdeRx8nF64BbVJWasEtlEJ3OBziuwl8tYrA==","shasum":"f0e6d531e6ece50375de4f18a640b716862f102c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.3.1.tgz","fileCount":20,"unpackedSize":78282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3ZKzCRA9TVsSAnZWagAAMXMP/irGKBjej70LFOWENauD\nSj6xgGcdoVFBGPdk0ES8Z75hHCEkBpYt2ARztCeZVQsi7MCOFLm/Ny09VeOD\nZJBRkBO73cA9R24e4PFTuG55yv0SaIwgqz5Qs4tzDhAzJW/hidyTS42VQNYn\nYpcGJw3w4Wl359+cIAX1Jt58u146/QErUAAzp9kg27Hb6pZKFZgvrgM/1OT9\nLNZvHxul042kx/icI+4cAWYTLCFQmKwzh3WKvjqrkGjvVPQOPaL7dRyhTyYy\nWB3H2DjRqdfG0znfw+upY7RKM8PkJacC/70/SrDkC1uWjBmZjNISv5ThgJrD\nWSCWWls3ciz7j9mzr7YQ9VZQ5soRipYhXr1w2OSxuy+HJjeQHCcIccuIxWwx\niqNTnybVj26SQaP+oWbtSg5ZhXCExEJZP86BaV8KirJiUPMoj2IM1asIeDJS\n9m6m9ujAKj92FXMs82n8w9zOzmnlPDpoaWfuckqKQt/EeGBqEmwpgO95ctvu\nxOq7UwPvy8XbaCHXnk26enFqv2TLCoBdRQL7atdRctp2pdQlBMs68whzAmGX\nI3cjc1I2dy4tOSB449Xl5wrP47UBCibudV9SheVZItAZeoAGbP+OMad0UhbF\naJWSWBnpymQ73QnP7JUahoyNlPFZM8xY+uYotgVoSQwIXz7b7x6BF2BVLoA2\nghX0\r\n=NAef\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.3.1_1541247666080_0.9531824350208147"},"_hasShrinkwrap":false},"9.3.2":{"name":"got","version":"9.3.2","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.12.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.1.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-rc.1","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.0.4","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"4a383f23887edff7b2569b6984eb3d1a2e13f94d","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.3.2","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-OyKOUg71IKvwb8Uj0KP6EN3+qVVvXmYsFznU1fnwUnKtDbZnwSlAi7muNlu4HhBfN9dImtlgg9e7H0g5qVdaeQ==","shasum":"f6e3bd063aa8f461ccd924afa2ba2b61deab3989","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.3.2.tgz","fileCount":20,"unpackedSize":78279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5GHdCRA9TVsSAnZWagAAB3gP/jr+HqvMb1wOA6dWepkf\nxZJeDYK+ZsCpopn/tJy7Z7ub+QNj/cSCaiQkvJfPR8DF3bT/CnF85pIlGFy5\nmahdhMbzotS5T+JqKdqT2aaCOPOEKJ1YmTElqhfHRLDICSiiwYnlQq6PyMSy\n3ouzkvbd/yHlaHb8MpfRZuVqlmzpCtprzW+/vsocnKauTys6HM06Hs8gvRbG\nCcG8+nhBQTlb8Q/mEdI1KZSAjVPbplXCauGzJusrU+sFYhm1TIbZt11UHbGB\nqq3h6WQTvGGJ3utC/doVRo7ltxuii5lwDU1AJJZCfLo5CliP4dLJQOnJbsC4\n+H1vNQKkqEBnS/4NesfbwrwlkQt2IB2nWNWOIaCVziV/vBeFlPk+bztTUh9Y\nSsxLivU2exkxFHmB6b9K/nJ8xNak/SwgKTc3ny8UQaGe4pw8ODtdQIpK/lVM\nOMnBOxOSuvt+/XaCXkGCWPbpgbTQIEPoUoNnitnmdfd9wSlSSDuTDNUtiSCw\nh9mPwb5xkv4L4ilMgORjlU1Arn3d9RoU4wU6BsuesY1+B0JBmgLKdAAN8dpo\nA1Qdj5X9ZFvPHi5eIRq6zruW4c3KHS6f1yk9dKp6HjOSALshAfnwg4HWq4CR\nTY7PFz1r1kJek8rdKOdOjMldoDFjezEX1hAvz4YqV5ANHU0a6yKz8xEPNZUn\nOjop\r\n=x5o2\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.3.2_1541693915420_0.15524097139641668"},"_hasShrinkwrap":false},"9.4.0":{"name":"got","version":"9.4.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.12.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.1.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"1.0.0-rc.1","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.0.4","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.1.0","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"533d7e51ef56f2007ca426cc23b8cbda7ec36b32","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.4.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-k15lhRXITxW0eURHfEGzV+8pBYBHtTrYterFlMzP5rXQcQMPikDC2wvZkgivcJwGH4bv1JzMUTPlHfYGhuXJnw==","shasum":"3b52a54306514b0404b869e1ba572b594772f2b1","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.4.0.tgz","fileCount":19,"unpackedSize":78958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDtU1CRA9TVsSAnZWagAAR3oP+wZMXB6xaEZGEnfBEukz\nPnADzLPrvlYV5lacVoLjy286NuvITaRFw1OmnPI+3woETqGVwk5FDJiysZ5g\nhDDH2lyJRC74P+Crc7FveZuQ+HWXUSRNp0ysCp8ZoiTu0alsf3VuGOAfPJ+C\nkfAdabF7kQP9kTQYc1rrV+FxNizOINYwfKSVx1c9+vhZPTWF/vv+9VSBQQXk\nhXZer+NA+VAMffU53s1ai9Sb3wYdgWzF7ZO8vkUdL2d5Z1JaNQXqDPZ/S8IZ\nqa13nwyRBjx590uU0qdg4TEjzpg5rMwtlk6gxaUE2VHES4Cctj1YyO4uNBEi\nbpu0FzNYDfVJZCWBe7+1WCrTe1h+WMnxT98jG0ghMsPOEqRN+8+DHZgNE9tz\nHrwa95OR7pWQ6yl0ka08/9YRKWzgI0Lqg1ZMVzfmo74ol3SZvyAwGcrYHZc9\nFmfMD4iAvJxv1efqLhlrCiABaCTMP0rqT2ySjRwRG55O9JHzq191PN08oDQP\nMxw0677IZPywc7rg+OzLmUcuMUMI3Zj6F5iive4V3FMvbl4mYRz0vQIRBn8N\nUeeLvzBu2uKCsujt+OX8qOWWtrTXTDOFuhzx9SWZbb3Bj19Ar4zRQ9vfqyMx\n+L0Zz/Cj+ykfDf2ncfJw56PKlxIe9b5llpb33KjBe3NZXpaNDfWeY+9PT00c\nU1KF\r\n=006q\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.4.0_1544475955788_0.7242244388861145"},"_hasShrinkwrap":false},"9.5.0":{"name":"got","version":"9.5.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.14.0","@szmarczak/http-timer":"^1.1.0","cacheable-request":"^5.1.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"^1.0.1","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.1.0","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.2.2","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"91c0607b21f85adc568a0d182b47483e59855f95","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.5.0","_npmVersion":"6.5.0","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-N+4kb6i9t1lauJ4NwLVVoFVLxZNa6i+iivtNzCSVw7+bVbTXoq0qXctdd8i9rj3lrI0zDk5NGzcO4bfpEP6Uuw==","shasum":"6fd0312c6b694c0a11d9119d95fd7daed174eb49","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.5.0.tgz","fileCount":19,"unpackedSize":78920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGQ14CRA9TVsSAnZWagAADaIP/ikaJGjKPXnDcTabh1il\nr6VJTG9+m6i1KpW6p7UY1Q+/PVQjDx36oDOhjrymFHVS/E2fmG5J1gkwFNWi\nBJviGw8AnIDqX2CqMrJrtLmONrx5fbHWLOd/GmVRQasW07JC2bQbuFs7X5Qv\nECZfSZI6RDM2EOviEN83d8If53uYGkZ9NSN4F9iwDnRngxIoI1ooD+BxCCx9\nkpP1S0GA4UMUWPQ0IZcax7HIDzkgXl9OQMuyPgrWkGXS/aG1LX+BB51Y+HRi\nTN7nPMGT0yay7vMO8dAiMacnua28l4aeb5Ln5Q4KcUhuGh4wPoFzVHoBrR4m\nAPHMQNQNj8UZVMn6UmxpbR5fr8FW3Z3UyDb7EeJKo8INdqTB84Rd902amWux\nOZBw2eqSqWuFwKULkELdecF8kDd5if5C8np2xl6sGocvtBWjGF7SgUZZyLdS\n2wodfX6O290GtQmUfQbfn0B8LMI4G8pfQTzYm93KeL48dVSxG3uBZVKAZNDy\nqgqU0nwM5ZShdtS3kvqT3yUA4/TO/nxVx7x6h0NVGBZsDt54UuG4S/Ux9uzi\nrxcYD4pweTxDLUO+XZg1IJojSbg+i+kgHF74hvHFjHdLjRMkWtpFuvybfP+s\ntAJa3f/53TidoUN39vFuOWGY9pA3GTL5cYogOdLxPao8+peHUzOWezDa8W+y\nDxMH\r\n=9JRB\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.5.0_1545145717894_0.3079192997691842"},"_hasShrinkwrap":false},"9.5.1":{"name":"got","version":"9.5.1","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.14.0","@szmarczak/http-timer":"^1.1.2","cacheable-request":"^6.0.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"^1.0.1","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.1.0","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.2.2","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^2.4.3","xo":"^0.23.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"6ce603e99a17d258751ddce23b1c9d424b7be795","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.5.1","_npmVersion":"6.5.0","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-a6UC2YXj3UPQT3UOzCCovwna4WPpN/OBAiiPSUwQ9gFranGs8HQjidyRmen2esBVlauqLWDbMwSTFDtxYNUv+g==","shasum":"9cd83c64978225790c5142fc4e492cdea01256ef","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.5.1.tgz","fileCount":19,"unpackedSize":83728,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOtVjCRA9TVsSAnZWagAAEqIP/0S0fo6/D+MvgR18s+no\nieGTliPxUnUbKHqXMkz8O/xViOPZhe4WGy/gzeIDOHN7CfiZvA1vS8G+l9Ob\n7qyb56G7zqejzED1dNWEkitBQB/Kc5idQ8H5v5OKYn6jwe9gyI+7mriQ7Uk5\ngrUPpxrGtdoWXfiwSxaadez6a82xIYXrfKjdpwtEMuyFH7rG9pLMYt7w2t7J\naI/VrtxcdhBkMkwXCtt9JK2kgC0FU1Bh7HlbTEsSKZJRjMhtls5rmuWTZC8p\nGZ9NgkArY3ts1vrx1kTclfu2Dt90uZ7IXrs5YHn8lr2QU59BJwT7L9iQcRvF\nN07I1Fx1L18W8w3X0BZKNPX2ll9dJJBBxboN8cnGGax/b+pY/GmxgtUuF9YO\nfD2KInQ5AIRfP5TBgIiled2VYBqGc1dR0QThDRKLnNaIH/MIq8mCkSASECz5\nV+otKMgjj3FIWdL4AJecI0ALWMKzN0rJRAwJZ1XqHyD2eqmPxrglghoAqM6R\nvPmbc453P6+5T6il31I3seTjxbDVa08y7MkeXZiixWf4HOqglVpY3Ns0wgRV\nrWlt7VIcg+jgEULeHC7mErBR2TjMu07OB4N8oTslGi83n79C6F1YJlnw8J4W\nEgOhppb97SCs+fd75+tREX0vrAQngID7IvX3aw75Z9O2pCamKqzlJJcG5S5F\nF/2b\r\n=Gi3L\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.5.1_1547359586088_0.39918191915009094"},"_hasShrinkwrap":false},"9.6.0":{"name":"got","version":"9.6.0","description":"Simplified HTTP requests","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/got.git"},"main":"source","engines":{"node":">=8.6"},"scripts":{"test":"xo && nyc ava","release":"np"},"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],"dependencies":{"@sindresorhus/is":"^0.14.0","@szmarczak/http-timer":"^1.1.2","cacheable-request":"^6.0.0","decompress-response":"^3.3.0","duplexer3":"^0.1.4","get-stream":"^4.1.0","lowercase-keys":"^1.0.1","mimic-response":"^1.0.1","p-cancelable":"^1.0.0","to-readable-stream":"^1.0.0","url-parse-lax":"^3.0.0"},"devDependencies":{"ava":"^1.1.0","coveralls":"^3.0.0","delay":"^4.1.0","form-data":"^2.3.3","get-port":"^4.0.0","np":"^3.1.0","nyc":"^13.1.0","p-event":"^2.1.0","pem":"^1.13.2","proxyquire":"^2.0.1","sinon":"^7.2.2","slow-stream":"0.0.4","tempfile":"^2.0.0","tempy":"^0.2.1","tough-cookie":"^3.0.0","xo":"^0.24.0"},"ava":{"concurrency":4},"browser":{"decompress-response":false,"electron":false},"gitHead":"a45e071e8dc5027ab9c7fad5919195501cd9e9ca","bugs":{"url":"https://github.com/sindresorhus/got/issues"},"homepage":"https://github.com/sindresorhus/got#readme","_id":"got@9.6.0","_npmVersion":"6.5.0","_nodeVersion":"10.13.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==","shasum":"edf45e7d67f99545705de1f7bbeeeb121765ed85","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/got/-/got-9.6.0.tgz","fileCount":19,"unpackedSize":85411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQAzICRA9TVsSAnZWagAAZaIP+wQ2nqz3Di5LBw4A+tvk\nVcdvV+xkvu+ULzZbvPcGA2EuVXcY8MRWutgK1pGi8N4maAJi/KMDlZYL2zGh\nKYUzKeYDHjzS/MFgrUhU73eVnhWP3MPLQYXL30jFwW+czV04qaATaurQXqXB\nMl4gfiEfbKRU41NDPKsUtlZuiNDwRSll9AFpYqWqJ3eKZWFzKNRy1IbfzGg+\nP8DjJBBKyZTvi1MT9Q1mZUqphFkwkbJs5c5oJ6PzsdASzwybvK2pVi2vtCta\n0Xx9lQkfIDD88/xv6JSuPPLzJswWg4uJhnTGjEjeuP6RanIfIKv5QXdLWQc3\nNT5wXyXld9eBbWXMzmj7Ql2FuJYRfnsX2B7gbNH7shiVRoXLpxHKfilnZ78s\n+udT72DufofDYyTR+a46CPY/+hiM6wf9W+QCFEtJtDe4a1dMIkTbr8PNGwRM\nOsCurf3uMSJtBmI5cii7wOI/4hSCjm6AJu0BN9a+qrhwUHyRfk3oNJ49uckX\nV8/QoWHCGkBIVMkBLIaZlokh7mrChJHCG4bwnNXs6TuEDlccdtiVkP4pr+2r\nDLT4f2nbHpxU78hJaqfqRYj9daPFl2T5GBUPrzF4DVcAG+xwHOzpRyO/JZMx\n7Cr15r6aX0917muBnUcw8WUw7lnjy8Yrwf3Hgq7oNkolNaXwSpY/NtzfeHVj\nr3kt\r\n=NEVT\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/got_9.6.0_1547701446369_0.12698734393224176"},"_hasShrinkwrap":false}},"name":"got","time":{"modified":"2019-03-25T16:50:09.137Z","created":"2014-03-27T22:43:12.196Z","0.1.0":"2014-03-27T22:43:12.196Z","0.1.1":"2014-04-12T13:47:38.755Z","0.2.0":"2014-04-13T18:14:49.110Z","0.3.0":"2014-05-10T23:39:27.862Z","1.0.0":"2014-08-05T09:43:06.091Z","1.0.1":"2014-08-12T08:21:25.243Z","1.1.0":"2014-08-17T12:43:15.105Z","1.2.0":"2014-08-20T22:37:57.307Z","1.2.1":"2014-09-23T14:14:34.374Z","1.2.2":"2014-10-03T14:11:25.869Z","2.0.0":"2014-11-23T09:01:36.404Z","2.1.0":"2014-12-02T10:31:12.398Z","2.2.0":"2014-12-07T17:49:45.912Z","2.3.0":"2015-01-05T09:15:38.995Z","2.3.1":"2015-01-19T13:02:19.029Z","2.3.2":"2015-01-24T08:03:00.841Z","2.4.0":"2015-02-06T09:25:12.987Z","2.5.0":"2015-03-24T18:47:14.096Z","2.6.0":"2015-04-03T14:49:18.932Z","2.7.0":"2015-04-06T11:30:17.357Z","2.7.1":"2015-04-08T11:03:27.381Z","2.7.2":"2015-04-08T18:59:36.007Z","2.8.0":"2015-04-21T05:48:05.902Z","2.8.1":"2015-04-21T14:08:22.947Z","2.9.0":"2015-04-26T15:55:52.739Z","2.9.1":"2015-04-26T18:29:10.206Z","2.9.2":"2015-04-27T06:30:24.516Z","3.0.0":"2015-05-06T06:30:58.538Z","3.1.0":"2015-05-08T11:12:05.123Z","3.2.0":"2015-05-08T16:48:58.710Z","3.3.0":"2015-06-30T13:05:28.712Z","3.3.1":"2015-07-15T10:16:53.806Z","4.0.0":"2015-07-25T06:31:20.863Z","4.1.0":"2015-07-27T11:12:35.402Z","4.1.1":"2015-07-28T15:01:59.215Z","4.2.0":"2015-09-09T08:58:13.223Z","5.0.0":"2015-10-18T09:28:57.901Z","5.1.0":"2015-11-04T06:14:56.435Z","5.2.0":"2015-12-02T07:54:48.847Z","6.0.0-rc1":"2015-12-07T05:37:56.742Z","5.2.1":"2015-12-15T15:05:48.697Z","5.3.0":"2015-12-20T17:26:48.800Z","6.0.0":"2016-01-07T16:32:11.588Z","6.0.1":"2016-01-11T12:48:36.344Z","5.3.1":"2016-01-12T10:42:52.883Z","5.3.2":"2016-01-13T08:59:14.318Z","6.0.2":"2016-01-13T08:59:36.251Z","5.4.0":"2016-01-16T11:25:19.190Z","6.1.0":"2016-01-16T11:25:45.613Z","5.4.1":"2016-01-25T10:06:31.058Z","6.1.1":"2016-01-25T10:11:30.894Z","6.1.2":"2016-02-28T18:11:22.062Z","5.4.2":"2016-02-28T18:11:46.401Z","6.2.0":"2016-03-03T07:54:01.845Z","5.5.0":"2016-03-03T08:00:46.060Z","5.5.1":"2016-04-05T07:29:12.088Z","5.6.0":"2016-04-06T18:32:20.306Z","6.3.0":"2016-04-06T18:33:09.807Z","6.5.0":"2016-09-14T09:02:20.690Z","5.7.0":"2016-11-01T08:43:39.778Z","6.6.0":"2016-11-01T08:51:18.521Z","6.6.1":"2016-11-02T06:11:37.653Z","5.7.1":"2016-11-02T19:03:21.382Z","6.6.2":"2016-11-06T10:15:33.357Z","6.6.3":"2016-11-06T10:25:25.129Z","6.7.0":"2016-12-29T10:18:05.884Z","6.7.1":"2016-12-29T14:42:52.311Z","7.0.0":"2017-05-29T08:02:02.304Z","7.1.0":"2017-06-30T15:50:27.227Z","8.0.0":"2017-11-16T10:06:21.021Z","8.0.1":"2017-12-01T12:50:25.797Z","8.0.2":"2018-01-13T13:56:59.785Z","8.0.3":"2018-01-20T20:56:16.440Z","8.1.0":"2018-02-11T15:21:29.820Z","8.2.0":"2018-02-19T06:23:09.405Z","8.3.0":"2018-03-09T16:57:36.401Z","8.3.1":"2018-05-01T07:32:27.487Z","8.3.2":"2018-07-03T09:01:13.131Z","9.0.0":"2018-08-04T06:43:48.207Z","9.1.0":"2018-08-23T11:56:19.886Z","9.2.0":"2018-08-31T11:16:38.952Z","9.2.1":"2018-09-06T10:34:16.424Z","9.2.2":"2018-09-17T05:21:39.232Z","9.3.0":"2018-10-30T09:01:56.256Z","9.3.1":"2018-11-03T12:21:06.327Z","9.3.2":"2018-11-08T16:18:35.578Z","9.4.0":"2018-12-10T21:05:56.581Z","9.5.0":"2018-12-18T15:08:39.990Z","9.5.1":"2019-01-13T06:06:26.208Z","9.6.0":"2019-01-17T05:04:06.497Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/got#readme"}