From: isaacs
Date: Fri, 6 Sep 2013 00:13:50 +0000 (-0700)
Subject: npm: upgrade to v1.3.10
X-Git-Tag: v0.10.19~11
X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1be09dfc25816acc87d96f82348d3bb3844d328e;p=platform%2Fupstream%2Fnodejs.git
npm: upgrade to v1.3.10
---
diff --git a/deps/npm/README.md b/deps/npm/README.md
index dc4853f..d01f7a2 100644
--- a/deps/npm/README.md
+++ b/deps/npm/README.md
@@ -179,9 +179,8 @@ you should [read this](https://npmjs.org/doc/developers.html)
## Legal Stuff
-"npm" and "the npm registry" are owned by Isaac Z. Schlueter. All
-rights not explicitly granted in the MIT license are reserved. See the
-included LICENSE file for more details.
+"npm" and "the npm registry" are owned by Isaac Z. Schlueter.
+All rights reserved. See the included LICENSE file for more details.
"Node.js" and "node" are trademarks owned by Joyent, Inc. npm is not
officially part of the Node.js project, and is neither owned by nor
diff --git a/deps/npm/doc/cli/npm-config.md b/deps/npm/doc/cli/npm-config.md
index 119840e..1d978c9 100644
--- a/deps/npm/doc/cli/npm-config.md
+++ b/deps/npm/doc/cli/npm-config.md
@@ -8,6 +8,7 @@ npm-config(1) -- Manage the npm configuration files
npm config delete
npm config list
npm config edit
+ npm c [set|get|delete|list]
npm get
npm set [--global]
diff --git a/deps/npm/doc/cli/npm-dedupe.md b/deps/npm/doc/cli/npm-dedupe.md
index 220329a..849d98f 100644
--- a/deps/npm/doc/cli/npm-dedupe.md
+++ b/deps/npm/doc/cli/npm-dedupe.md
@@ -4,6 +4,7 @@ npm-dedupe(1) -- Reduce duplication
## SYNOPSIS
npm dedupe [package names...]
+ npm ddp [package names...]
## DESCRIPTION
diff --git a/deps/npm/doc/cli/npm-install.md b/deps/npm/doc/cli/npm-install.md
index 5baa78b..07ba2b0 100644
--- a/deps/npm/doc/cli/npm-install.md
+++ b/deps/npm/doc/cli/npm-install.md
@@ -11,6 +11,7 @@ npm-install(1) -- Install a package
npm install @
npm install @
npm install @
+ npm i (with any of the previous argument usage)
## DESCRIPTION
diff --git a/deps/npm/doc/cli/npm-link.md b/deps/npm/doc/cli/npm-link.md
index f7f5ad0..c0fc01e 100644
--- a/deps/npm/doc/cli/npm-link.md
+++ b/deps/npm/doc/cli/npm-link.md
@@ -5,6 +5,7 @@ npm-link(1) -- Symlink a package folder
npm link (in package folder)
npm link
+ npm ln (with any of the previous argument usage)
## DESCRIPTION
diff --git a/deps/npm/doc/cli/npm-rebuild.md b/deps/npm/doc/cli/npm-rebuild.md
index 6985a7b..7287208 100644
--- a/deps/npm/doc/cli/npm-rebuild.md
+++ b/deps/npm/doc/cli/npm-rebuild.md
@@ -4,6 +4,7 @@ npm-rebuild(1) -- Rebuild a package
## SYNOPSIS
npm rebuild [ [ ...]]
+ npm rb [ [ ...]]
* ``:
The package to rebuild
diff --git a/deps/npm/doc/cli/npm-rm.md b/deps/npm/doc/cli/npm-rm.md
index 21cc16e..6691265 100644
--- a/deps/npm/doc/cli/npm-rm.md
+++ b/deps/npm/doc/cli/npm-rm.md
@@ -4,7 +4,9 @@ npm-rm(1) -- Remove a package
## SYNOPSIS
npm rm
+ npm r
npm uninstall
+ npm un
## DESCRIPTION
diff --git a/deps/npm/doc/cli/npm-search.md b/deps/npm/doc/cli/npm-search.md
index ae71959..79807f9 100644
--- a/deps/npm/doc/cli/npm-search.md
+++ b/deps/npm/doc/cli/npm-search.md
@@ -4,6 +4,8 @@ npm-search(1) -- Search for packages
## SYNOPSIS
npm search [search terms ...]
+ npm s [search terms ...]
+ npm se [search terms ...]
## DESCRIPTION
diff --git a/deps/npm/doc/cli/npm-test.md b/deps/npm/doc/cli/npm-test.md
index 159914c..800f3ae 100644
--- a/deps/npm/doc/cli/npm-test.md
+++ b/deps/npm/doc/cli/npm-test.md
@@ -4,6 +4,7 @@ npm-test(1) -- Test a package
## SYNOPSIS
npm test
+ npm tst
## DESCRIPTION
diff --git a/deps/npm/doc/cli/npm-view.md b/deps/npm/doc/cli/npm-view.md
index 5f25afa..1d19fe8 100644
--- a/deps/npm/doc/cli/npm-view.md
+++ b/deps/npm/doc/cli/npm-view.md
@@ -4,6 +4,7 @@ npm-view(1) -- View registry info
## SYNOPSIS
npm view [@] [[.]...]
+ npm v [@] [[.]...]
## DESCRIPTION
diff --git a/deps/npm/doc/files/package.json.md b/deps/npm/doc/files/package.json.md
index d58d07b..5bb966a 100644
--- a/deps/npm/doc/files/package.json.md
+++ b/deps/npm/doc/files/package.json.md
@@ -347,6 +347,7 @@ See semver(7) for more details about specifying version ranges.
* `version1 - version2` Same as `>=version1 <=version2`.
* `range1 || range2` Passes if either range1 or range2 are satisfied.
* `git...` See 'Git URLs as Dependencies' below
+* `user/repo` See 'GitHub URLs' below
For example, these are all valid:
@@ -384,6 +385,20 @@ Git urls can be of the form:
The `commit-ish` can be any tag, sha, or branch which can be supplied as
an argument to `git checkout`. The default is `master`.
+## GitHub URLs
+
+As of version 1.1.65, you can refer to GitHub urls as just "foo": "user/foo-project". For example:
+
+```json
+{
+ "name": "foo",
+ "version": "0.0.0",
+ "dependencies": {
+ "express": "visionmedia/express"
+ }
+}
+```
+
## devDependencies
If someone is planning on downloading and using your module in their
diff --git a/deps/npm/html/doc/README.html b/deps/npm/html/doc/README.html
index 35c732c..345e645 100644
--- a/deps/npm/html/doc/README.html
+++ b/deps/npm/html/doc/README.html
@@ -185,9 +185,8 @@ you should read this
Legal Stuff
-"npm" and "the npm registry" are owned by Isaac Z. Schlueter. All
-rights not explicitly granted in the MIT license are reserved. See the
-included LICENSE file for more details.
+"npm" and "the npm registry" are owned by Isaac Z. Schlueter.
+All rights reserved. See the included LICENSE file for more details.
"Node.js" and "node" are trademarks owned by Joyent, Inc. npm is not
officially part of the Node.js project, and is neither owned by nor
@@ -240,7 +239,7 @@ will no doubt tell you to put the output in a gist or email.
-
+