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

Unified Diff: node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/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/package.json
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/package.json b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..219f2d852e033f5036b8d9f4c0e54db69fa5b0b8
--- /dev/null
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/package.json
@@ -0,0 +1,51 @@
+{
+ "name": "latest-version",
+ "version": "1.0.0",
+ "description": "Get the latest version of a npm package",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/sindresorhus/latest-version"
+ },
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "http://sindresorhus.com"
+ },
+ "bin": {
+ "latest-version": "cli.js"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "files": [
+ "index.js",
+ "cli.js"
+ ],
+ "keywords": [
+ "latest",
+ "version",
+ "npm",
+ "package",
+ "package.json",
+ "current",
+ "module"
+ ],
+ "dependencies": {
+ "package-json": "^1.0.0"
+ },
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "readme": "# latest-version [![Build Status](https://travis-ci.org/sindresorhus/latest-version.svg?branch=master)](https://travis-ci.org/sindresorhus/latest-version)\n\n> Get the latest version of a npm package\n\nFetches the version directly from the registry instead of depending on the massive [npm](https://github.com/npm/npm/blob/8b5e7b6ae5b4cd2d7d62eaf93b1428638b387072/package.json#L37-L85) module like the [latest](https://github.com/bahamas10/node-latest) module does.\n\n\n## Install\n\n```sh\n$ npm install --save latest-version\n```\n\n\n## Usage\n\n```js\nvar latestVersion = require('latest-version');\n\nlatestVersion('pageres', function (err, version) {\n\tconsole.log(version);\n\t//=> 0.2.3\n});\n```\n\n\n## CLI\n\n```sh\n$ npm install --global latest-version\n```\n\n```sh\n$ latest-version --help\n\n Usage\n latest-version <package-name>\n\n Example\n latest-version pageres\n 0.4.1ersion pageres\n 0.2.3\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
+ "readmeFilename": "readme.md",
+ "bugs": {
+ "url": "https://github.com/sindresorhus/latest-version/issues"
+ },
+ "homepage": "https://github.com/sindresorhus/latest-version",
+ "_id": "latest-version@1.0.0",
+ "_from": "latest-version@^1.0.0"
+}

Powered by Google App Engine
This is Rietveld 408576698