be gone, you belong in lang/ now.

This commit is contained in:
jasper 2012-05-23 15:13:41 +00:00
parent 1dd4aa573a
commit 62354bf420
16 changed files with 0 additions and 1314 deletions

View File

@ -1,72 +0,0 @@
# $OpenBSD: Makefile,v 1.38 2012/05/15 17:37:34 jasper Exp $
# XXX:
# - Needs __ARM_NR_cacheflush (or the like) to work on arm-based ports.
# - Needs bundled libcares as arpa/nameser.h does not include ns_t_a.
ONLY_FOR_ARCHS= amd64 i386
COMMENT= V8 JavaScript for clients and servers
NODE_VERSION= v0.6.18
DISTNAME= node-${NODE_VERSION}
PKGNAME= ${DISTNAME:S/v//g}
CATEGORIES= www devel
HOMEPAGE= http://nodejs.org/
MAINTAINER= Aaron Bieber <deftly@gmail.com>
# MIT
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}dist/${NODE_VERSION}/
MODULES= lang/python
VMEM_WARNING= Yes
WANTLIB += c crypto execinfo kvm m pthread ssl stdc++ util z
LIB_DEPENDS= devel/libexecinfo
USE_GMAKE= Yes
# node-gyp uses it at runtime
RUN_DEPENDS= devel/gmake \
sysutils/flock
MODPY_ADJ_FILES=wscript \
tools/node-waf \
tools/waf-light
REGRESS_TARGET= test
CONFIGURE_STYLE= simple
SUBST_VARS+= CFLAGS
SUBST_VARS+= PREFIX
SUBST_VARS+= DISTFILES
MAKE_ENV+= CXX=c++ CCFLAGS+="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
NO_CCACHE= Yes
pre-configure:
@# Bad practice, but prevents a whole stack of patches.
ln -sf ${LOCALBASE}/bin/python${MODPY_VERSION} ${WRKDIR}/bin/python
${SUBST_CMD} ${WRKDIST}/lib/module.js \
${WRKDIST}/deps/npm/node_modules/node-gyp/lib/configure.js \
${WRKDIST}/deps/npm/node_modules/node-gyp/lib/install.js
post-install:
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
${PREFIX}/lib/node/wafadmin
${INSTALL_DATA} ${FULLDISTDIR}/${DISTFILES} \
${PREFIX}/lib/node/${DISTFILES}
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (node-v0.6.18.tar.gz) = Sj0xI8zHubIcGZD+B049FA==
RMD160 (node-v0.6.18.tar.gz) = aX+uUL6WE4yrlMI0XpCHCq+9JjA=
SHA1 (node-v0.6.18.tar.gz) = zLe1xV40A7P/x31G96Iwec5l5x4=
SHA256 (node-v0.6.18.tar.gz) = bPQxHsvBcA6I9DgqMbOnAXwVcs1kH9BuZT/BaSws//8=
SIZE (node-v0.6.18.tar.gz) = 10261465

View File

@ -1,94 +0,0 @@
# $OpenBSD: node.port.mk,v 1.7 2012/05/10 13:17:30 jasper Exp $
# node module
CATEGORIES += www/node
BUILD_DEPENDS += www/node>=0.6.17p2
RUN_DEPENDS += www/node>=0.6.17p2
.if ${CONFIGURE_STYLE:L:Mnpm}
. if ${CONFIGURE_STYLE:L:Mext}
# Node C++ extensions are specific to an arch and are loaded as
# shared libraries, so set SHARED_ONLY and make sure PKG_ARCH=* is
# not set.
. if defined(PKG_ARCH) && ${PKG_ARCH} == *
ERRORS += "Fatal: Should not have PKG_ARCH=* when compiling extensions"
. endif
SHARED_ONLY = Yes
# All node extensions appear to link against these two libraries
WANTLIB += m stdc++
. else
# Node libraries that don't contain C++ extensions should run on
# any arch.
PKG_ARCH ?= *
. endif
# The npm package repository separates packages in different directories,
# so to eliminate duplication, you need to set the NPM_NAME and NPM_VERSION
# variables so it can use the correct DISTNAME and MASTER_SITES.
# The NPM_NAME is required anyway during the install tasks, so it may as
# well be used here.
DISTNAME ?= ${NPM_NAME}-${NPM_VERSION}
MASTER_SITES ?= ${MASTER_SITE_NPM}${NPM_NAME}/-/
EXTRACT_SUFX ?= .tgz
PKGNAME ?= node-${DISTNAME:S/^node-//}
MODNODE_BIN_NPM = ${LOCALBASE}/bin/npm
NPM_INSTALL_FILE = ${WRKDIR}/${DISTNAME}.tgz
NPM_TAR_DIR = package
WRKDIST = ${WRKDIR}/${NPM_TAR_DIR}
.if ${CONFIGURE_STYLE:L:Mexpresso}
REGRESS_DEPENDS += devel/node-expresso
MODNODE_REGRESS_TARGET = \
cd ${WRKDIST} && ${LOCALBASE}/bin/expresso;
.if !defined(do-regress)
do-regress:
${MODNODE_REGRESS_TARGET}
.endif
.else
REGRESS_TARGET ?= test
.endif
# List of npm package names to depend on. Only necessary
# if the current port depends on other node ports.
MODNODE_DEPENDS ?=
# Link all dependencies first so that npm will install without complaining.
# Then rebuild the distfile, since it may contain local patches.
# Then use npm install to install the package to a local node_modules dir.
MODNODE_BUILD_TARGET = \
cd ${WRKDIST} && find . -type f -name '*.orig' -print0 | \
xargs -r0 rm; \
for dep in ${MODNODE_DEPENDS}; do \
cd ${WRKDIR} && ${MODNODE_BIN_NPM} link $$dep; \
done; \
cd ${WRKDIR} && tar -zcf ${NPM_INSTALL_FILE} ${NPM_TAR_DIR}; \
cd ${WRKDIR} && HOME=${WRKDIR} ${MODNODE_BIN_NPM} install \
${NPM_INSTALL_FILE}
# Move just this package from the local node_modules dir to the global
# node_modules dir. If there are any binaries in the package, create
# symlinks in the default PATH that point to them.
MODNODE_INSTALL_TARGET = \
mkdir ${PREFIX}/lib/node_modules; \
mv ${WRKDIR}/node_modules/${NPM_NAME} ${PREFIX}/lib/node_modules; \
chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/node_modules; \
if [ -d ${PREFIX}/lib/node_modules/${NPM_NAME}/bin ]; then \
cd ${PREFIX}/lib/node_modules/${NPM_NAME}/bin && \
for bin in *; do \
ln -s ${TRUEPREFIX}/lib/node_modules/${NPM_NAME}/bin/$$bin \
${PREFIX}/bin/$${bin%.js}; \
done; \
fi;
. if !target(do-build)
do-build:
${MODNODE_BUILD_TARGET}
. endif
. if !target(do-install)
do-install:
${MODNODE_INSTALL_TARGET}
. endif
.endif

View File

@ -1,29 +0,0 @@
$OpenBSD: patch-deps_npm_node_modules_node-gyp_lib_build_js,v 1.4 2012/05/10 18:29:52 sthen Exp $
--- deps/npm/node_modules/node-gyp/lib/build.js.orig Fri May 4 21:12:52 2012
+++ deps/npm/node_modules/node-gyp/lib/build.js Thu May 10 19:05:18 2012
@@ -11,13 +11,15 @@ var fs = require('graceful-fs')
, which = require('which')
, mkdirp = require('./util/mkdirp')
, win = process.platform == 'win32'
+ , openbsd = process.platform == 'openbsd'
exports.usage = 'Invokes `' + (win ? 'msbuild' : 'make') + '` and builds the module'
function build (gyp, argv, callback) {
gyp.verbose('build args', argv)
- var command = win ? 'msbuild' : 'make'
+ var builder = openbsd ? 'gmake' : 'make'
+ var command = win ? 'msbuild' : builder
, buildDir = path.resolve('build')
, configPath = path.resolve(buildDir, 'config.gypi')
, buildType
@@ -181,6 +183,8 @@ function build (gyp, argv, callback) {
argv.push('/p:Configuration=' + buildType + ';Platform=' + p)
} else {
argv.push('BUILDTYPE=' + buildType)
+ // Don't hide compiler commands
+ argv.push('V=1')
// Invoke the Makefile in the 'build' dir.
argv.push('-C')
argv.push('build')

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-deps_npm_node_modules_node-gyp_lib_configure_js,v 1.1 2012/05/07 20:11:47 jasper Exp $
Make sure node-gyp is able to find a python executable.
--- deps/npm/node_modules/node-gyp/lib/configure.js.orig Mon May 7 20:10:42 2012
+++ deps/npm/node_modules/node-gyp/lib/configure.js Mon May 7 20:11:02 2012
@@ -17,7 +17,7 @@ exports.usage = 'Generates ' + (win ? 'MSVC project fi
function configure (gyp, argv, callback) {
- var python = process.env.PYTHON || gyp.opts.python || 'python'
+ var python = process.env.PYTHON || gyp.opts.python || 'python${MODPY_VERSION}'
, buildDir = path.resolve('build')
, configPath
, versionStr

View File

@ -1,31 +0,0 @@
$OpenBSD: patch-deps_npm_node_modules_node-gyp_lib_install_js,v 1.2 2012/05/10 18:29:52 sthen Exp $
Allow building of sub-packages (ie. node-sqlite3) with USE_SYSTRACE
set, also prevents downloading of the node distfile again.
--- deps/npm/node_modules/node-gyp/lib/install.js.orig Thu May 10 07:09:14 2012
+++ deps/npm/node_modules/node-gyp/lib/install.js Thu May 10 07:15:41 2012
@@ -166,10 +166,19 @@ function install (gyp, argv, callback) {
extracter.on('error', cb)
extracter.on('end', afterTarball)
- // download the tarball, gunzip and extract!
- var req = download(tarballUrl, downloadError)
- .pipe(gunzip)
- .pipe(extracter)
+ // OpenBSD fix
+ var filePath = '${PREFIX}/lib/node/${DISTFILES}';
+ fs.stat(filePath, function(err, stat) {
+ if (err) {
+ throw err;
+ } else {
+ // use packaged tarball
+ fs.createReadStream(filePath)
+ .pipe(gunzip)
+ .pipe(extracter)
+ }
+ });
+ // OpenBSD fix
// something went wrong downloading the tarball?
function downloadError (err, res) {

View File

@ -1,26 +0,0 @@
$OpenBSD: patch-deps_v8_SConstruct,v 1.6 2011/12/07 12:18:01 sthen Exp $
- Remove extra zoom-zoom!
- Don't link with -lpthread but use -pthread instead.
--- deps/v8/SConstruct.orig Wed Nov 16 13:43:22 2011
+++ deps/v8/SConstruct Wed Nov 16 13:44:20 2011
@@ -94,7 +94,7 @@ LIBRARY_FLAGS = {
'CPPDEFINES': ['ENABLE_DISASSEMBLER', 'DEBUG'],
},
'mode:release': {
- 'CCFLAGS': ['-O3', '-fomit-frame-pointer', '-fdata-sections',
+ 'CCFLAGS': ['-fomit-frame-pointer', '-fdata-sections',
'-ffunction-sections'],
},
'os:linux': {
@@ -358,7 +358,8 @@ MKSNAPSHOT_EXTRA_FLAGS = {
'LINKFLAGS': ['-mt']
},
'os:openbsd': {
- 'LIBS': ['execinfo', 'pthread']
+ 'LIBS': ['execinfo'],
+ 'LINKFLAGS': ['-pthread'],
},
'os:win32': {
'LIBS': ['winmm', 'ws2_32'],

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-deps_v8_src_atomicops_h,v 1.1 2011/12/07 12:18:01 sthen Exp $
--- deps/v8/src/atomicops.h.orig Tue Nov 8 18:37:38 2011
+++ deps/v8/src/atomicops.h Tue Nov 8 18:38:53 2011
@@ -69,7 +69,11 @@ typedef intptr_t Atomic64;
// Use AtomicWord for a machine-sized pointer. It will use the Atomic32 or
// Atomic64 routines below, depending on your architecture.
+#if defined(__OpenBSD__) && defined(__i386__)
+typedef Atomic32 AtomicWord;
+#else
typedef intptr_t AtomicWord;
+#endif
// Atomically execute:
// result = *ptr;

View File

@ -1,33 +0,0 @@
$OpenBSD: patch-deps_v8_src_heap_cc,v 1.5 2012/05/07 18:11:29 jasper Exp $
--- deps/v8/src/heap.cc.orig Fri May 4 22:12:52 2012
+++ deps/v8/src/heap.cc Mon May 7 20:09:43 2012
@@ -5032,6 +5032,29 @@ bool Heap::ConfigureHeap(int max_semispace_size,
initial_semispace_size_ = Min(initial_semispace_size_, max_semispace_size_);
external_allocation_limit_ = 10 * max_semispace_size_;
+ intptr_t max_virtual = OS::MaxVirtualMemory();
+
+ if (max_virtual > 0) {
+ intptr_t half = max_virtual >> 1;
+ intptr_t quarter = max_virtual >> 2;
+ // If we have limits on the amount of virtual memory we can use then we may
+ // be forced to lower the allocation limits. We reserve one quarter of the
+ // memory for young space and off-heap data. The rest is distributed as
+ // described below.
+ if (code_range_size_ > 0) {
+ // Reserve a quarter of the memory for the code range. The old space
+ // heap gets the remaining half. There is some unavoidable double
+ // counting going on here since the heap size is measured in committed
+ // virtual memory and the code range is only reserved virtual memory.
+ code_range_size_ = Min(code_range_size_, quarter);
+ max_old_generation_size_ = Min(max_old_generation_size_, half);
+ } else {
+ // Reserve three quarters of the memory for the old space heap including
+ // the executable code.
+ max_old_generation_size_ = Min(max_old_generation_size_, half + quarter);
+ }
+ }
+
// The old generation is paged.
max_old_generation_size_ = RoundUp(max_old_generation_size_, Page::kPageSize);

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-deps_v8_src_platform_h,v 1.2 2011/12/07 12:18:01 sthen Exp $
--- deps/v8/src/platform.h.orig Tue Nov 8 18:35:23 2011
+++ deps/v8/src/platform.h Tue Nov 8 18:39:05 2011
@@ -88,7 +88,11 @@ namespace internal {
// Use AtomicWord for a machine-sized pointer. It is assumed that
// reads and writes of naturally aligned values of this type are atomic.
+#if defined(__OpenBSD__) && defined(__i386__)
+typedef Atomic32 AtomicWord;
+#else
typedef intptr_t AtomicWord;
+#endif
class Semaphore;
class Mutex;

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-lib_module_js,v 1.3 2012/05/15 17:37:34 jasper Exp $
--- lib/module.js.orig Tue May 15 02:30:00 2012
+++ lib/module.js Tue May 15 19:17:28 2012
@@ -487,6 +487,8 @@ Module.runMain = function() {
Module._initPaths = function() {
var paths = [path.resolve(process.execPath, '..', '..', 'lib', 'node')];
+ paths.unshift(path.resolve('${TRUEPREFIX}', 'lib', 'node_modules'));
+
if (process.env['HOME']) {
paths.unshift(path.resolve(process.env['HOME'], '.node_libraries'));
paths.unshift(path.resolve(process.env['HOME'], '.node_modules'));

View File

@ -1,24 +0,0 @@
$OpenBSD: patch-src_platform_openbsd_cc,v 1.1 2012/01/10 14:35:56 sthen Exp $
--- src/platform_openbsd.cc.orig Tue Jan 10 13:45:30 2012
+++ src/platform_openbsd.cc Tue Jan 10 13:57:13 2012
@@ -68,9 +68,9 @@ const char* Platform::GetProcessTitle(int *len) {
int Platform::GetMemory(size_t *rss) {
kvm_t *kd = NULL;
- struct kinfo_proc2 *kinfo = NULL;
+ struct kinfo_proc *kinfo = NULL;
pid_t pid;
- int nprocs, max_size = sizeof(struct kinfo_proc2);
+ int nprocs, max_size = sizeof(struct kinfo_proc);
size_t page_size = getpagesize();
pid = getpid();
@@ -78,7 +78,7 @@ int Platform::GetMemory(size_t *rss) {
kd = kvm_open(NULL, _PATH_MEM, NULL, O_RDONLY, "kvm_open");
if (kd == NULL) goto error;
- kinfo = kvm_getproc2(kd, KERN_PROC_PID, pid, max_size, &nprocs);
+ kinfo = kvm_getprocs(kd, KERN_PROC_PID, pid, max_size, &nprocs);
if (kinfo == NULL) goto error;
*rss = kinfo->p_vm_rssize * page_size;

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-tools_wafadmin_Tools_python_py,v 1.2 2011/12/07 12:18:01 sthen Exp $
--- tools/wafadmin/Tools/python.py.orig Wed Nov 16 13:53:19 2011
+++ tools/wafadmin/Tools/python.py Wed Nov 16 13:54:02 2011
@@ -374,7 +374,7 @@ def detect(conf):
if not conf.env.PYTHON:
conf.env.PYTHON = sys.executable
- python = conf.find_program('python', var='PYTHON')
+ python = conf.find_program('${MODPY_BIN}', var='PYTHON')
if not python:
conf.fatal('Could not find the path of the python executable')

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-wscript,v 1.12 2012/05/15 17:37:34 jasper Exp $
--- wscript.orig Tue May 15 02:30:00 2012
+++ wscript Tue May 15 19:17:28 2012
@@ -537,7 +537,7 @@ def configure(conf):
# Configure default variant
conf.setenv('Release')
- default_compile_flags = ['-g', '-O3']
+ default_compile_flags = ['-g']
conf.env.append_value('CCFLAGS', default_compile_flags)
conf.env.append_value('CXXFLAGS', default_compile_flags)
conf.write_config_header("config.h")

View File

@ -1,2 +0,0 @@
Node.js is an evented I/O framework for the V8 JavaScript engine. It is
intended for writing scalable network programs such as web servers.

View File

@ -1,917 +0,0 @@
@comment $OpenBSD: PLIST,v 1.14 2012/05/10 18:29:52 sthen Exp $
@bin bin/node
bin/node-waf
bin/npm
include/node/
include/node/ares.h
include/node/ares_version.h
include/node/c-ares/
include/node/c-ares/ares.h
include/node/c-ares/ares_version.h
include/node/config.h
include/node/ev/
include/node/node.h
include/node/node_buffer.h
include/node/node_config.h
include/node/node_object_wrap.h
include/node/node_version.h
include/node/uv-private/
include/node/uv-private/eio.h
include/node/uv-private/ev.h
include/node/uv-private/ngx-queue.h
include/node/uv-private/tree.h
include/node/uv-private/uv-unix.h
include/node/uv-private/uv-win.h
include/node/uv.h
include/node/v8-debug.h
include/node/v8-preparser.h
include/node/v8-profiler.h
include/node/v8-testing.h
include/node/v8.h
include/node/v8stdint.h
lib/node/
lib/node/${DISTFILES}
lib/node/wafadmin/
lib/node/wafadmin/Build.py
lib/node/wafadmin/Build.pyc
lib/node/wafadmin/Configure.py
lib/node/wafadmin/Configure.pyc
lib/node/wafadmin/Constants.py
lib/node/wafadmin/Constants.pyc
lib/node/wafadmin/Environment.py
lib/node/wafadmin/Environment.pyc
lib/node/wafadmin/Logs.py
lib/node/wafadmin/Logs.pyc
lib/node/wafadmin/Node.py
lib/node/wafadmin/Node.pyc
lib/node/wafadmin/Options.py
lib/node/wafadmin/Options.pyc
lib/node/wafadmin/Runner.py
lib/node/wafadmin/Runner.pyc
lib/node/wafadmin/Scripting.py
lib/node/wafadmin/Scripting.pyc
lib/node/wafadmin/Task.py
lib/node/wafadmin/Task.pyc
lib/node/wafadmin/TaskGen.py
lib/node/wafadmin/TaskGen.pyc
lib/node/wafadmin/Tools/
lib/node/wafadmin/Tools/__init__.py
lib/node/wafadmin/Tools/__init__.pyc
lib/node/wafadmin/Tools/ar.py
lib/node/wafadmin/Tools/ar.pyc
lib/node/wafadmin/Tools/cc.py
lib/node/wafadmin/Tools/cc.pyc
lib/node/wafadmin/Tools/ccroot.py
lib/node/wafadmin/Tools/ccroot.pyc
lib/node/wafadmin/Tools/compiler_cc.py
lib/node/wafadmin/Tools/compiler_cc.pyc
lib/node/wafadmin/Tools/compiler_cxx.py
lib/node/wafadmin/Tools/compiler_cxx.pyc
lib/node/wafadmin/Tools/compiler_d.py
lib/node/wafadmin/Tools/compiler_d.pyc
lib/node/wafadmin/Tools/config_c.py
lib/node/wafadmin/Tools/config_c.pyc
lib/node/wafadmin/Tools/cxx.py
lib/node/wafadmin/Tools/cxx.pyc
lib/node/wafadmin/Tools/d.py
lib/node/wafadmin/Tools/d.pyc
lib/node/wafadmin/Tools/dmd.py
lib/node/wafadmin/Tools/dmd.pyc
lib/node/wafadmin/Tools/gas.py
lib/node/wafadmin/Tools/gas.pyc
lib/node/wafadmin/Tools/gcc.py
lib/node/wafadmin/Tools/gcc.pyc
lib/node/wafadmin/Tools/gdc.py
lib/node/wafadmin/Tools/gdc.pyc
lib/node/wafadmin/Tools/gnu_dirs.py
lib/node/wafadmin/Tools/gnu_dirs.pyc
lib/node/wafadmin/Tools/gob2.py
lib/node/wafadmin/Tools/gob2.pyc
lib/node/wafadmin/Tools/gxx.py
lib/node/wafadmin/Tools/gxx.pyc
lib/node/wafadmin/Tools/icc.py
lib/node/wafadmin/Tools/icc.pyc
lib/node/wafadmin/Tools/icpc.py
lib/node/wafadmin/Tools/icpc.pyc
lib/node/wafadmin/Tools/intltool.py
lib/node/wafadmin/Tools/intltool.pyc
lib/node/wafadmin/Tools/libtool.py
lib/node/wafadmin/Tools/libtool.pyc
lib/node/wafadmin/Tools/misc.py
lib/node/wafadmin/Tools/misc.pyc
lib/node/wafadmin/Tools/nasm.py
lib/node/wafadmin/Tools/nasm.pyc
lib/node/wafadmin/Tools/node_addon.py
lib/node/wafadmin/Tools/node_addon.pyc
lib/node/wafadmin/Tools/osx.py
lib/node/wafadmin/Tools/osx.pyc
lib/node/wafadmin/Tools/preproc.py
lib/node/wafadmin/Tools/preproc.pyc
lib/node/wafadmin/Tools/python.py
lib/node/wafadmin/Tools/python.pyc
lib/node/wafadmin/Tools/suncc.py
lib/node/wafadmin/Tools/suncc.pyc
lib/node/wafadmin/Tools/suncxx.py
lib/node/wafadmin/Tools/suncxx.pyc
lib/node/wafadmin/Tools/unittestw.py
lib/node/wafadmin/Tools/unittestw.pyc
lib/node/wafadmin/Tools/winres.py
lib/node/wafadmin/Tools/winres.pyc
lib/node/wafadmin/Tools/xlc.py
lib/node/wafadmin/Tools/xlc.pyc
lib/node/wafadmin/Tools/xlcxx.py
lib/node/wafadmin/Tools/xlcxx.pyc
lib/node/wafadmin/Utils.py
lib/node/wafadmin/Utils.pyc
lib/node/wafadmin/__init__.py
lib/node/wafadmin/__init__.pyc
lib/node/wafadmin/ansiterm.py
lib/node/wafadmin/ansiterm.pyc
lib/node/wafadmin/pproc.py
lib/node/wafadmin/pproc.pyc
lib/node/wafadmin/py3kfixes.py
lib/node/wafadmin/py3kfixes.pyc
lib/node_modules/
lib/node_modules/npm/
lib/node_modules/npm/.npmignore
lib/node_modules/npm/.travis.yml
lib/node_modules/npm/AUTHORS
lib/node_modules/npm/LICENSE
lib/node_modules/npm/Makefile
lib/node_modules/npm/README.md
lib/node_modules/npm/bin/
lib/node_modules/npm/bin/node-gyp-bin/
lib/node_modules/npm/bin/node-gyp-bin/node-gyp
lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd
lib/node_modules/npm/bin/npm
lib/node_modules/npm/bin/npm-cli.js
lib/node_modules/npm/bin/npm.cmd
lib/node_modules/npm/bin/read-package-json.js
lib/node_modules/npm/cli.js
lib/node_modules/npm/configure
lib/node_modules/npm/doc/
lib/node_modules/npm/doc/api/
lib/node_modules/npm/doc/api/bin.md
lib/node_modules/npm/doc/api/bugs.md
lib/node_modules/npm/doc/api/commands.md
lib/node_modules/npm/doc/api/config.md
lib/node_modules/npm/doc/api/deprecate.md
lib/node_modules/npm/doc/api/docs.md
lib/node_modules/npm/doc/api/edit.md
lib/node_modules/npm/doc/api/explore.md
lib/node_modules/npm/doc/api/help-search.md
lib/node_modules/npm/doc/api/init.md
lib/node_modules/npm/doc/api/install.md
lib/node_modules/npm/doc/api/link.md
lib/node_modules/npm/doc/api/load.md
lib/node_modules/npm/doc/api/ls.md
lib/node_modules/npm/doc/api/npm.md
lib/node_modules/npm/doc/api/outdated.md
lib/node_modules/npm/doc/api/owner.md
lib/node_modules/npm/doc/api/pack.md
lib/node_modules/npm/doc/api/prefix.md
lib/node_modules/npm/doc/api/prune.md
lib/node_modules/npm/doc/api/publish.md
lib/node_modules/npm/doc/api/rebuild.md
lib/node_modules/npm/doc/api/restart.md
lib/node_modules/npm/doc/api/root.md
lib/node_modules/npm/doc/api/run-script.md
lib/node_modules/npm/doc/api/search.md
lib/node_modules/npm/doc/api/shrinkwrap.md
lib/node_modules/npm/doc/api/start.md
lib/node_modules/npm/doc/api/stop.md
lib/node_modules/npm/doc/api/submodule.md
lib/node_modules/npm/doc/api/tag.md
lib/node_modules/npm/doc/api/test.md
lib/node_modules/npm/doc/api/uninstall.md
lib/node_modules/npm/doc/api/unpublish.md
lib/node_modules/npm/doc/api/update.md
lib/node_modules/npm/doc/api/version.md
lib/node_modules/npm/doc/api/view.md
lib/node_modules/npm/doc/api/whoami.md
lib/node_modules/npm/doc/cli/
lib/node_modules/npm/doc/cli/adduser.md
lib/node_modules/npm/doc/cli/bin.md
lib/node_modules/npm/doc/cli/bugs.md
lib/node_modules/npm/doc/cli/build.md
lib/node_modules/npm/doc/cli/bundle.md
lib/node_modules/npm/doc/cli/cache.md
lib/node_modules/npm/doc/cli/changelog.md
lib/node_modules/npm/doc/cli/coding-style.md
lib/node_modules/npm/doc/cli/completion.md
lib/node_modules/npm/doc/cli/config.md
lib/node_modules/npm/doc/cli/deprecate.md
lib/node_modules/npm/doc/cli/developers.md
lib/node_modules/npm/doc/cli/disputes.md
lib/node_modules/npm/doc/cli/docs.md
lib/node_modules/npm/doc/cli/edit.md
lib/node_modules/npm/doc/cli/explore.md
lib/node_modules/npm/doc/cli/faq.md
lib/node_modules/npm/doc/cli/folders.md
lib/node_modules/npm/doc/cli/help-search.md
lib/node_modules/npm/doc/cli/help.md
lib/node_modules/npm/doc/cli/index.md
lib/node_modules/npm/doc/cli/init.md
lib/node_modules/npm/doc/cli/install.md
lib/node_modules/npm/doc/cli/json.md
lib/node_modules/npm/doc/cli/link.md
lib/node_modules/npm/doc/cli/list.md
lib/node_modules/npm/doc/cli/npm.md
lib/node_modules/npm/doc/cli/outdated.md
lib/node_modules/npm/doc/cli/owner.md
lib/node_modules/npm/doc/cli/pack.md
lib/node_modules/npm/doc/cli/prefix.md
lib/node_modules/npm/doc/cli/prune.md
lib/node_modules/npm/doc/cli/publish.md
lib/node_modules/npm/doc/cli/rebuild.md
lib/node_modules/npm/doc/cli/registry.md
lib/node_modules/npm/doc/cli/removing-npm.md
lib/node_modules/npm/doc/cli/restart.md
lib/node_modules/npm/doc/cli/root.md
lib/node_modules/npm/doc/cli/run-script.md
lib/node_modules/npm/doc/cli/scripts.md
lib/node_modules/npm/doc/cli/search.md
lib/node_modules/npm/doc/cli/semver.md
lib/node_modules/npm/doc/cli/shrinkwrap.md
lib/node_modules/npm/doc/cli/star.md
lib/node_modules/npm/doc/cli/start.md
lib/node_modules/npm/doc/cli/stop.md
lib/node_modules/npm/doc/cli/submodule.md
lib/node_modules/npm/doc/cli/tag.md
lib/node_modules/npm/doc/cli/test.md
lib/node_modules/npm/doc/cli/uninstall.md
lib/node_modules/npm/doc/cli/unpublish.md
lib/node_modules/npm/doc/cli/update.md
lib/node_modules/npm/doc/cli/version.md
lib/node_modules/npm/doc/cli/view.md
lib/node_modules/npm/doc/cli/whoami.md
lib/node_modules/npm/html/
lib/node_modules/npm/html/api/
lib/node_modules/npm/html/api/GubbleBum-Blocky.ttf
lib/node_modules/npm/html/api/author.html
lib/node_modules/npm/html/api/bin.html
lib/node_modules/npm/html/api/bugs.html
lib/node_modules/npm/html/api/commands.html
lib/node_modules/npm/html/api/config.html
lib/node_modules/npm/html/api/deprecate.html
lib/node_modules/npm/html/api/docs.html
lib/node_modules/npm/html/api/edit.html
lib/node_modules/npm/html/api/explore.html
lib/node_modules/npm/html/api/find.html
lib/node_modules/npm/html/api/get.html
lib/node_modules/npm/html/api/help-search.html
lib/node_modules/npm/html/api/home.html
lib/node_modules/npm/html/api/init.html
lib/node_modules/npm/html/api/install.html
lib/node_modules/npm/html/api/link.html
lib/node_modules/npm/html/api/list.html
lib/node_modules/npm/html/api/ln.html
lib/node_modules/npm/html/api/load.html
lib/node_modules/npm/html/api/ls.html
lib/node_modules/npm/html/api/npm.html
lib/node_modules/npm/html/api/outdated.html
lib/node_modules/npm/html/api/owner.html
lib/node_modules/npm/html/api/pack.html
lib/node_modules/npm/html/api/prefix.html
lib/node_modules/npm/html/api/prune.html
lib/node_modules/npm/html/api/publish.html
lib/node_modules/npm/html/api/rebuild.html
lib/node_modules/npm/html/api/restart.html
lib/node_modules/npm/html/api/rm.html
lib/node_modules/npm/html/api/root.html
lib/node_modules/npm/html/api/run-script.html
lib/node_modules/npm/html/api/search.html
lib/node_modules/npm/html/api/set.html
lib/node_modules/npm/html/api/shrinkwrap.html
lib/node_modules/npm/html/api/start.html
lib/node_modules/npm/html/api/stop.html
lib/node_modules/npm/html/api/style.css
lib/node_modules/npm/html/api/submodule.html
lib/node_modules/npm/html/api/tag.html
lib/node_modules/npm/html/api/test.html
lib/node_modules/npm/html/api/uninstall.html
lib/node_modules/npm/html/api/unpublish.html
lib/node_modules/npm/html/api/update.html
lib/node_modules/npm/html/api/version.html
lib/node_modules/npm/html/api/view.html
lib/node_modules/npm/html/api/whoami.html
lib/node_modules/npm/html/doc/
lib/node_modules/npm/html/doc/GubbleBum-Blocky.ttf
lib/node_modules/npm/html/doc/README.html
lib/node_modules/npm/html/doc/adduser.html
lib/node_modules/npm/html/doc/author.html
lib/node_modules/npm/html/doc/bin.html
lib/node_modules/npm/html/doc/bugs.html
lib/node_modules/npm/html/doc/build.html
lib/node_modules/npm/html/doc/bundle.html
lib/node_modules/npm/html/doc/cache.html
lib/node_modules/npm/html/doc/changelog.html
lib/node_modules/npm/html/doc/coding-style.html
lib/node_modules/npm/html/doc/completion.html
lib/node_modules/npm/html/doc/config.html
lib/node_modules/npm/html/doc/deprecate.html
lib/node_modules/npm/html/doc/developers.html
lib/node_modules/npm/html/doc/disputes.html
lib/node_modules/npm/html/doc/docs.html
lib/node_modules/npm/html/doc/edit.html
lib/node_modules/npm/html/doc/explore.html
lib/node_modules/npm/html/doc/faq.html
lib/node_modules/npm/html/doc/find.html
lib/node_modules/npm/html/doc/folders.html
lib/node_modules/npm/html/doc/get.html
lib/node_modules/npm/html/doc/global.html
lib/node_modules/npm/html/doc/help-search.html
lib/node_modules/npm/html/doc/help.html
lib/node_modules/npm/html/doc/home.html
lib/node_modules/npm/html/doc/index.html
lib/node_modules/npm/html/doc/init.html
lib/node_modules/npm/html/doc/install.html
lib/node_modules/npm/html/doc/json.html
lib/node_modules/npm/html/doc/link.html
lib/node_modules/npm/html/doc/list.html
lib/node_modules/npm/html/doc/ln.html
lib/node_modules/npm/html/doc/ls.html
lib/node_modules/npm/html/doc/npm.html
lib/node_modules/npm/html/doc/outdated.html
lib/node_modules/npm/html/doc/owner.html
lib/node_modules/npm/html/doc/pack.html
lib/node_modules/npm/html/doc/prefix.html
lib/node_modules/npm/html/doc/prune.html
lib/node_modules/npm/html/doc/publish.html
lib/node_modules/npm/html/doc/rebuild.html
lib/node_modules/npm/html/doc/registry.html
lib/node_modules/npm/html/doc/removing-npm.html
lib/node_modules/npm/html/doc/restart.html
lib/node_modules/npm/html/doc/rm.html
lib/node_modules/npm/html/doc/root.html
lib/node_modules/npm/html/doc/run-script.html
lib/node_modules/npm/html/doc/scripts.html
lib/node_modules/npm/html/doc/search.html
lib/node_modules/npm/html/doc/semver.html
lib/node_modules/npm/html/doc/set.html
lib/node_modules/npm/html/doc/shrinkwrap.html
lib/node_modules/npm/html/doc/star.html
lib/node_modules/npm/html/doc/start.html
lib/node_modules/npm/html/doc/stop.html
lib/node_modules/npm/html/doc/style.css
lib/node_modules/npm/html/doc/submodule.html
lib/node_modules/npm/html/doc/tag.html
lib/node_modules/npm/html/doc/test.html
lib/node_modules/npm/html/doc/uninstall.html
lib/node_modules/npm/html/doc/unpublish.html
lib/node_modules/npm/html/doc/update.html
lib/node_modules/npm/html/doc/version.html
lib/node_modules/npm/html/doc/view.html
lib/node_modules/npm/html/doc/whoami.html
lib/node_modules/npm/html/docfoot.html
lib/node_modules/npm/html/dochead.html
lib/node_modules/npm/html/favicon.ico
lib/node_modules/npm/html/index.html
lib/node_modules/npm/lib/
lib/node_modules/npm/lib/adduser.js
lib/node_modules/npm/lib/bin.js
lib/node_modules/npm/lib/bugs.js
lib/node_modules/npm/lib/build.js
lib/node_modules/npm/lib/cache.js
lib/node_modules/npm/lib/completion.js
lib/node_modules/npm/lib/config.js
lib/node_modules/npm/lib/deprecate.js
lib/node_modules/npm/lib/docs.js
lib/node_modules/npm/lib/edit.js
lib/node_modules/npm/lib/explore.js
lib/node_modules/npm/lib/faq.js
lib/node_modules/npm/lib/get.js
lib/node_modules/npm/lib/help-search.js
lib/node_modules/npm/lib/help.js
lib/node_modules/npm/lib/init.js
lib/node_modules/npm/lib/install.js
lib/node_modules/npm/lib/link.js
lib/node_modules/npm/lib/ls.js
lib/node_modules/npm/lib/npm.js
lib/node_modules/npm/lib/outdated.js
lib/node_modules/npm/lib/owner.js
lib/node_modules/npm/lib/pack.js
lib/node_modules/npm/lib/prefix.js
lib/node_modules/npm/lib/prune.js
lib/node_modules/npm/lib/publish.js
lib/node_modules/npm/lib/rebuild.js
lib/node_modules/npm/lib/restart.js
lib/node_modules/npm/lib/root.js
lib/node_modules/npm/lib/run-script.js
lib/node_modules/npm/lib/search.js
lib/node_modules/npm/lib/set.js
lib/node_modules/npm/lib/shrinkwrap.js
lib/node_modules/npm/lib/star.js
lib/node_modules/npm/lib/start.js
lib/node_modules/npm/lib/stop.js
lib/node_modules/npm/lib/submodule.js
lib/node_modules/npm/lib/substack.js
lib/node_modules/npm/lib/tag.js
lib/node_modules/npm/lib/test.js
lib/node_modules/npm/lib/unbuild.js
lib/node_modules/npm/lib/uninstall.js
lib/node_modules/npm/lib/unpublish.js
lib/node_modules/npm/lib/update.js
lib/node_modules/npm/lib/utils/
lib/node_modules/npm/lib/utils/cmd-shim.js
lib/node_modules/npm/lib/utils/completion/
lib/node_modules/npm/lib/utils/completion.sh
lib/node_modules/npm/lib/utils/completion/file-completion.js
lib/node_modules/npm/lib/utils/completion/installed-deep.js
lib/node_modules/npm/lib/utils/completion/installed-shallow.js
lib/node_modules/npm/lib/utils/completion/remote-packages.js
lib/node_modules/npm/lib/utils/completion/users.js
lib/node_modules/npm/lib/utils/config-defs.js
lib/node_modules/npm/lib/utils/error-handler.js
lib/node_modules/npm/lib/utils/exec.js
lib/node_modules/npm/lib/utils/fetch.js
lib/node_modules/npm/lib/utils/find-prefix.js
lib/node_modules/npm/lib/utils/find.js
lib/node_modules/npm/lib/utils/gently-rm.js
lib/node_modules/npm/lib/utils/ini.js
lib/node_modules/npm/lib/utils/lifecycle.js
lib/node_modules/npm/lib/utils/link.js
lib/node_modules/npm/lib/utils/load-package-defaults.js
lib/node_modules/npm/lib/utils/log.js
lib/node_modules/npm/lib/utils/npm-registry-client/
lib/node_modules/npm/lib/utils/npm-registry-client/adduser.js
lib/node_modules/npm/lib/utils/npm-registry-client/get.js
lib/node_modules/npm/lib/utils/npm-registry-client/index.js
lib/node_modules/npm/lib/utils/npm-registry-client/publish.js
lib/node_modules/npm/lib/utils/npm-registry-client/request.js
lib/node_modules/npm/lib/utils/npm-registry-client/star.js
lib/node_modules/npm/lib/utils/npm-registry-client/tag.js
lib/node_modules/npm/lib/utils/npm-registry-client/unpublish.js
lib/node_modules/npm/lib/utils/output.js
lib/node_modules/npm/lib/utils/promise-chain.js
lib/node_modules/npm/lib/utils/read-installed.js
lib/node_modules/npm/lib/utils/read-json.js
lib/node_modules/npm/lib/utils/relativize.js
lib/node_modules/npm/lib/utils/sha.js
lib/node_modules/npm/lib/utils/tar.js
lib/node_modules/npm/lib/version.js
lib/node_modules/npm/lib/view.js
lib/node_modules/npm/lib/whoami.js
lib/node_modules/npm/lib/xmas.js
lib/node_modules/npm/man/
lib/node_modules/npm/man/man1/
@man lib/node_modules/npm/man/man1/README.1
@man lib/node_modules/npm/man/man1/adduser.1
@man lib/node_modules/npm/man/man1/author.1
@man lib/node_modules/npm/man/man1/bin.1
@man lib/node_modules/npm/man/man1/bugs.1
@man lib/node_modules/npm/man/man1/build.1
@man lib/node_modules/npm/man/man1/bundle.1
@man lib/node_modules/npm/man/man1/cache.1
@man lib/node_modules/npm/man/man1/changelog.1
@man lib/node_modules/npm/man/man1/coding-style.1
@man lib/node_modules/npm/man/man1/completion.1
@man lib/node_modules/npm/man/man1/config.1
@man lib/node_modules/npm/man/man1/deprecate.1
@man lib/node_modules/npm/man/man1/developers.1
@man lib/node_modules/npm/man/man1/disputes.1
@man lib/node_modules/npm/man/man1/docs.1
@man lib/node_modules/npm/man/man1/edit.1
@man lib/node_modules/npm/man/man1/explore.1
@man lib/node_modules/npm/man/man1/faq.1
@man lib/node_modules/npm/man/man1/find.1
@man lib/node_modules/npm/man/man1/folders.1
@man lib/node_modules/npm/man/man1/get.1
@man lib/node_modules/npm/man/man1/global.1
@man lib/node_modules/npm/man/man1/help-search.1
@man lib/node_modules/npm/man/man1/help.1
@man lib/node_modules/npm/man/man1/home.1
@man lib/node_modules/npm/man/man1/index.1
@man lib/node_modules/npm/man/man1/init.1
@man lib/node_modules/npm/man/man1/install.1
@man lib/node_modules/npm/man/man1/json.1
@man lib/node_modules/npm/man/man1/link.1
@man lib/node_modules/npm/man/man1/list.1
@man lib/node_modules/npm/man/man1/ln.1
@man lib/node_modules/npm/man/man1/ls.1
@man lib/node_modules/npm/man/man1/npm.1
@man lib/node_modules/npm/man/man1/outdated.1
@man lib/node_modules/npm/man/man1/owner.1
@man lib/node_modules/npm/man/man1/pack.1
@man lib/node_modules/npm/man/man1/prefix.1
@man lib/node_modules/npm/man/man1/prune.1
@man lib/node_modules/npm/man/man1/publish.1
@man lib/node_modules/npm/man/man1/rebuild.1
@man lib/node_modules/npm/man/man1/registry.1
@man lib/node_modules/npm/man/man1/removing-npm.1
@man lib/node_modules/npm/man/man1/restart.1
@man lib/node_modules/npm/man/man1/rm.1
@man lib/node_modules/npm/man/man1/root.1
@man lib/node_modules/npm/man/man1/run-script.1
@man lib/node_modules/npm/man/man1/scripts.1
@man lib/node_modules/npm/man/man1/search.1
@man lib/node_modules/npm/man/man1/semver.1
@man lib/node_modules/npm/man/man1/set.1
@man lib/node_modules/npm/man/man1/shrinkwrap.1
@man lib/node_modules/npm/man/man1/star.1
@man lib/node_modules/npm/man/man1/start.1
@man lib/node_modules/npm/man/man1/stop.1
@man lib/node_modules/npm/man/man1/submodule.1
@man lib/node_modules/npm/man/man1/tag.1
@man lib/node_modules/npm/man/man1/test.1
@man lib/node_modules/npm/man/man1/uninstall.1
@man lib/node_modules/npm/man/man1/unpublish.1
@man lib/node_modules/npm/man/man1/update.1
@man lib/node_modules/npm/man/man1/version.1
@man lib/node_modules/npm/man/man1/view.1
@man lib/node_modules/npm/man/man1/whoami.1
lib/node_modules/npm/man/man3/
@man lib/node_modules/npm/man/man3/author.3
@man lib/node_modules/npm/man/man3/bin.3
@man lib/node_modules/npm/man/man3/bugs.3
@man lib/node_modules/npm/man/man3/commands.3
@man lib/node_modules/npm/man/man3/config.3
@man lib/node_modules/npm/man/man3/deprecate.3
@man lib/node_modules/npm/man/man3/docs.3
@man lib/node_modules/npm/man/man3/edit.3
@man lib/node_modules/npm/man/man3/explore.3
@man lib/node_modules/npm/man/man3/find.3
@man lib/node_modules/npm/man/man3/get.3
@man lib/node_modules/npm/man/man3/help-search.3
@man lib/node_modules/npm/man/man3/home.3
@man lib/node_modules/npm/man/man3/init.3
@man lib/node_modules/npm/man/man3/install.3
@man lib/node_modules/npm/man/man3/link.3
@man lib/node_modules/npm/man/man3/list.3
@man lib/node_modules/npm/man/man3/ln.3
@man lib/node_modules/npm/man/man3/load.3
@man lib/node_modules/npm/man/man3/ls.3
@man lib/node_modules/npm/man/man3/npm.3
@man lib/node_modules/npm/man/man3/outdated.3
@man lib/node_modules/npm/man/man3/owner.3
@man lib/node_modules/npm/man/man3/pack.3
@man lib/node_modules/npm/man/man3/prefix.3
@man lib/node_modules/npm/man/man3/prune.3
@man lib/node_modules/npm/man/man3/publish.3
@man lib/node_modules/npm/man/man3/rebuild.3
@man lib/node_modules/npm/man/man3/restart.3
@man lib/node_modules/npm/man/man3/rm.3
@man lib/node_modules/npm/man/man3/root.3
@man lib/node_modules/npm/man/man3/run-script.3
@man lib/node_modules/npm/man/man3/search.3
@man lib/node_modules/npm/man/man3/set.3
@man lib/node_modules/npm/man/man3/shrinkwrap.3
@man lib/node_modules/npm/man/man3/start.3
@man lib/node_modules/npm/man/man3/stop.3
@man lib/node_modules/npm/man/man3/submodule.3
@man lib/node_modules/npm/man/man3/tag.3
@man lib/node_modules/npm/man/man3/test.3
@man lib/node_modules/npm/man/man3/uninstall.3
@man lib/node_modules/npm/man/man3/unpublish.3
@man lib/node_modules/npm/man/man3/update.3
@man lib/node_modules/npm/man/man3/version.3
@man lib/node_modules/npm/man/man3/view.3
@man lib/node_modules/npm/man/man3/whoami.3
lib/node_modules/npm/node_modules/
lib/node_modules/npm/node_modules/abbrev/
lib/node_modules/npm/node_modules/abbrev/LICENSE
lib/node_modules/npm/node_modules/abbrev/README.md
lib/node_modules/npm/node_modules/abbrev/lib/
lib/node_modules/npm/node_modules/abbrev/lib/abbrev.js
lib/node_modules/npm/node_modules/abbrev/package.json
lib/node_modules/npm/node_modules/archy/
lib/node_modules/npm/node_modules/archy/README.markdown
lib/node_modules/npm/node_modules/archy/index.js
lib/node_modules/npm/node_modules/archy/package.json
lib/node_modules/npm/node_modules/block-stream/
lib/node_modules/npm/node_modules/block-stream/README.md
lib/node_modules/npm/node_modules/block-stream/block-stream.js
lib/node_modules/npm/node_modules/block-stream/package.json
lib/node_modules/npm/node_modules/chownr/
lib/node_modules/npm/node_modules/chownr/README.md
lib/node_modules/npm/node_modules/chownr/chownr.js
lib/node_modules/npm/node_modules/chownr/package.json
lib/node_modules/npm/node_modules/fstream/
lib/node_modules/npm/node_modules/fstream-npm/
lib/node_modules/npm/node_modules/fstream-npm/.npmignore
lib/node_modules/npm/node_modules/fstream-npm/README.md
lib/node_modules/npm/node_modules/fstream-npm/fstream-npm.js
lib/node_modules/npm/node_modules/fstream-npm/node_modules/
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/.npmignore
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/README.md
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/package.json
lib/node_modules/npm/node_modules/fstream-npm/package.json
lib/node_modules/npm/node_modules/fstream/.npmignore
lib/node_modules/npm/node_modules/fstream/.travis.yml
lib/node_modules/npm/node_modules/fstream/LICENCE
lib/node_modules/npm/node_modules/fstream/README.md
lib/node_modules/npm/node_modules/fstream/fstream.js
lib/node_modules/npm/node_modules/fstream/lib/
lib/node_modules/npm/node_modules/fstream/lib/abstract.js
lib/node_modules/npm/node_modules/fstream/lib/collect.js
lib/node_modules/npm/node_modules/fstream/lib/dir-reader.js
lib/node_modules/npm/node_modules/fstream/lib/dir-writer.js
lib/node_modules/npm/node_modules/fstream/lib/file-reader.js
lib/node_modules/npm/node_modules/fstream/lib/file-writer.js
lib/node_modules/npm/node_modules/fstream/lib/get-type.js
lib/node_modules/npm/node_modules/fstream/lib/link-reader.js
lib/node_modules/npm/node_modules/fstream/lib/link-writer.js
lib/node_modules/npm/node_modules/fstream/lib/proxy-reader.js
lib/node_modules/npm/node_modules/fstream/lib/proxy-writer.js
lib/node_modules/npm/node_modules/fstream/lib/reader.js
lib/node_modules/npm/node_modules/fstream/lib/socket-reader.js
lib/node_modules/npm/node_modules/fstream/lib/writer.js
lib/node_modules/npm/node_modules/fstream/package.json
lib/node_modules/npm/node_modules/graceful-fs/
lib/node_modules/npm/node_modules/graceful-fs/.npmignore
lib/node_modules/npm/node_modules/graceful-fs/LICENSE
lib/node_modules/npm/node_modules/graceful-fs/README.md
lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js
lib/node_modules/npm/node_modules/graceful-fs/package.json
lib/node_modules/npm/node_modules/inherits/
lib/node_modules/npm/node_modules/inherits/LICENSE
lib/node_modules/npm/node_modules/inherits/README.md
lib/node_modules/npm/node_modules/inherits/inherits-old.js
lib/node_modules/npm/node_modules/inherits/inherits.js
lib/node_modules/npm/node_modules/inherits/package.json
lib/node_modules/npm/node_modules/ini/
lib/node_modules/npm/node_modules/ini/LICENSE
lib/node_modules/npm/node_modules/ini/README.md
lib/node_modules/npm/node_modules/ini/ini.js
lib/node_modules/npm/node_modules/ini/package.json
lib/node_modules/npm/node_modules/lru-cache/
lib/node_modules/npm/node_modules/lru-cache/.npmignore
lib/node_modules/npm/node_modules/lru-cache/LICENSE
lib/node_modules/npm/node_modules/lru-cache/README.md
lib/node_modules/npm/node_modules/lru-cache/lib/
lib/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js
lib/node_modules/npm/node_modules/lru-cache/package.json
lib/node_modules/npm/node_modules/minimatch/
lib/node_modules/npm/node_modules/minimatch/.travis.yml
lib/node_modules/npm/node_modules/minimatch/LICENSE
lib/node_modules/npm/node_modules/minimatch/README.md
lib/node_modules/npm/node_modules/minimatch/minimatch.js
lib/node_modules/npm/node_modules/minimatch/package.json
lib/node_modules/npm/node_modules/mkdirp/
lib/node_modules/npm/node_modules/mkdirp/LICENSE
lib/node_modules/npm/node_modules/mkdirp/README.markdown
lib/node_modules/npm/node_modules/mkdirp/index.js
lib/node_modules/npm/node_modules/mkdirp/package.json
lib/node_modules/npm/node_modules/node-gyp/
lib/node_modules/npm/node_modules/node-gyp/.npmignore
lib/node_modules/npm/node_modules/node-gyp/LICENSE
lib/node_modules/npm/node_modules/node-gyp/README.md
lib/node_modules/npm/node_modules/node-gyp/bin/
lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js
lib/node_modules/npm/node_modules/node-gyp/legacy/
lib/node_modules/npm/node_modules/node-gyp/legacy/common.gypi
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/addon.gypi
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/.npmignore
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/AUTHORS
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/DEPS
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/LICENSE
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/MANIFEST
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/OWNERS
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/PRESUBMIT.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/buildbot/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/buildbot/buildbot_run.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/codereview.settings
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/gyp
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/gyp.bat
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/gyp_dummy.c
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/gyptest.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSNew.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSProject.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSSettings.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSSettings_test.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSToolFile.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSUserFile.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/MSVSVersion.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/SCons.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/__init__.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/common.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/easy_xml.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/easy_xml_test.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/__init__.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/dump_dependency_json.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/gypd.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/gypsh.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/make.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/msvs.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/msvs_test.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/ninja.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/ninja_test.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/scons.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/generator/xcode.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/input.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/mac_tool.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/ninja_syntax.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/sun_tool.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/system_test.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/xcode_emulation.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/xcodeproj_file.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylib/gyp/xml_fix.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/pylintrc
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/samples/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/samples/samples
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/samples/samples.bat
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/setup.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/README
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/Xcode/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/Xcode/README
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/Xcode/Specifications/
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/Xcode/Specifications/gyp.pbfilespec
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/Xcode/Specifications/gyp.xclangspec
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/graphviz.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/pretty_gyp.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/pretty_sln.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp/tools/pretty_vcproj.py
lib/node_modules/npm/node_modules/node-gyp/legacy/tools/gyp_addon
lib/node_modules/npm/node_modules/node-gyp/lib/
lib/node_modules/npm/node_modules/node-gyp/lib/build.js
lib/node_modules/npm/node_modules/node-gyp/lib/clean.js
lib/node_modules/npm/node_modules/node-gyp/lib/configure.js
lib/node_modules/npm/node_modules/node-gyp/lib/install.js
lib/node_modules/npm/node_modules/node-gyp/lib/list.js
lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js
lib/node_modules/npm/node_modules/node-gyp/lib/rebuild.js
lib/node_modules/npm/node_modules/node-gyp/lib/remove.js
lib/node_modules/npm/node_modules/node-gyp/lib/util/
lib/node_modules/npm/node_modules/node-gyp/lib/util/mkdirp.js
lib/node_modules/npm/node_modules/node-gyp/node_modules/
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/.npmignore
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/README.md
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/lib/
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/lib/ansi.js
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/nodejs.png
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/package.json
lib/node_modules/npm/node_modules/node-gyp/node_modules/ansi/server.js
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/.npmignore
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/.travis.yml
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/LICENCE
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/README.md
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/glob.js
lib/node_modules/npm/node_modules/node-gyp/node_modules/glob/package.json
lib/node_modules/npm/node_modules/node-gyp/package.json
lib/node_modules/npm/node_modules/node-gyp/updateLegacy.sh
lib/node_modules/npm/node_modules/node-uuid/
lib/node_modules/npm/node_modules/node-uuid/.npmignore
lib/node_modules/npm/node_modules/node-uuid/LICENSE.md
lib/node_modules/npm/node_modules/node-uuid/README.md
lib/node_modules/npm/node_modules/node-uuid/package.json
lib/node_modules/npm/node_modules/node-uuid/uuid.js
lib/node_modules/npm/node_modules/nopt/
lib/node_modules/npm/node_modules/nopt/.npmignore
lib/node_modules/npm/node_modules/nopt/LICENSE
lib/node_modules/npm/node_modules/nopt/README.md
lib/node_modules/npm/node_modules/nopt/bin/
lib/node_modules/npm/node_modules/nopt/bin/nopt.js
lib/node_modules/npm/node_modules/nopt/lib/
lib/node_modules/npm/node_modules/nopt/lib/nopt.js
lib/node_modules/npm/node_modules/nopt/package.json
lib/node_modules/npm/node_modules/proto-list/
lib/node_modules/npm/node_modules/proto-list/LICENSE
lib/node_modules/npm/node_modules/proto-list/README.md
lib/node_modules/npm/node_modules/proto-list/package.json
lib/node_modules/npm/node_modules/proto-list/proto-list.js
lib/node_modules/npm/node_modules/read/
lib/node_modules/npm/node_modules/read/LICENCE
lib/node_modules/npm/node_modules/read/README.md
lib/node_modules/npm/node_modules/read/lib/
lib/node_modules/npm/node_modules/read/lib/read.js
lib/node_modules/npm/node_modules/read/package.json
lib/node_modules/npm/node_modules/request/
lib/node_modules/npm/node_modules/request/LICENSE
lib/node_modules/npm/node_modules/request/README.md
lib/node_modules/npm/node_modules/request/forever.js
lib/node_modules/npm/node_modules/request/main.js
lib/node_modules/npm/node_modules/request/mimetypes.js
lib/node_modules/npm/node_modules/request/oauth.js
lib/node_modules/npm/node_modules/request/package.json
lib/node_modules/npm/node_modules/request/tunnel.js
lib/node_modules/npm/node_modules/request/uuid.js
lib/node_modules/npm/node_modules/request/vendor/
lib/node_modules/npm/node_modules/request/vendor/cookie/
lib/node_modules/npm/node_modules/request/vendor/cookie/index.js
lib/node_modules/npm/node_modules/request/vendor/cookie/jar.js
lib/node_modules/npm/node_modules/rimraf/
lib/node_modules/npm/node_modules/rimraf/AUTHORS
lib/node_modules/npm/node_modules/rimraf/LICENSE
lib/node_modules/npm/node_modules/rimraf/README.md
lib/node_modules/npm/node_modules/rimraf/package.json
lib/node_modules/npm/node_modules/rimraf/rimraf.js
lib/node_modules/npm/node_modules/semver/
lib/node_modules/npm/node_modules/semver/LICENSE
lib/node_modules/npm/node_modules/semver/README.md
lib/node_modules/npm/node_modules/semver/bin/
lib/node_modules/npm/node_modules/semver/bin/semver
lib/node_modules/npm/node_modules/semver/package.json
lib/node_modules/npm/node_modules/semver/semver.js
lib/node_modules/npm/node_modules/slide/
lib/node_modules/npm/node_modules/slide/.npmignore
lib/node_modules/npm/node_modules/slide/LICENSE
lib/node_modules/npm/node_modules/slide/README.md
lib/node_modules/npm/node_modules/slide/index.js
lib/node_modules/npm/node_modules/slide/lib/
lib/node_modules/npm/node_modules/slide/lib/async-map-ordered.js
lib/node_modules/npm/node_modules/slide/lib/async-map.js
lib/node_modules/npm/node_modules/slide/lib/bind-actor.js
lib/node_modules/npm/node_modules/slide/lib/chain.js
lib/node_modules/npm/node_modules/slide/lib/slide.js
lib/node_modules/npm/node_modules/slide/package.json
lib/node_modules/npm/node_modules/tar/
lib/node_modules/npm/node_modules/tar/.npmignore
lib/node_modules/npm/node_modules/tar/.travis.yml
lib/node_modules/npm/node_modules/tar/README.md
lib/node_modules/npm/node_modules/tar/lib/
lib/node_modules/npm/node_modules/tar/lib/buffer-entry.js
lib/node_modules/npm/node_modules/tar/lib/entry-writer.js
lib/node_modules/npm/node_modules/tar/lib/entry.js
lib/node_modules/npm/node_modules/tar/lib/extended-header-writer.js
lib/node_modules/npm/node_modules/tar/lib/extended-header.js
lib/node_modules/npm/node_modules/tar/lib/extract.js
lib/node_modules/npm/node_modules/tar/lib/global-header-writer.js
lib/node_modules/npm/node_modules/tar/lib/header.js
lib/node_modules/npm/node_modules/tar/lib/pack.js
lib/node_modules/npm/node_modules/tar/lib/parse.js
lib/node_modules/npm/node_modules/tar/package.json
lib/node_modules/npm/node_modules/tar/tar.js
lib/node_modules/npm/node_modules/uid-number/
lib/node_modules/npm/node_modules/uid-number/README.md
lib/node_modules/npm/node_modules/uid-number/get-uid-gid.js
lib/node_modules/npm/node_modules/uid-number/package.json
lib/node_modules/npm/node_modules/uid-number/uid-number.js
lib/node_modules/npm/node_modules/which/
lib/node_modules/npm/node_modules/which/LICENSE
lib/node_modules/npm/node_modules/which/README.md
lib/node_modules/npm/node_modules/which/bin/
lib/node_modules/npm/node_modules/which/bin/which
lib/node_modules/npm/node_modules/which/package.json
lib/node_modules/npm/node_modules/which/which.js
lib/node_modules/npm/package.json
lib/node_modules/npm/scripts/
lib/node_modules/npm/scripts/clean-old.sh
lib/node_modules/npm/scripts/doc-build.sh
lib/node_modules/npm/scripts/index-build.js
lib/node_modules/npm/scripts/install.sh
lib/node_modules/npm/scripts/release.sh
lib/node_modules/npm/test/
lib/node_modules/npm/test/common.js
lib/node_modules/npm/test/packages/
lib/node_modules/npm/test/packages/npm-test-blerg/
lib/node_modules/npm/test/packages/npm-test-blerg/package.json
lib/node_modules/npm/test/packages/npm-test-blerg/test.js
lib/node_modules/npm/test/packages/npm-test-bundled-git/
lib/node_modules/npm/test/packages/npm-test-bundled-git/minimatch-expected.json
lib/node_modules/npm/test/packages/npm-test-bundled-git/package.json
lib/node_modules/npm/test/packages/npm-test-bundled-git/test.js
lib/node_modules/npm/test/packages/npm-test-env-reader/
lib/node_modules/npm/test/packages/npm-test-env-reader/package.json
lib/node_modules/npm/test/packages/npm-test-env-reader/test.js
lib/node_modules/npm/test/packages/npm-test-files/
lib/node_modules/npm/test/packages/npm-test-files/.npmignore
lib/node_modules/npm/test/packages/npm-test-files/include4
lib/node_modules/npm/test/packages/npm-test-files/package.json
lib/node_modules/npm/test/packages/npm-test-files/sub/
lib/node_modules/npm/test/packages/npm-test-files/sub/include
lib/node_modules/npm/test/packages/npm-test-files/sub/include2
lib/node_modules/npm/test/packages/npm-test-files/sub/include4
lib/node_modules/npm/test/packages/npm-test-files/test.sh
lib/node_modules/npm/test/packages/npm-test-ignore/
lib/node_modules/npm/test/packages/npm-test-ignore/.npmignore
lib/node_modules/npm/test/packages/npm-test-ignore/include4
lib/node_modules/npm/test/packages/npm-test-ignore/package.json
lib/node_modules/npm/test/packages/npm-test-ignore/sub/
lib/node_modules/npm/test/packages/npm-test-ignore/sub/include
lib/node_modules/npm/test/packages/npm-test-ignore/sub/include2
lib/node_modules/npm/test/packages/npm-test-ignore/sub/include4
lib/node_modules/npm/test/packages/npm-test-ignore/test.sh
lib/node_modules/npm/test/packages/npm-test-missing-bindir/
lib/node_modules/npm/test/packages/npm-test-missing-bindir/package.json
lib/node_modules/npm/test/packages/npm-test-missing-bindir/test.js
lib/node_modules/npm/test/packages/npm-test-optional-deps/
lib/node_modules/npm/test/packages/npm-test-optional-deps/package.json
lib/node_modules/npm/test/packages/npm-test-optional-deps/test.js
lib/node_modules/npm/test/packages/npm-test-platform/
lib/node_modules/npm/test/packages/npm-test-platform-all/
lib/node_modules/npm/test/packages/npm-test-platform-all/package.json
lib/node_modules/npm/test/packages/npm-test-platform/package.json
lib/node_modules/npm/test/packages/npm-test-private/
lib/node_modules/npm/test/packages/npm-test-private/package.json
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/npm-shrinkwrap.json
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/package.json
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/test.sh
lib/node_modules/npm/test/packages/npm-test-test-package/
lib/node_modules/npm/test/packages/npm-test-test-package/package.json
lib/node_modules/npm/test/packages/npm-test-url-dep/
lib/node_modules/npm/test/packages/npm-test-url-dep/package.json
lib/node_modules/npm/test/run.js
lib/node_modules/npm/test/update-test.sh
@man man/man1/node.1
@extraunexec rm -rf %D/lib/node_modules