pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/npm npm: updated to 6.6.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7650bfe4ef09
branches:  trunk
changeset: 318248:7650bfe4ef09
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Jan 22 11:19:17 2019 +0000

description:
npm: updated to 6.6.0

v6.6.0

REFACTORING OUT npm-REGISTRY-CLIENT

Today is an auspicious day! This release marks the end of a massive internal refactor to npm that means we finally got rid of the legacy npm-registry-client in favor of the shiny, new, 
window.fetch-like npm-registry-fetch.

Now, the installer had already done most of this work with the release of npm@5, but it turns out every other command still used the legacy client. This release updates all of those commands to use 
the new client, and while we're at it, adds a few extra goodies:

All OTP-requiring commands will now prompt. --otp is no longer required for dist-tag, access, et al.
We're starting to integrate a new config system which will eventually get extracted into a standalone package.
We now use libnpm for the API functionality of a lot of our commands! That means you can install a library if you want to write your own tooling around them.
There's now an npm org command for managing users in your org.
pacote now consumes npm-style configurations, instead of its own naming for various config vars. This will make it easier to load npm configs using libnpm.config and hand them directly to pacote.

NEW FEATURES
Make npm dist-tags the same as npm dist-tag ls.
Add support for IBM i.
Update profile to support new npm-profile API.

BUGFIXES
Fix support for passing git binary path config with --git.
Check for npm.config's existence in error-handler.js to prevent weird errors when failures happen before config object is loaded.
Fix checking for optional dependencies.
Remove tink experiments.
Handle git branch references correctly.
Report any errors above 400 as potentially not supporting audit.
Set default homepage to an empty string.
Fix npm-prefix description.

DOCS
Fix typo in npm-token documentation.
Correct docs for fake-registry interface.

diffstat:

 lang/npm/Makefile |   10 +-
 lang/npm/PLIST    |  716 ++++++++++++++++++++++++++++++++++++++++-------------
 lang/npm/distinfo |   18 +-
 3 files changed, 554 insertions(+), 190 deletions(-)

diffs (truncated from 1102 to 300 lines):

diff -r 4a57ad75930e -r 7650bfe4ef09 lang/npm/Makefile
--- a/lang/npm/Makefile Tue Jan 22 11:05:53 2019 +0000
+++ b/lang/npm/Makefile Tue Jan 22 11:19:17 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2019/01/08 14:53:49 adam Exp $
+# $NetBSD: Makefile,v 1.16 2019/01/22 11:19:17 adam Exp $
 
-DISTNAME=      cli-6.5.0
+DISTNAME=      cli-6.6.0
 PKGNAME=       ${DISTNAME:S/cli/npm/}
 CATEGORIES=    lang
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=npm/}
@@ -13,15 +13,15 @@
 LICENSE=       artistic-2.0
 
 # Pre-fetch marked so that man pages can be built offline
-MARKED=                        marked-0.4.0
+MARKED=                        marked-0.6.0
 DISTFILES+=            ${DISTNAME}${EXTRACT_SUFX} ${MARKED}.tar.gz
-SITES.${MARKED}.tar.gz=        -https://github.com/markedjs/marked/archive/${MARKED:S/marked-//}.tar.gz
+SITES.${MARKED}.tar.gz=        -https://github.com/markedjs/marked/archive/v${MARKED:S/marked-//}.tar.gz
 
 DEPENDS+=      nodejs-[0-9]*:../../lang/nodejs
 
 USE_TOOLS+=    gmake perl
 
-PYTHON_VERSIONS_INCOMPATIBLE=  34 35 36 37 # required by gyp scripts included
+PYTHON_VERSIONS_ACCEPTED=      27 # required by gyp scripts included
 
 REPLACE_INTERPRETER+=  node
 REPLACE.node.old=      .*node
diff -r 4a57ad75930e -r 7650bfe4ef09 lang/npm/PLIST
--- a/lang/npm/PLIST    Tue Jan 22 11:05:53 2019 +0000
+++ b/lang/npm/PLIST    Tue Jan 22 11:19:17 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2019/01/08 14:53:49 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2019/01/22 11:19:17 adam Exp $
 bin/npm
 bin/npx
 lib/node_modules/npm/.licensee.json
@@ -205,6 +205,7 @@
 lib/node_modules/npm/lib/config/core.js
 lib/node_modules/npm/lib/config/defaults.js
 lib/node_modules/npm/lib/config/fetch-opts.js
+lib/node_modules/npm/lib/config/figgy-config.js
 lib/node_modules/npm/lib/config/gentle-fs.js
 lib/node_modules/npm/lib/config/get-credentials-by-uri.js
 lib/node_modules/npm/lib/config/lifecycle.js
@@ -212,8 +213,6 @@
 lib/node_modules/npm/lib/config/load-prefix.js
 lib/node_modules/npm/lib/config/load-uid.js
 lib/node_modules/npm/lib/config/nerf-dart.js
-lib/node_modules/npm/lib/config/pacote.js
-lib/node_modules/npm/lib/config/reg-client.js
 lib/node_modules/npm/lib/config/set-credentials-by-uri.js
 lib/node_modules/npm/lib/config/set-user.js
 lib/node_modules/npm/lib/dedupe.js
@@ -293,6 +292,7 @@
 lib/node_modules/npm/lib/logout.js
 lib/node_modules/npm/lib/ls.js
 lib/node_modules/npm/lib/npm.js
+lib/node_modules/npm/lib/org.js
 lib/node_modules/npm/lib/outdated.js
 lib/node_modules/npm/lib/owner.js
 lib/node_modules/npm/lib/pack.js
@@ -309,7 +309,6 @@
 lib/node_modules/npm/lib/search.js
 lib/node_modules/npm/lib/search/all-package-metadata.js
 lib/node_modules/npm/lib/search/all-package-search.js
-lib/node_modules/npm/lib/search/esearch.js
 lib/node_modules/npm/lib/search/format-package-stream.js
 lib/node_modules/npm/lib/search/package-filter.js
 lib/node_modules/npm/lib/set.js
@@ -341,7 +340,6 @@
 lib/node_modules/npm/lib/utils/escape-arg.js
 lib/node_modules/npm/lib/utils/escape-exec-path.js
 lib/node_modules/npm/lib/utils/gently-rm.js
-lib/node_modules/npm/lib/utils/get-publish-config.js
 lib/node_modules/npm/lib/utils/git.js
 lib/node_modules/npm/lib/utils/gunzip-maybe.js
 lib/node_modules/npm/lib/utils/is-registry.js
@@ -352,13 +350,13 @@
 lib/node_modules/npm/lib/utils/lifecycle.js
 lib/node_modules/npm/lib/utils/link.js
 lib/node_modules/npm/lib/utils/locker.js
-lib/node_modules/npm/lib/utils/map-to-registry.js
 lib/node_modules/npm/lib/utils/metrics-launch.js
 lib/node_modules/npm/lib/utils/metrics.js
 lib/node_modules/npm/lib/utils/module-name.js
 lib/node_modules/npm/lib/utils/move.js
 lib/node_modules/npm/lib/utils/no-progress-while-running.js
 lib/node_modules/npm/lib/utils/open-url.js
+lib/node_modules/npm/lib/utils/otplease.js
 lib/node_modules/npm/lib/utils/output.js
 lib/node_modules/npm/lib/utils/package-id.js
 lib/node_modules/npm/lib/utils/parse-json.js
@@ -505,6 +503,7 @@
 lib/node_modules/npm/node_modules/JSONStream/test/multiple_objects_error.js
 lib/node_modules/npm/node_modules/JSONStream/test/null.js
 lib/node_modules/npm/node_modules/JSONStream/test/parsejson.js
+lib/node_modules/npm/node_modules/JSONStream/test/run.js
 lib/node_modules/npm/node_modules/JSONStream/test/stringify.js
 lib/node_modules/npm/node_modules/JSONStream/test/stringify_object.js
 lib/node_modules/npm/node_modules/JSONStream/test/test.js
@@ -642,6 +641,7 @@
 lib/node_modules/npm/node_modules/ansistyles/ansistyles.js
 lib/node_modules/npm/node_modules/ansistyles/package.json
 lib/node_modules/npm/node_modules/ansistyles/test/ansistyles.js
+lib/node_modules/npm/node_modules/aproba/CHANGELOG.md
 lib/node_modules/npm/node_modules/aproba/LICENSE
 lib/node_modules/npm/node_modules/aproba/README.md
 lib/node_modules/npm/node_modules/aproba/index.js
@@ -660,6 +660,35 @@
 lib/node_modules/npm/node_modules/are-we-there-yet/LICENSE
 lib/node_modules/npm/node_modules/are-we-there-yet/README.md
 lib/node_modules/npm/node_modules/are-we-there-yet/index.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/.travis.yml
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/README.md
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/duplex-browser.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/duplex.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_passthrough.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/BufferList.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/destroy.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream-browser.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/package.json
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/passthrough.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/readable-browser.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/readable.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/transform.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/writable-browser.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/writable.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/.travis.yml
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/LICENSE
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/README.md
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/lib/string_decoder.js
+lib/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/package.json
 lib/node_modules/npm/node_modules/are-we-there-yet/package.json
 lib/node_modules/npm/node_modules/are-we-there-yet/tracker-base.js
 lib/node_modules/npm/node_modules/are-we-there-yet/tracker-group.js
@@ -814,7 +843,8 @@
 lib/node_modules/npm/node_modules/byte-size/LICENSE
 lib/node_modules/npm/node_modules/byte-size/README.hbs
 lib/node_modules/npm/node_modules/byte-size/README.md
-lib/node_modules/npm/node_modules/byte-size/index.js
+lib/node_modules/npm/node_modules/byte-size/dist/index.js
+lib/node_modules/npm/node_modules/byte-size/index.mjs
 lib/node_modules/npm/node_modules/byte-size/package.json
 lib/node_modules/npm/node_modules/cacache/CHANGELOG.md
 lib/node_modules/npm/node_modules/cacache/LICENSE.md
@@ -841,6 +871,32 @@
 lib/node_modules/npm/node_modules/cacache/locales/es.js
 lib/node_modules/npm/node_modules/cacache/locales/es.json
 lib/node_modules/npm/node_modules/cacache/ls.js
+lib/node_modules/npm/node_modules/cacache/node_modules/chownr/LICENSE
+lib/node_modules/npm/node_modules/cacache/node_modules/chownr/README.md
+lib/node_modules/npm/node_modules/cacache/node_modules/chownr/chownr.js
+lib/node_modules/npm/node_modules/cacache/node_modules/chownr/package.json
+lib/node_modules/npm/node_modules/cacache/node_modules/lru-cache/LICENSE
+lib/node_modules/npm/node_modules/cacache/node_modules/lru-cache/README.md
+lib/node_modules/npm/node_modules/cacache/node_modules/lru-cache/index.js
+lib/node_modules/npm/node_modules/cacache/node_modules/lru-cache/package.json
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/LICENSE
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/README.md
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/__root__/index.html
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/__root__/index.js.html
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/base.css
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/index.html
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/prettify.css
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/prettify.js
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/sort-arrow-sprite.png
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/coverage/sorter.js
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/index.js
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/package.json
+lib/node_modules/npm/node_modules/cacache/node_modules/unique-filename/test/index.js
+lib/node_modules/npm/node_modules/cacache/node_modules/yallist/LICENSE
+lib/node_modules/npm/node_modules/cacache/node_modules/yallist/README.md
+lib/node_modules/npm/node_modules/cacache/node_modules/yallist/iterator.js
+lib/node_modules/npm/node_modules/cacache/node_modules/yallist/package.json
+lib/node_modules/npm/node_modules/cacache/node_modules/yallist/yallist.js
 lib/node_modules/npm/node_modules/cacache/package.json
 lib/node_modules/npm/node_modules/cacache/put.js
 lib/node_modules/npm/node_modules/cacache/rm.js
@@ -895,6 +951,7 @@
 lib/node_modules/npm/node_modules/cli-table3/CHANGELOG.md
 lib/node_modules/npm/node_modules/cli-table3/LICENSE
 lib/node_modules/npm/node_modules/cli-table3/README.md
+lib/node_modules/npm/node_modules/cli-table3/index.d.ts
 lib/node_modules/npm/node_modules/cli-table3/index.js
 lib/node_modules/npm/node_modules/cli-table3/package.json
 lib/node_modules/npm/node_modules/cli-table3/src/cell.js
@@ -956,6 +1013,7 @@
 lib/node_modules/npm/node_modules/colors/README.md
 lib/node_modules/npm/node_modules/colors/examples/normal-usage.js
 lib/node_modules/npm/node_modules/colors/examples/safe-string.js
+lib/node_modules/npm/node_modules/colors/index.d.ts
 lib/node_modules/npm/node_modules/colors/lib/colors.js
 lib/node_modules/npm/node_modules/colors/lib/custom/trap.js
 lib/node_modules/npm/node_modules/colors/lib/custom/zalgo.js
@@ -966,8 +1024,10 @@
 lib/node_modules/npm/node_modules/colors/lib/maps/random.js
 lib/node_modules/npm/node_modules/colors/lib/maps/zebra.js
 lib/node_modules/npm/node_modules/colors/lib/styles.js
+lib/node_modules/npm/node_modules/colors/lib/system/has-flag.js
 lib/node_modules/npm/node_modules/colors/lib/system/supports-colors.js
 lib/node_modules/npm/node_modules/colors/package.json
+lib/node_modules/npm/node_modules/colors/safe.d.ts
 lib/node_modules/npm/node_modules/colors/safe.js
 lib/node_modules/npm/node_modules/colors/themes/generic-logging.js
 lib/node_modules/npm/node_modules/columnify/LICENSE
@@ -992,6 +1052,35 @@
 lib/node_modules/npm/node_modules/concat-map/test/map.js
 lib/node_modules/npm/node_modules/concat-stream/LICENSE
 lib/node_modules/npm/node_modules/concat-stream/index.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/.travis.yml
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/CONTRIBUTING.md
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/GOVERNANCE.md
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/LICENSE
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/README.md
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/duplex-browser.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/duplex.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_passthrough.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_readable.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/BufferList.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/destroy.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/package.json
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/passthrough.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/readable-browser.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/readable.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/transform.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/writable-browser.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/writable.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/.travis.yml
+lib/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/LICENSE
+lib/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/README.md
+lib/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/lib/string_decoder.js
+lib/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/package.json
 lib/node_modules/npm/node_modules/concat-stream/package.json
 lib/node_modules/npm/node_modules/concat-stream/readme.md
 lib/node_modules/npm/node_modules/config-chain/LICENCE
@@ -1010,6 +1099,10 @@
 lib/node_modules/npm/node_modules/copy-concurrently/README.md
 lib/node_modules/npm/node_modules/copy-concurrently/copy.js
 lib/node_modules/npm/node_modules/copy-concurrently/is-windows.js
+lib/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/LICENSE
+lib/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/README.md
+lib/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/index.js
+lib/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/package.json
 lib/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/.npmignore
 lib/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/LICENSE
 lib/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/README.md
@@ -1145,6 +1238,35 @@
 lib/node_modules/npm/node_modules/duplexify/README.md
 lib/node_modules/npm/node_modules/duplexify/example.js
 lib/node_modules/npm/node_modules/duplexify/index.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/.travis.yml
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/CONTRIBUTING.md
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/GOVERNANCE.md
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/LICENSE
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/README.md
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/duplex-browser.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/duplex.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_duplex.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_passthrough.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_readable.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_transform.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_writable.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/BufferList.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/destroy.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/stream-browser.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/stream.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/package.json
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/passthrough.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/readable-browser.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/readable.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/transform.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/writable-browser.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/writable.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/.travis.yml
+lib/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/LICENSE
+lib/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/README.md
+lib/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/lib/string_decoder.js
+lib/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/package.json
 lib/node_modules/npm/node_modules/duplexify/package.json
 lib/node_modules/npm/node_modules/duplexify/test.js



Home | Main Index | Thread Index | Old Index