diff -Nru npm-1.1.59/LICENSE npm-1.1.62/LICENSE --- npm-1.1.59/LICENSE 2012-06-19 00:03:01.000000000 +0000 +++ npm-1.1.62/LICENSE 2012-09-13 03:22:54.000000000 +0000 @@ -1,4 +1,4 @@ -Copyright 2009-2012, Isaac Z. Schlueter (the "Original Author") +Copyright (c) Isaac Z. Schlueter (the "Original Author") All rights reserved. MIT +no-false-attribs License @@ -42,23 +42,24 @@ part of the Node.js project, and is neither owned by nor officially affiliated with Joyent, Inc. -Packages published in the npm registry are not part of npm -itself, are the sole property of their respective maintainers, -and are not covered by this license. +Packages published in the npm registry (other than the Software and +its included dependencies) are not part of npm itself, are the sole +property of their respective maintainers, and are not covered by +this license. "npm Logo" created by Mathias Pettersson and Brian Hammond, used with permission. "Gubblebum Blocky" font -Copyright (c) 2007 by Tjarda Koster, http://jelloween.deviantart.com +Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com included for use in the npm website and documentation, used with permission. -This program uses "node-uuid", Copyright (c) 2010 Robert Kieffer, -according to the terms of the MIT license. - -This program uses "request", Copyright (c) 2011 Mikeal Rogers, +This program uses "request", Copyright (c) Mikeal Rogers, according to the terms of the Apache license. -This program uses "mkdirp", Copyright (c) 2010 James Halliday, +This program uses "mkdirp", Copyright (c) James Halliday, according to the terms of the MIT/X11 license. + +This program uses "opener", Copyright (c) Domenic Denicola, +according to the terms of the DWTFPL2 license. diff -Nru npm-1.1.59/Makefile npm-1.1.62/Makefile --- npm-1.1.59/Makefile 2012-08-22 00:35:53.000000000 +0000 +++ npm-1.1.62/Makefile 2012-09-10 16:11:00.000000000 +0000 @@ -120,10 +120,10 @@ html/api/ \ node@npmjs.org:/home/node/npm-www/api rsync -vazu --stats --no-implied-dirs --delete \ - html/webfonts/ \ + html/static/webfonts/ \ node@npmjs.org:/home/node/npm-www/static/webfonts rsync -vazu --stats --no-implied-dirs --delete \ - html/style.css \ + html/static/style.css \ node@npmjs.org:/home/node/npm-www/static/ zip-publish: release diff -Nru npm-1.1.59/debian/changelog npm-1.1.62/debian/changelog --- npm-1.1.59/debian/changelog 2012-09-26 00:24:47.000000000 +0000 +++ npm-1.1.62/debian/changelog 2012-09-26 00:24:47.000000000 +0000 @@ -1,3 +1,9 @@ +npm (1.1.62-1chl1~maverick1) maverick; urgency=low + + * Update to 1.1.62 + + -- Chris Lea Wed, 26 Sep 2012 00:11:24 +0000 + npm (1.1.59-1chl1~maverick1) maverick; urgency=low * Update to 1.1.59 diff -Nru npm-1.1.59/doc/cli/faq.md npm-1.1.62/doc/cli/faq.md --- npm-1.1.59/doc/cli/faq.md 2012-06-19 00:03:01.000000000 +0000 +++ npm-1.1.62/doc/cli/faq.md 2012-09-08 16:53:12.000000000 +0000 @@ -211,20 +211,29 @@ ## I forgot my password, and can't publish. How do I reset it? -Go to . +Go to . ## I get ECONNREFUSED a lot. What's up? Either the registry is down, or node's DNS isn't able to reach out. -To check if the registry is down, open up - +To check if the registry is down, open up in a web browser. This will also tell you if you are just unable to access the internet for some reason. If the registry IS down, let me know by emailing or posting an issue. We'll have someone kick it or something. +## Why no namespaces? + +Please see this discussion: + +tl;dr - It doesn't actually make things better, and can make them worse. + +If you want to namespace your own packages, you may: simply use the +`-` character to separate the names. npm is a mostly anarchic system. +There is not sufficient need to impose namespace rules on everyone. + ## Who does npm? `npm view npm author` diff -Nru npm-1.1.59/doc/cli/index.md npm-1.1.62/doc/cli/index.md --- npm-1.1.59/doc/cli/index.md 2012-08-22 17:50:47.000000000 +0000 +++ npm-1.1.62/doc/cli/index.md 2012-09-25 15:24:52.000000000 +0000 @@ -106,7 +106,7 @@ Symlink a package folder -## npm-list(1) +## npm-ls(1) List installed packages diff -Nru npm-1.1.59/doc/cli/list.md npm-1.1.62/doc/cli/list.md --- npm-1.1.59/doc/cli/list.md 2012-07-10 22:59:01.000000000 +0000 +++ npm-1.1.62/doc/cli/list.md 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -npm-ls(1) -- List installed packages -====================================== - -## SYNOPSIS - - npm list [ ...] - npm ls [ ...] - npm la [ ...] - npm ll [ ...] - -## DESCRIPTION - -This command will print to stdout all the versions of packages that are -installed, as well as their dependencies, in a tree-structure. - -Positional arguments are `name@version-range` identifiers, which will -limit the results to only the paths to the packages named. Note that -nested packages will *also* show the paths to the specified packages. -For example, running `npm ls promzard` in npm's source tree will show: - - npm@@VERSION@ /path/to/npm - └─┬ init-package-json@0.0.4 - └── promzard@0.1.5 - -It will show print out extraneous, missing, and invalid packages. - -When run as `ll` or `la`, it shows extended information by default. - -## CONFIGURATION - -### json - -* Default: false -* Type: Boolean - -Show information in JSON format. - -### long - -* Default: false -* Type: Boolean - -Show extended information. - -### parseable - -* Default: false -* Type: Boolean - -Show parseable output instead of tree view. - -### global - -* Default: false -* Type: Boolean - -List packages in the global install prefix instead of in the current -project. - -## SEE ALSO - -* npm-config(1) -* npm-folders(1) -* npm-install(1) -* npm-link(1) -* npm-prune(1) -* npm-outdated(1) -* npm-update(1) diff -Nru npm-1.1.59/doc/cli/ls.md npm-1.1.62/doc/cli/ls.md --- npm-1.1.59/doc/cli/ls.md 1970-01-01 00:00:00.000000000 +0000 +++ npm-1.1.62/doc/cli/ls.md 2012-08-22 18:22:54.000000000 +0000 @@ -0,0 +1,68 @@ +npm-ls(1) -- List installed packages +====================================== + +## SYNOPSIS + + npm list [ ...] + npm ls [ ...] + npm la [ ...] + npm ll [ ...] + +## DESCRIPTION + +This command will print to stdout all the versions of packages that are +installed, as well as their dependencies, in a tree-structure. + +Positional arguments are `name@version-range` identifiers, which will +limit the results to only the paths to the packages named. Note that +nested packages will *also* show the paths to the specified packages. +For example, running `npm ls promzard` in npm's source tree will show: + + npm@@VERSION@ /path/to/npm + └─┬ init-package-json@0.0.4 + └── promzard@0.1.5 + +It will show print out extraneous, missing, and invalid packages. + +When run as `ll` or `la`, it shows extended information by default. + +## CONFIGURATION + +### json + +* Default: false +* Type: Boolean + +Show information in JSON format. + +### long + +* Default: false +* Type: Boolean + +Show extended information. + +### parseable + +* Default: false +* Type: Boolean + +Show parseable output instead of tree view. + +### global + +* Default: false +* Type: Boolean + +List packages in the global install prefix instead of in the current +project. + +## SEE ALSO + +* npm-config(1) +* npm-folders(1) +* npm-install(1) +* npm-link(1) +* npm-prune(1) +* npm-outdated(1) +* npm-update(1) diff -Nru npm-1.1.59/html/api/bin.html npm-1.1.62/html/api/bin.html --- npm-1.1.59/html/api/bin.html 2012-08-22 17:50:56.000000000 +0000 +++ npm-1.1.62/html/api/bin.html 2012-09-25 15:25:01.000000000 +0000 @@ -19,7 +19,7 @@

This function should not be used programmatically. Instead, just refer to the npm.bin member.

- + + diff -Nru npm-1.1.59/html/doc/npm.html npm-1.1.62/html/doc/npm.html --- npm-1.1.59/html/doc/npm.html 2012-08-22 17:51:13.000000000 +0000 +++ npm-1.1.62/html/doc/npm.html 2012-09-25 15:25:17.000000000 +0000 @@ -14,7 +14,7 @@

VERSION

-

1.1.59

+

1.1.62

DESCRIPTION

@@ -135,7 +135,7 @@ - +