{"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"floatdrop","email":"floatdrop@gmail.com"},{"name":"kevva","email":"kevinmartensson@gmail.com"}],"keywords":["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch"],"dist-tags":{"latest":"6.7.1","rc":"6.0.0-rc1","5.x-branch":"5.7.1"},"description":"Simplified HTTP requests","readme":"<h1 align=\"center\">\n\t<br>\n\t<img width=\"360\" src=\"https://rawgit.com/sindresorhus/got/master/media/logo.svg\" alt=\"got\">\n\t<br>\n\t<br>\n\t<br>\n</h1>\n\n> Simplified HTTP requests\n\n[![Build Status](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)\n\nA nicer interface to the built-in [`http`](http://nodejs.org/api/http.html) module.\n\nIt supports following redirects, promises, streams, retries, automagically handling gzip/deflate and some convenience options.\n\nCreated because [`request`](https://github.com/request/request) is bloated *(several megabytes!)*.\n\n\n## Install\n\n**WARNING: Node.js 4 or higher is required for got@6 and above.** For older Node.js versions use [got@5](https://github.com/sindresorhus/got/tree/v5.x).\n\n```\n$ npm install --save got\n```\n\n\n## Usage\n\n```js\nconst fs = require('fs');\nconst got = require('got');\n\ngot('todomvc.com')\n\t.then(response => {\n\t\tconsole.log(response.body);\n\t\t//=> '<!doctype html> ...'\n\t})\n\t.catch(error => {\n\t\tconsole.log(error.response.body);\n\t\t//=> 'Internal server error ...'\n\t});\n\n// Streams\ngot.stream('todomvc.com').pipe(fs.createWriteStream('index.html'));\n\n// For POST, PUT and PATCH methods got.stream returns a WritableStream\nfs.createReadStream('index.html').pipe(got.stream.post('todomvc.com'));\n```\n\n\n### API\n\nIt's a `GET` request by default, but can be changed in `options`.\n\n#### got(url, [options])\n\nReturns a Promise for a `response` object with a `body` property, a `url` property with the request URL or the final URL after redirects, and a `requestUrl` property with the original request URL.\n\n##### url\n\nType: `string`, `object`\n\nThe URL to request or a [`http.request` options](https://nodejs.org/api/http.html#http_http_request_options_callback) object.\n\nProperties from `options` will override properties in the parsed `url`.\n\n##### options\n\nType: `object`\n\nAny of the [`http.request`](http://nodejs.org/api/http.html#http_http_request_options_callback) options.\n\n###### body\n\nType: `string`, `buffer`, `readableStream`, `object`\n\n*This is mutually exclusive with stream mode.*\n\nBody 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\nIf `content-length` or `transfer-encoding` is not set in `options.headers` and `body` is a string or buffer, `content-length` will be set to the body length.\n\nIf `body` is a plain object, it will be stringified with [`querystring.stringify`](https://nodejs.org/api/querystring.html#querystring_querystring_stringify_obj_sep_eq_options) and sent as `application/x-www-form-urlencoded`.\n\n###### encoding\n\nType: `string`, `null`<br>\nDefault: `'utf8'`\n\nEncoding to be used on `setEncoding` of the response data. If `null`, the body is returned as a Buffer.\n\n###### json\n\nType: `boolean`<br>\nDefault: `false`\n\n*This is mutually exclusive with stream mode.*\n\nParse response body with `JSON.parse` and set `accept` header to `application/json`.\n\n###### query\n\nType: `string`, `object`<br>\n\nQuery string object that will be added to the request URL. This will override the query string in `url`.\n\n###### timeout\n\nType: `number`, `object`\n\nMilliseconds to wait for a server to send response headers before aborting request with `ETIMEDOUT` error.\n\nOption accepts `object` with separate `connect` and `socket` fields for connection and socket inactivity timeouts.\n\n###### retries\n\nType: `number`, `function`<br>\nDefault: `5`\n\nNumber of request retries when network errors happens. Delays between retries counts with function `1000 * Math.pow(2, retry) + Math.random() * 100`, where `retry` is attempt number (starts from 0).\n\nOption accepts `function` with `retry` and `error` arguments. Function must return delay in milliseconds (`0` return value cancels retry).\n\n**Note:** if `retries` is `number`, `ENOTFOUND` and `ENETUNREACH` error will not be retried (see full list in [`is-retry-allowed`](https://github.com/floatdrop/is-retry-allowed/blob/master/index.js#L12) module).\n\n###### followRedirect\n\nType: `boolean`<br>\nDefault: `true`\n\nDefines if redirect responses should be followed automatically.\n\n\n#### Streams\n\n#### got.stream(url, [options])\n\n`stream` method will return Duplex stream 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', req => setTimeout(() => req.abort(), 50));\n```\n\n##### .on('response', response)\n\n`response` event to get the response object of the final request.\n\n##### .on('redirect', response, nextOptions)\n\n`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('error', error, body, response)\n\n`error` event emitted in case of 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 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\n## Errors\n\nEach error contains (if available) `statusCode`, `statusMessage`, `host`, `hostname`, `method` and `path` properties to make debugging easier.\n\nIn Promise mode, the `response` is attached to the 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 and `JSON.parse` fails.\n\n#### got.HTTPError\n\nWhen server response code is not 2xx. Contains `statusCode` and `statusMessage`.\n\n#### got.MaxRedirectsError\n\nWhen server redirects you more than 10 times.\n\n\n## Proxies\n\nYou can use the [`tunnel`](https://github.com/koichik/node-tunnel) module with the `agent` option to work with proxies:\n\n```js\nconst got = require('got');\nconst tunnel = require('tunnel');\n\ngot('todomvc.com', {\n\tagent: tunnel.httpOverHttp({\n\t\tproxy: {\n\t\t\thost: 'localhost'\n\t\t}\n\t})\n});\n```\n\n\n## Cookies\n\nYou can use the [`cookie`](https://github.com/jshttp/cookie) module to include cookies in a request:\n\n```js\nconst got = require('got');\nconst cookie = require('cookie');\n\ngot('google.com', {\n\theaders: {\n\t\tcookie: cookie.serialize('foo', 'bar')\n\t}\n});\n```\n\n\n## Form data\n\nYou can use the [`form-data`](https://github.com/form-data/form-data) module 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) module 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, e.g. `/var/run/docker.sock`\n- `PATH` - request path, e.g. `/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## Tip\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.\n\n```js\nconst got = require('got');\nconst pkg = require('./package.json');\n\ngot('todomvc.com', {\n\theaders: {\n\t\t'user-agent': `my-module/${pkg.version} (https://github.com/username/my-module)`\n\t}\n});\n```\n\n\n## Related\n\n- [gh-got](https://github.com/sindresorhus/gh-got) - Convenience wrapper for interacting with the GitHub API\n- [travis-got](https://github.com/samverschueren/travis-got) - Convenience wrapper for interacting with the Travis API\n\n\n## Created by\n\n[![Sindre Sorhus](https://avatars.githubusercontent.com/u/170270?v=3&s=100)](https://sindresorhus.com) | [![Vsevolod Strukchinsky](https://avatars.githubusercontent.com/u/365089?v=3&s=100)](https://github.com/floatdrop)\n---|---\n[Sindre Sorhus](https://sindresorhus.com) | [Vsevolod Strukchinsky](https://github.com/floatdrop)\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\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,"twilightfeel":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,"erickeno":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,"niksudan":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},"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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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://nexus.dui88.com:8081/nexus/content/groups/npm-all/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":{}}},"name":"got","time":{"modified":"2017-04-02T10:43:56.916Z","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"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/got#readme"}