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

Unified Diff: node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/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/package.json
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/package.json b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..dc8c7e83196288746dca3ffcc1ea7841de78057e
--- /dev/null
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "package-json",
+ "version": "1.0.1",
+ "description": "Get the package.json of a package from the npm registry",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/sindresorhus/package-json"
+ },
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "http://sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "files": [
+ "index.js"
+ ],
+ "keywords": [
+ "npm",
+ "registry",
+ "package",
+ "pkg",
+ "package.json",
+ "json",
+ "module"
+ ],
+ "dependencies": {
+ "got": "^1.0.1",
+ "registry-url": "^2.0.0"
+ },
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "readme": "# package-json [![Build Status](https://travis-ci.org/sindresorhus/package-json.svg?branch=master)](https://travis-ci.org/sindresorhus/package-json)\n\n> Get the package.json of a package from the npm registry\n\n\n## Install\n\n```sh\n$ npm install --save package-json\n```\n\n\n## Usage\n\n```js\nvar packageJson = require('package-json');\n\npackageJson('pageres', 'latest', function (err, json) {\n\tif (err) {\n\t\tthrow err;\n\t}\n\n\tconsole.log(json);\n\t//=> { name: 'pageres', ... }\n});\n```\n\n\n## API\n\n### packageJson(name, [version], callback)\n\nYou can optionally specify a version (e.g. `0.1.0`) or `latest`. \nIf you don't specify a version you'll get the [main entry](http://registry.npmjs.org/pageres/) containing all versions.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
+ "readmeFilename": "readme.md",
+ "bugs": {
+ "url": "https://github.com/sindresorhus/package-json/issues"
+ },
+ "homepage": "https://github.com/sindresorhus/package-json",
+ "_id": "package-json@1.0.1",
+ "_from": "package-json@^1.0.0"
+}

Powered by Google App Engine
This is Rietveld 408576698