Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/got/package.json

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/got/package.json
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/got/package.json b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/got/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..a73c088f7a32760ecadb6c2a742fb20c01999fa5
--- /dev/null
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/got/package.json
@@ -0,0 +1,50 @@
+{
+ "name": "got",
+ "version": "1.2.2",
+ "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": "^1.0.0"
+ },
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "readme": "# got [![Build Status](https://travis-ci.org/sindresorhus/got.svg?branch=master)](https://travis-ci.org/sindresorhus/got)\n\n> Simplified HTTP/HTTPS requests\n\nA nicer interface to the built-in [`http`](http://nodejs.org/api/http.html) module.\n\nIt also supports following redirects and automagically handling gzip/deflate.\n\nUse [request](https://github.com/mikeal/request) if you need more.\n\n\n## Install\n\n```sh\n$ npm install --save got\n```\n\n\n## Usage\n\n```js\nvar got = require('got');\n\n// Callback mode.\ngot('http://todomvc.com', function (err, data, res) {\n\tconsole.log(data);\n\t//=> <!doctype html> ...\n});\n\n// Stream mode.\ngot('http://todomvc.com').pipe(fs.createWriteStream('index.html'));\n```\n\n### API\n\nIt's a `GET` request by default, but can be changed in `options`.\n\n#### got(url, [options], [callback])\n\n##### url\n\n*Required* \nType: `string`\n\nThe url to request.\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##### options.encoding\n\nType: `string`, `null` \nDefault: `'utf8'`\n\nEncoding to be used on `setEncoding` of the response data. If null, the body is returned as a Buffer.\n\n##### callback(err, data, response)\n\n###### data\n\nThe data you requested.\n\n###### response\n\nThe [response object](http://nodejs.org/api/http.html#http_http_incomingmessage).\n\n\n## Related\n\nSee [sent](https://github.com/floatdrop/sent) if you need to upload something.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
+ "readmeFilename": "readme.md",
+ "bugs": {
+ "url": "https://github.com/sindresorhus/got/issues"
+ },
+ "homepage": "https://github.com/sindresorhus/got",
+ "_id": "got@1.2.2",
+ "_from": "got@^1.0.1"
+}

Powered by Google App Engine
This is Rietveld 408576698