{"_id":"requisition","_rev":"68-39fb22093ef72dcec621c74c4d19f5bf","name":"requisition","time":{"modified":"2022-06-26T11:44:19.695Z","created":"2012-08-19T00:29:11.655Z","0.0.1":"2012-08-19T00:29:12.395Z","0.0.2":"2012-08-28T12:37:44.920Z","0.0.3":"2012-08-31T04:47:12.579Z","0.1.0":"2012-11-11T02:15:44.946Z","0.2.0":"2012-11-15T01:55:57.324Z","0.2.1":"2013-01-12T21:24:18.916Z","0.2.2":"2013-01-14T00:30:16.702Z","0.3.0":"2013-01-14T00:37:35.958Z","1.0.0":"2014-10-22T07:02:48.632Z","1.1.0":"2014-10-26T03:28:10.975Z","1.2.0":"2014-12-07T04:00:42.425Z","1.3.0":"2014-12-10T05:22:30.242Z","1.4.0":"2014-12-12T07:06:11.633Z","1.5.0":"2014-12-19T09:37:01.540Z","1.5.1":"2015-05-10T04:14:28.401Z","1.6.0":"2016-02-28T22:07:27.404Z","1.7.0":"2016-02-29T23:14:52.611Z"},"maintainers":[{"email":"hunter@hunterloftis.com","name":"hunterloftis"},{"email":"gadr90@gmail.com","name":"firstdoit"},{"email":"haoxins@outlook.com","name":"coderhaoxin"},{"email":"jonathanrichardong@gmail.com","name":"jongleberry"}],"dist-tags":{"latest":"1.7.0"},"description":"ES7 async/await ready http client","readme":"\n# requisition\n\n[![NPM version][npm-image]][npm-url]\n[![Build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![Dependency Status][david-image]][david-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\nA light, fluent node.js HTTP client for ES6.\nHeavily inspired by [superagent](https://github.com/visionmedia/superagent)\nas well as [fetch](https://github.com/github/fetch).\nDesigned with ES7 async/await in mind.\n\nThe API is quite minimal for now.\nFeatures will be added while people request or use them.\n\n```js\nvar req = require('requisition');\n\n// GET a JSON body\nasync function () {\n  var res = await req('/users.json');\n  var body = await res.json();\n}\n\n// POST an image file\nasync function () {\n  var res = await req.post('/images.json').sendFile('image.png');\n  var body = await res.json();\n}\n```\n\n## Differences\n\nThis is similar to other AJAX libraries like [axios](https://github.com/mzabriskie/axios) except:\n\n- Does not have browser support\n- Does not depend on gigantic options objects\n- Many utilities for handling HTTP responses like saving to a file\n\n## API\n\n```js\nvar request = require('requisition');\n```\n\n### Request\n\n#### request(url)\n\n`GET` a `url`, return the response object.\n\n#### request\\[VERB\\](url)\n\n`VERB` a `url`, specifically when it's not `GET`.\n\n#### request().then( response => )\n\nSend the request and wait for the response.\n\n```js\nrequest('/').then(function (response) {\n\n})\n```\n\n#### request().set(headers)\n\nSet an object of headers.\n\n#### request().set(header, value)\n\nSet a single header.\n\n#### request().auth(name, pass)\n\nAdd basic authorization.\n\n#### request().agent(agent)\n\nSet http agent.\n\n#### request().timeout(ms)\n\nSet timeout.\n\n#### request().redirects(num)\n\nSet max redirect times.\n\n#### request().ifModifiedSince(date)\n\nSet header `If-Modified-Since`.\n\n#### request().ifNoneMatch(value)\n\nSet header `If-None-Match`.\n\n#### request().type(type)\n\nSet header `Content-Type`.\n\n#### request().cookie(key, value, options)\n\nSet cookie, uses [cookie.serialize()](https://github.com/jshttp/cookie)\n\n```js\nrequest('/cookie')\n  .cookie(name, value, options)\n  .then(function (response) {\n    console.info(response.cookies);\n  })\n```\n\n#### request().query(params)\n\nAdd query string.\n\n#### request().send(data)\n\nAdd http body.\n\n#### request().sendFile(filename)\n\nSend file.\n\n### Response\n\n#### response.status\n\nThe status code of the response.\n\n#### response.headers\n\nThe header object of the response.\n\n#### response.is(types...)\n\nInfer the `Content-Type` of the response,\nsimilar to Koa or Express' method.\nSee [type-is](https://github.com/jshttp/type-is).\n\n#### response.get(header)\n\nGet the value for a header.\n\n#### response.charset\n\nGet charset.\n\n#### response.etag\n\nGet header `ETag`.\n\n#### response.lastModified\n\nGet header `Last-Modified`.\n\n#### response.cookies\n\nGet cookies\n\n```js\nrequest('/cookie').then(function (response) {\n  console.info(response.cookies);\n})\n\n#### response.buffer().then( buffer => )\n\nReturn a single `Buffer` for the entire response.\n\n#### response.text().then( text => )\n\nReturn a single `String` for the entire response.\n\n#### response.json().then( body => )\n\nAutomatically parse the JSON of the response.\n\n```js\nrequest('/users.json').then(function (response) {\n  assert(response.status === 200, 'Bad response!');\n  assert(response.is('json'), 'Bad type!');\n  return response.json()\n}).then(function (body) {\n  console.log(body);\n})\n```\n\n#### response.saveTo([filename]).then( filename => )\n\nSave the response to a file.\nIf no `filename` is specified,\nsaves to a random file in your temporary directory.\n\n```js\nrequest('/file.txt').then(function (response) {\n  return response.saveTo('/tmp/file.txt');\n}).then(function () {\n  console.log('file saved!');\n})\n```\n\n#### response.dump()\n\nDumps the response. Execute this if you haven't handled the body.\n\n#### response.destroy()\n\nDestroy the response.\n\n[npm-image]: https://img.shields.io/npm/v/requisition.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/requisition\n[github-tag]: http://img.shields.io/github/tag/thenables/requisition.svg?style=flat-square\n[github-url]: https://github.com/thenables/requisition/tags\n[travis-image]: https://img.shields.io/travis/thenables/requisition.svg?style=flat-square\n[travis-url]: https://travis-ci.org/thenables/requisition\n[coveralls-image]: https://img.shields.io/coveralls/thenables/requisition.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/thenables/requisition\n[david-image]: http://img.shields.io/david/thenables/requisition.svg?style=flat-square\n[david-url]: https://david-dm.org/thenables/requisition\n[license-image]: http://img.shields.io/npm/l/requisition.svg?style=flat-square\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/requisition.svg?style=flat-square\n[downloads-url]: https://npmjs.org/package/requisition\n","versions":{"1.0.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.0.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/thenables/requisition"},"dependencies":{"fs-cp":"^1.2.0","memorizer":"^1.0.0","methods":"^1.1.0","native-or-bluebird":"^1.1.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"bluebird":"^2.3.6","istanbul":"0","mocha":"1"},"scripts":{"test":"mocha --reporter spec","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"9703ae45fd9b6301cc6079b0b659091d70c72058","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition","_id":"requisition@1.0.0","_shasum":"2608923321428eca9987b6bfafff86eb16143566","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.32","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"dist":{"shasum":"2608923321428eca9987b6bfafff86eb16143566","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.0.0.tgz","integrity":"sha512-xgQYtvVd5UtKl5Mxci7mYoP/lM+z5vZ3WO99iTlZHmPQMTMd7BEMOw36BD5ib9w320Pp4yqpsyPKZDadp2H5qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAsLvcnNyryV6yKRNY86xaQfzPEVE9C6AyvApS9TsjCaAiEA9eefDsrfmYsuATHq52zy0v+xZFqprt4On/Dm3fILVIE="}]}},"1.1.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.1.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/thenables/requisition"},"dependencies":{"destroy":"^1.0.3","fs-cp":"^1.2.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^1.0.2","native-or-bluebird":"^1.1.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"bluebird":"^2.3.6","express":"^4.9.8","istanbul":"0","mocha":"2"},"scripts":{"test":"mocha --reporter spec","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"099f75931ed083ece71247259dea89d352616517","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition","_id":"requisition@1.1.0","_shasum":"d9a364b8868aae7d12e70ee9a7bcac7e31301ab3","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.11.14","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"dist":{"shasum":"d9a364b8868aae7d12e70ee9a7bcac7e31301ab3","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.1.0.tgz","integrity":"sha512-JdEfl5m809Pr41GfqGEO4A0kogVRUHUK1w78w3IUwMq8+X51xOipsQmmTg9sWDZNGuX/Fw1QnseWeE7H/Y2BcA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDGAkF7H1BkTkXOsWobZliJV2+iy9TRp4xIZWy9hfPTNAiEAyqvf0Z7okac/yFi4vnPVno7uXmHVRQoDZLn7cXMKwmY="}]}},"1.2.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.2.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/thenables/requisition"},"dependencies":{"destroy":"^1.0.3","fs-cp":"^1.2.0","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^1.0.2","native-or-bluebird":"^1.1.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"bluebird":"^2.3.6","express":"^4.9.8","istanbul":"0","mocha":"2"},"scripts":{"test":"mocha --reporter spec","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"75758e6fe0e00a1cbe27e61bd42c062224c43784","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition","_id":"requisition@1.2.0","_shasum":"3d4335d300eb106531bb99e68d5fb7e765762e05","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.11.14","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"dist":{"shasum":"3d4335d300eb106531bb99e68d5fb7e765762e05","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.2.0.tgz","integrity":"sha512-Eb/bveXrjp3gGujnPxSmMYz41FqQksobyYwWR8TzH2xFSQ32Batiban4VD5zVmE7HNa0zB5Df8ZSNQ2+e3ZZsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB77X9WqVZ/PCDl6a8vVHvGC6K8VXnLDglyrkH3BaPDeAiAY0j3OTNWcWN37SE5ag0UD58SaQhbfWgeJB1PU8Zy4Nw=="}]}},"1.3.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.3.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/thenables/requisition"},"dependencies":{"destroy":"^1.0.3","fs-cp":"^1.2.0","http-errors":"^1.2.7","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^1.0.2","native-or-bluebird":"^1.1.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"bluebird":"^2.3.6","body-parser":"^1.10.0","concat-stream":"^1.4.7","express":"^4.9.8","istanbul":"0","mocha":"2"},"scripts":{"test":"mocha --reporter spec","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"f83610abb5b5d922bb26f7c478d4ffbf1060fd39","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition","_id":"requisition@1.3.0","_shasum":"cef8d04f1bbcac129d232705cd4da4d598fcfd79","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.11.14","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"dist":{"shasum":"cef8d04f1bbcac129d232705cd4da4d598fcfd79","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.3.0.tgz","integrity":"sha512-Q8u/b6EMfUmJU34dnB5FqAdLh2oyNEh/9v+8tGcoxEMQqbn7B+ujXFaXFHptnfrCxCpw0Hw7EAZ2gVyXKjqJVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGIhrUNKhmLiXNe0Oa1Hfk/snrk2NQjKF32U5gONBhUVAiEA3sRxJSKYI9+FI4znsTp02PaVxuPd0rIuiuiCATEPh3k="}]}},"1.4.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.4.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/thenables/requisition"},"dependencies":{"destroy":"^1.0.3","fs-cp":"^1.2.0","http-errors":"^1.2.7","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^1.0.2","native-or-bluebird":"^1.1.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"basic-auth":"1","bluebird":"^2.3.6","body-parser":"^1.10.0","concat-stream":"^1.4.7","express":"^4.9.8","istanbul":"0","mocha":"2"},"scripts":{"test":"mocha --reporter spec","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"5913b215149715024fd16ce4532f515920f1d603","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition","_id":"requisition@1.4.0","_shasum":"a2478d594533103958d0637f64077cdfdea2e87d","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.11.14","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"dist":{"shasum":"a2478d594533103958d0637f64077cdfdea2e87d","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.4.0.tgz","integrity":"sha512-6vqOB83h/92/aW2+7/SBssZ4hdfPCiRWZT5mU+y9cE7+CTqz/XKf23i2UflQIsVNYSnk7m9gjXFZ9j1cmnGPNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDMmfDuTAhvBrdOrr0YGWxPWoqWSD8V2jWxf6IQz6Ut5gIgKKw8rkoux0or8JaylsLYb/ARxGDVxOfiDYwq5wjG35w="}]}},"1.5.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.5.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/thenables/requisition"},"dependencies":{"destroy":"^1.0.3","fs-cp":"^1.2.0","http-errors":"^1.2.7","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^1.0.2","native-or-bluebird":"^1.1.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"basic-auth":"1","bluebird":"^2.3.6","body-parser":"^1.10.0","concat-stream":"^1.4.7","express":"^4.9.8","istanbul":"0","mocha":"2"},"scripts":{"test":"mocha --reporter spec","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"1fdf4b5fd33ac6ad7e7a85b1ab101d5eff4b9033","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition","_id":"requisition@1.5.0","_shasum":"ae52603e590f32910eef5dbccfda65ab39145a53","_from":".","_npmVersion":"2.1.12","_nodeVersion":"0.11.14","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"dist":{"shasum":"ae52603e590f32910eef5dbccfda65ab39145a53","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.5.0.tgz","integrity":"sha512-nW+vTeUCxEeV/tIHkMB1yvxLEK+UAuEdCtOp+KTYLgYXh9rzf3MBjJsi0G6FeBGgUAd8l2EJ2yELyvZjHut+DQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICCsJz4l0I0DfaK2cZdpODqHZH67wcbdcc45VMc7WsLoAiEA9oBF28RmMw394I6VezQukjfAeJ4VFyTrNDAdsbvZjwk="}]}},"1.5.1":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.5.1","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/thenables/requisition.git"},"dependencies":{"destroy":"^1.0.3","fs-cp":"^1.2.0","http-errors":"^1.2.7","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^1.0.2","native-or-bluebird":"^1.1.1","parse-link-header":"^0.2.0","statuses":"^1.2.0","stream-to-array":"^2.0.2","type-is":"^1.5.2"},"devDependencies":{"basic-auth":"1","bluebird":"^2.3.6","body-parser":"^1.10.0","concat-stream":"^1.4.7","express":"^4.9.8","istanbul":"0","mocha":"2"},"scripts":{"test":"mocha --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"7792b861274090618c5fc7b9bf84abce706cd83e","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition#readme","_id":"requisition@1.5.1","_shasum":"ebaf8a97bed64f7523ad78a5c7e8ebb4c819a151","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"dist":{"shasum":"ebaf8a97bed64f7523ad78a5c7e8ebb4c819a151","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.5.1.tgz","integrity":"sha512-kzBm8VSmxZAgoDgX0ULgYWBLjFpoKtjezmppBySqb33Mh7F/x2Rc87gpzuAgq1bIShhPTi1mqeHhhuAgGiMwFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqA3qkPIj2gV32yzjRUTbd6HQ0mwjN6KJTnCRF36XLEgIgZVA3qbAelS3RF0pFmKP5UU+TZ2OFZeiUtwZj7sA6UME="}]},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}]},"1.6.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.6.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/thenables/requisition.git"},"dependencies":{"any-promise":"^1.1.0","destroy":"^1.0.3","fs-cp":"^1.2.0","http-errors":"^1.2.7","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^2.1.0","parse-link-header":"^0.4.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","temp-path":"^1.0.0","type-is":"^1.5.2"},"devDependencies":{"basic-auth":"^1.0.0","bluebird":"^3.1.1","body-parser":"^1.10.0","concat-stream":"^1.4.7","express":"^4.9.8","istanbul":"^0.4.2","mocha":"^2.0.0"},"scripts":{"test":"mocha --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"91a64fb5e7df979a3cf439fef42b68ea3874d0df","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition#readme","_id":"requisition@1.6.0","_shasum":"cd37ad3586c7efe971572bce6601ebb041951991","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"dist":{"shasum":"cd37ad3586c7efe971572bce6601ebb041951991","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.6.0.tgz","integrity":"sha512-1oyCSarYlmBRQ1JrrA7sg8SVOxpdW4fUUySxM6WMkQjDzf0OzwAhxLcqrvwagAkCf0VQyeW2mBsemnvU4CPixw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtFW+4QByU2bAZpQaLn+v8Q/UzYZ83a/9Tkr2KSUuUjQIgYblC7os0fbHeJ7bX+Nt2sMB0dG88VpqX+w5/DX9tTPc="}]},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/requisition-1.6.0.tgz_1456697244927_0.6386728528887033"}},"1.7.0":{"name":"requisition","description":"ES7 async/await ready http client","version":"1.7.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/thenables/requisition.git"},"dependencies":{"any-promise":"^1.1.0","cookie":"^0.2.3","destroy":"^1.0.3","fs-cp":"^1.2.0","http-errors":"^1.2.7","media-typer":"^0.3.0","memorizer":"^1.0.0","methods":"^1.1.0","mime-types":"^2.0.2","mz":"^2.1.0","parse-link-header":"^0.4.1","statuses":"^1.2.0","stream-to-array":"^2.0.2","temp-path":"^1.0.0","type-is":"^1.5.2"},"devDependencies":{"basic-auth":"^1.0.0","bluebird":"^3.1.1","body-parser":"^1.10.0","concat-stream":"^1.4.7","cookie-parser":"^1.4.1","express":"^4.9.8","istanbul":"^0.4.2","mocha":"^2.0.0"},"scripts":{"test":"mocha --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"},"keywords":["request","promise","http","https","client"],"main":"lib","files":["lib"],"gitHead":"736493ce385d1d570db43fafcd0e7204a5e70c80","bugs":{"url":"https://github.com/thenables/requisition/issues"},"homepage":"https://github.com/thenables/requisition#readme","_id":"requisition@1.7.0","_shasum":"3f99fb4b45bd7b626218c78a1763051ab593a30d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"dist":{"shasum":"3f99fb4b45bd7b626218c78a1763051ab593a30d","tarball":"https://registry.npmjs.org/requisition/-/requisition-1.7.0.tgz","integrity":"sha512-2hSG/B84eJadCrBCL+D27+aUoMlDU3vmSx37mV8ytLFEPF5iMQALMNI/skfQU208aUQMtNZlbAm0cVU3leP3GQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtaXrWnsqZPtH2j7xk9ax/3iDG38LSVTwGRYFTJYvgVAIgS+/J/Ifu2aghc31n7l5MCMRvDNDkgRz1nrmKz7SJ/H8="}]},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/requisition-1.7.0.tgz_1456787691027_0.8585979503113776"}}},"homepage":"https://github.com/thenables/requisition#readme","keywords":["request","promise","http","https","client"],"repository":{"type":"git","url":"git+https://github.com/thenables/requisition.git"},"author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"bugs":{"url":"https://github.com/thenables/requisition/issues"},"license":"MIT","readmeFilename":"README.md","users":{"moimikey":true,"developit":true,"s4g6":true,"spopov":true,"sermir":true}}