pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/lang/npm lang/npm: Update tp 6.3.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8a284f82441c
branches:  trunk
changeset: 311132:8a284f82441c
user:      fhajny <fhajny%pkgsrc.org@localhost>
date:      Thu Aug 02 12:28:35 2018 +0000

description:
lang/npm: Update tp 6.3.0.


## v6.3.0 (2018-08-01):

- `figgy-pudding@3.2.0`
- `cacache@11.1.0`


## v6.3.0-next.0 (2018-07-25):

### NEW FEATURES

- `npm version` now supports a `--preid` option to specify the preid
  for prereleases. For example, `npm version premajor --preid rc` will tag
  a version like `2.0.0-rc.0`.

### MESSAGING IMPROVEMENTS

- Make `npm audit fix` message provide better instructions for
  vulnerabilities that require manual review.
- Fix missing colon next to tarball url in new `npm view` output.
- Use the defaut OTP explanation everywhere except when the context is
  "OTP-aware" (like when setting double-authentication). This improves
  the overall CLI messaging when prompting for an OTP code.

### MISC

- Use the extracted `stringify-package` package.
- `wrappy` was previously added to dependencies in order to flatten
  it, but we no longer do legacy-style for npm itself, so it has been
  removed from `package.json`.


## v6.2.0 (2018-07-13):

### FEATURES

- Add support for tab-separated output for `npm audit` data with the
  `--parseable` flag.
- Add new `sign-git-commit` config to control whether the git commit
  itself gets signed, or just the tag (which is the default).

### FIXES

- Do not use `SET` to fetch the env in git-bash or Cygwin.

### DEPENDENCY BUMPS

- `request@2.81.0`: Downgraded to allow better deduplication. This
  does introduce a bunch of `hoek`-related audit reports, but they don't
  affect npm itself so we consider it safe. We'll upgrade `request` again
  once `node-gyp` unpins it.
- `node-gyp@3.7.0`
_ `cli-table3@0.5.0`: `cli-table2` is unmaintained and required
  `lodash`. With this dependency bump, we've removed `lodash` from our tree,
  which cut back tarball size by another 300kb.
- `npm-audit-report@1.3.1`
- Add `cli-table3` to bundleDeps.
- Make `standard` happy.


## v6.2.0-next.1 (2018-07-05):

- Remove postinstall script that depended on source files, thus
  preventing `npm@next` from being installable from the registry.


## v6.2.0-next.0 (2018-06-28):

### NEW FEATURES

- You can now disable the update notifier entirely by using
  `--no-update-notifier` or setting it in your config with `npm config
  set update-notifier false`.
- When `npm run-script <script>` fails due to a typo or missing
  script, npm will now do a "did you mean?..." for scripts that do exist.

### BUGFIXES

- Fix the regular expression matching in `xcode_emulation` in
  `node-gyp` to also handle version numbers with multiple-digit major
  versions which would otherwise break under use of XCode 10.
- Stop trying to hoist/dedupe bundles dependencies.
- Add synopsis to brief help for `npm audit` and suppress trailing
  newline.
- Exclude /.github directory from npm tarball.
- Add suggestion to use a temporary cache instead of `npm cache clear
  --force`.

### DEPENDENCY SHUFFLE!

We did some reshuffling and moving around of npm's own dependencies.
This significantly reduces the total bundle size of the npm pack,
from 8MB to 4.8MB for the distributed tarball! We also moved around
what we actually commit to the repo as far as devDeps go.

- Flatten and dedupe our dependencies!
- Remove unused direct dependency `ansi-regex`.
- Reshuffle ansi-regex for better deduping.
- Reshuffle strip-ansi for better deduping.
- Reshuffle is-fullwidth-code-point for better deduping.
- Add fake-registry, npm-registry-mock replacement.

### DEPENDENCIES

- `tar@4.4.3`
- `pacote@8.1.6`
- `libcipm@2.0.0`
- `request@2.87.0`
- `which@1.3.1`
- `tar@4.4.4`
- `JSONStream@1.3.3`
- `is-cidr@2.0.6`
- `marked@0.4.0`
- `tap@12.0.1`
- `npm-profile@3.0.2`
- `uuid@3.3.2`

diffstat:

 lang/npm/Makefile |    17 +-
 lang/npm/PLIST    |  6742 +++++++++++++++-------------------------------------
 lang/npm/distinfo |    18 +-
 3 files changed, 2006 insertions(+), 4771 deletions(-)

diffs (truncated from 7474 to 300 lines):

diff -r 3a67313b84d5 -r 8a284f82441c lang/npm/Makefile
--- a/lang/npm/Makefile Thu Aug 02 12:18:41 2018 +0000
+++ b/lang/npm/Makefile Thu Aug 02 12:28:35 2018 +0000
@@ -1,20 +1,21 @@
-# $NetBSD: Makefile,v 1.9 2018/07/10 15:57:00 jperkin Exp $
+# $NetBSD: Makefile,v 1.10 2018/08/02 12:28:35 fhajny Exp $
 
-DISTNAME=      npm-6.1.0
-PKGREVISION=   1
+DISTNAME=      cli-6.3.0
+PKGNAME=       ${DISTNAME:S/cli/npm/}
 CATEGORIES=    lang
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=npm/}
+GITHUB_PROJECT=        cli
 GITHUB_TAG=    v${PKGVERSION_NOREV}
 
 MAINTAINER=    filip%joyent.com@localhost
-HOMEPAGE=      https://github.com/npm/npm/
+HOMEPAGE=      https://github.com/npm/cli/
 COMMENT=       Package manager for JavaScript
 LICENSE=       artistic-2.0
 
 # Pre-fetch marked so that man pages can be built offline
-MARKED=                marked-0.3.19
-DISTFILES+=    ${DISTNAME}${EXTRACT_SUFX} ${MARKED}.tar.gz
-SITES.${MARKED}.tar.gz=        -https://github.com/markedjs/marked/archive/v${MARKED:S/marked-//}.tar.gz
+MARKED=                        marked-0.4.0
+DISTFILES+=            ${DISTNAME}${EXTRACT_SUFX} ${MARKED}.tar.gz
+SITES.${MARKED}.tar.gz=        -https://github.com/markedjs/marked/archive/${MARKED:S/marked-//}.tar.gz
 
 DEPENDS+=      nodejs-[0-9]*:../../lang/nodejs
 
@@ -46,7 +47,7 @@
        cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} ${PREFIX}/bin/node \
                bin/npm-cli.js pack
        cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} ${PREFIX}/bin/node \
-               bin/npm-cli.js install -g -f ${DISTNAME}.tgz
+               bin/npm-cli.js install -g -f ${PKGNAME}.tgz
 .if ${PKGMANDIR} != "share/man"
        ${RM} -f -r ${DESTDIR}${PREFIX}/${PKGMANDIR}
        ${MV} ${DESTDIR}${PREFIX}/share/man ${DESTDIR}${PREFIX}/${PKGMANDIR}
diff -r 3a67313b84d5 -r 8a284f82441c lang/npm/PLIST
--- a/lang/npm/PLIST    Thu Aug 02 12:18:41 2018 +0000
+++ b/lang/npm/PLIST    Thu Aug 02 12:28:35 2018 +0000
@@ -1,8 +1,6 @@
-@comment $NetBSD: PLIST,v 1.4 2018/06/28 11:28:01 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.5 2018/08/02 12:28:35 fhajny Exp $
 bin/npm
 bin/npx
-lib/node_modules/npm/.github/CODEOWNERS
-lib/node_modules/npm/.github/issue_template.md
 lib/node_modules/npm/.mailmap
 lib/node_modules/npm/.npmignore
 lib/node_modules/npm/.travis.yml
@@ -12,7 +10,6 @@
 lib/node_modules/npm/LICENSE
 lib/node_modules/npm/Makefile
 lib/node_modules/npm/README.md
-lib/node_modules/npm/TROUBLESHOOTING.md
 lib/node_modules/npm/appveyor.yml
 lib/node_modules/npm/bin/node-gyp-bin/node-gyp
 lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd
@@ -371,7 +368,6 @@
 lib/node_modules/npm/lib/utils/read-user-info.js
 lib/node_modules/npm/lib/utils/save-stack.js
 lib/node_modules/npm/lib/utils/spawn.js
-lib/node_modules/npm/lib/utils/stringify-package.js
 lib/node_modules/npm/lib/utils/temp-filename.js
 lib/node_modules/npm/lib/utils/umask.js
 lib/node_modules/npm/lib/utils/unix-format-path.js
@@ -463,56 +459,34 @@
 lib/node_modules/npm/man/man7/removing-npm.7
 lib/node_modules/npm/man/man7/semver.7
 lib/node_modules/npm/node_modules/.bin/JSONStream
+lib/node_modules/npm/node_modules/.bin/errno
+lib/node_modules/npm/node_modules/.bin/is-ci
 lib/node_modules/npm/node_modules/.bin/mkdirp
 lib/node_modules/npm/node_modules/.bin/node-gyp
 lib/node_modules/npm/node_modules/.bin/nopt
 lib/node_modules/npm/node_modules/.bin/opener
 lib/node_modules/npm/node_modules/.bin/qrcode-terminal
+lib/node_modules/npm/node_modules/.bin/rc
 lib/node_modules/npm/node_modules/.bin/rimraf
 lib/node_modules/npm/node_modules/.bin/semver
+lib/node_modules/npm/node_modules/.bin/sshpk-conv
+lib/node_modules/npm/node_modules/.bin/sshpk-sign
+lib/node_modules/npm/node_modules/.bin/sshpk-verify
 lib/node_modules/npm/node_modules/.bin/uuid
 lib/node_modules/npm/node_modules/.bin/which
-lib/node_modules/npm/node_modules/JSONStream/.npmignore
 lib/node_modules/npm/node_modules/JSONStream/.travis.yml
 lib/node_modules/npm/node_modules/JSONStream/LICENSE.APACHE2
 lib/node_modules/npm/node_modules/JSONStream/LICENSE.MIT
 lib/node_modules/npm/node_modules/JSONStream/bin.js
 lib/node_modules/npm/node_modules/JSONStream/examples/all_docs.js
 lib/node_modules/npm/node_modules/JSONStream/index.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/.npmignore
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/LICENSE
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/README.markdown
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/bench.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/examples/twitterfeed.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/jsonparse.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/package.json
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic.json
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic2.json
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/big-token.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/boundary.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/offset.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/primitives.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/surrogate.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/unvalid.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/jsonparse/test/utf8.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/.travis.yml
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/LICENSE.APACHE2
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/LICENSE.MIT
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/index.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/package.json
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/readme.markdown
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/test/async.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/test/auto-destroy.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/test/buffering.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/test/end.js
-lib/node_modules/npm/node_modules/JSONStream/node_modules/through/test/index.js
 lib/node_modules/npm/node_modules/JSONStream/package.json
 lib/node_modules/npm/node_modules/JSONStream/readme.markdown
 lib/node_modules/npm/node_modules/JSONStream/test/bool.js
 lib/node_modules/npm/node_modules/JSONStream/test/browser.js
 lib/node_modules/npm/node_modules/JSONStream/test/destroy_missing.js
-lib/node_modules/npm/node_modules/JSONStream/test/disabled/doubledot1.js
-lib/node_modules/npm/node_modules/JSONStream/test/disabled/doubledot2.js
+lib/node_modules/npm/node_modules/JSONStream/test/doubledot1.js
+lib/node_modules/npm/node_modules/JSONStream/test/doubledot2.js
 lib/node_modules/npm/node_modules/JSONStream/test/empty.js
 lib/node_modules/npm/node_modules/JSONStream/test/error_contents.js
 lib/node_modules/npm/node_modules/JSONStream/test/fixtures/all_npm.json
@@ -539,10 +513,36 @@
 lib/node_modules/npm/node_modules/abbrev/README.md
 lib/node_modules/npm/node_modules/abbrev/abbrev.js
 lib/node_modules/npm/node_modules/abbrev/package.json
+lib/node_modules/npm/node_modules/agent-base/.travis.yml
+lib/node_modules/npm/node_modules/agent-base/History.md
+lib/node_modules/npm/node_modules/agent-base/README.md
+lib/node_modules/npm/node_modules/agent-base/index.js
+lib/node_modules/npm/node_modules/agent-base/package.json
+lib/node_modules/npm/node_modules/agent-base/patch-core.js
+lib/node_modules/npm/node_modules/agent-base/test/ssl-cert-snakeoil.key
+lib/node_modules/npm/node_modules/agent-base/test/ssl-cert-snakeoil.pem
+lib/node_modules/npm/node_modules/agent-base/test/test.js
+lib/node_modules/npm/node_modules/agentkeepalive/History.md
+lib/node_modules/npm/node_modules/agentkeepalive/README.md
+lib/node_modules/npm/node_modules/agentkeepalive/browser.js
+lib/node_modules/npm/node_modules/agentkeepalive/index.js
+lib/node_modules/npm/node_modules/agentkeepalive/lib/_http_agent.js
+lib/node_modules/npm/node_modules/agentkeepalive/lib/agent.js
+lib/node_modules/npm/node_modules/agentkeepalive/lib/https_agent.js
+lib/node_modules/npm/node_modules/agentkeepalive/package.json
+lib/node_modules/npm/node_modules/ansi-align/CHANGELOG.md
+lib/node_modules/npm/node_modules/ansi-align/LICENSE
+lib/node_modules/npm/node_modules/ansi-align/README.md
+lib/node_modules/npm/node_modules/ansi-align/index.js
+lib/node_modules/npm/node_modules/ansi-align/package.json
 lib/node_modules/npm/node_modules/ansi-regex/index.js
 lib/node_modules/npm/node_modules/ansi-regex/license
 lib/node_modules/npm/node_modules/ansi-regex/package.json
 lib/node_modules/npm/node_modules/ansi-regex/readme.md
+lib/node_modules/npm/node_modules/ansi-styles/index.js
+lib/node_modules/npm/node_modules/ansi-styles/license
+lib/node_modules/npm/node_modules/ansi-styles/package.json
+lib/node_modules/npm/node_modules/ansi-styles/readme.md
 lib/node_modules/npm/node_modules/ansicolors/LICENSE
 lib/node_modules/npm/node_modules/ansicolors/README.md
 lib/node_modules/npm/node_modules/ansicolors/ansicolors.js
@@ -567,11 +567,91 @@
 lib/node_modules/npm/node_modules/archy/test/beep.js
 lib/node_modules/npm/node_modules/archy/test/multi_line.js
 lib/node_modules/npm/node_modules/archy/test/non_unicode.js
+lib/node_modules/npm/node_modules/are-we-there-yet/CHANGES.md
+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/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
+lib/node_modules/npm/node_modules/are-we-there-yet/tracker-stream.js
+lib/node_modules/npm/node_modules/are-we-there-yet/tracker.js
+lib/node_modules/npm/node_modules/asap/CHANGES.md
+lib/node_modules/npm/node_modules/asap/LICENSE.md
+lib/node_modules/npm/node_modules/asap/README.md
+lib/node_modules/npm/node_modules/asap/asap.js
+lib/node_modules/npm/node_modules/asap/browser-asap.js
+lib/node_modules/npm/node_modules/asap/browser-raw.js
+lib/node_modules/npm/node_modules/asap/package.json
+lib/node_modules/npm/node_modules/asap/raw.js
+lib/node_modules/npm/node_modules/asn1/.npmignore
+lib/node_modules/npm/node_modules/asn1/.travis.yml
+lib/node_modules/npm/node_modules/asn1/LICENSE
+lib/node_modules/npm/node_modules/asn1/README.md
+lib/node_modules/npm/node_modules/asn1/lib/ber/errors.js
+lib/node_modules/npm/node_modules/asn1/lib/ber/index.js
+lib/node_modules/npm/node_modules/asn1/lib/ber/reader.js
+lib/node_modules/npm/node_modules/asn1/lib/ber/types.js
+lib/node_modules/npm/node_modules/asn1/lib/ber/writer.js
+lib/node_modules/npm/node_modules/asn1/lib/index.js
+lib/node_modules/npm/node_modules/asn1/package.json
+lib/node_modules/npm/node_modules/asn1/tst/ber/reader.test.js
+lib/node_modules/npm/node_modules/asn1/tst/ber/writer.test.js
+lib/node_modules/npm/node_modules/assert-plus/AUTHORS
+lib/node_modules/npm/node_modules/assert-plus/CHANGES.md
+lib/node_modules/npm/node_modules/assert-plus/README.md
+lib/node_modules/npm/node_modules/assert-plus/assert.js
+lib/node_modules/npm/node_modules/assert-plus/package.json
+lib/node_modules/npm/node_modules/asynckit/LICENSE
+lib/node_modules/npm/node_modules/asynckit/README.md
+lib/node_modules/npm/node_modules/asynckit/bench.js
+lib/node_modules/npm/node_modules/asynckit/index.js
+lib/node_modules/npm/node_modules/asynckit/lib/abort.js
+lib/node_modules/npm/node_modules/asynckit/lib/async.js
+lib/node_modules/npm/node_modules/asynckit/lib/defer.js
+lib/node_modules/npm/node_modules/asynckit/lib/iterate.js
+lib/node_modules/npm/node_modules/asynckit/lib/readable_asynckit.js
+lib/node_modules/npm/node_modules/asynckit/lib/readable_parallel.js
+lib/node_modules/npm/node_modules/asynckit/lib/readable_serial.js
+lib/node_modules/npm/node_modules/asynckit/lib/readable_serial_ordered.js
+lib/node_modules/npm/node_modules/asynckit/lib/state.js
+lib/node_modules/npm/node_modules/asynckit/lib/streamify.js
+lib/node_modules/npm/node_modules/asynckit/lib/terminator.js
+lib/node_modules/npm/node_modules/asynckit/package.json
+lib/node_modules/npm/node_modules/asynckit/parallel.js
+lib/node_modules/npm/node_modules/asynckit/serial.js
+lib/node_modules/npm/node_modules/asynckit/serialOrdered.js
+lib/node_modules/npm/node_modules/asynckit/stream.js
+lib/node_modules/npm/node_modules/aws-sign2/LICENSE
+lib/node_modules/npm/node_modules/aws-sign2/README.md
+lib/node_modules/npm/node_modules/aws-sign2/index.js
+lib/node_modules/npm/node_modules/aws-sign2/package.json
+lib/node_modules/npm/node_modules/aws4/.travis.yml
+lib/node_modules/npm/node_modules/aws4/LICENSE
+lib/node_modules/npm/node_modules/aws4/README.md
+lib/node_modules/npm/node_modules/aws4/aws4.js
+lib/node_modules/npm/node_modules/aws4/lru.js
+lib/node_modules/npm/node_modules/aws4/package.json
+lib/node_modules/npm/node_modules/balanced-match/.npmignore
+lib/node_modules/npm/node_modules/balanced-match/LICENSE.md
+lib/node_modules/npm/node_modules/balanced-match/README.md
+lib/node_modules/npm/node_modules/balanced-match/index.js
+lib/node_modules/npm/node_modules/balanced-match/package.json
+lib/node_modules/npm/node_modules/bcrypt-pbkdf/CONTRIBUTING.md
+lib/node_modules/npm/node_modules/bcrypt-pbkdf/LICENSE
+lib/node_modules/npm/node_modules/bcrypt-pbkdf/README.md
+lib/node_modules/npm/node_modules/bcrypt-pbkdf/index.js
+lib/node_modules/npm/node_modules/bcrypt-pbkdf/package.json
 lib/node_modules/npm/node_modules/bin-links/CHANGELOG.md
 lib/node_modules/npm/node_modules/bin-links/LICENSE
 lib/node_modules/npm/node_modules/bin-links/README.md
 lib/node_modules/npm/node_modules/bin-links/index.js
 lib/node_modules/npm/node_modules/bin-links/package.json
+lib/node_modules/npm/node_modules/block-stream/LICENCE
+lib/node_modules/npm/node_modules/block-stream/LICENSE
+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/bluebird/LICENSE
 lib/node_modules/npm/node_modules/bluebird/README.md
 lib/node_modules/npm/node_modules/bluebird/changelog.md
@@ -617,6 +697,44 @@
 lib/node_modules/npm/node_modules/bluebird/js/release/using.js
 lib/node_modules/npm/node_modules/bluebird/js/release/util.js
 lib/node_modules/npm/node_modules/bluebird/package.json
+lib/node_modules/npm/node_modules/boom/.npmignore
+lib/node_modules/npm/node_modules/boom/.travis.yml
+lib/node_modules/npm/node_modules/boom/CONTRIBUTING.md
+lib/node_modules/npm/node_modules/boom/LICENSE
+lib/node_modules/npm/node_modules/boom/README.md
+lib/node_modules/npm/node_modules/boom/images/boom.png
+lib/node_modules/npm/node_modules/boom/lib/index.js
+lib/node_modules/npm/node_modules/boom/package.json
+lib/node_modules/npm/node_modules/boom/test/index.js
+lib/node_modules/npm/node_modules/boxen/index.js
+lib/node_modules/npm/node_modules/boxen/license
+lib/node_modules/npm/node_modules/boxen/package.json
+lib/node_modules/npm/node_modules/boxen/readme.md
+lib/node_modules/npm/node_modules/brace-expansion/LICENSE
+lib/node_modules/npm/node_modules/brace-expansion/README.md
+lib/node_modules/npm/node_modules/brace-expansion/index.js
+lib/node_modules/npm/node_modules/brace-expansion/package.json
+lib/node_modules/npm/node_modules/buffer-from/index.js
+lib/node_modules/npm/node_modules/buffer-from/package.json
+lib/node_modules/npm/node_modules/buffer-from/readme.md
+lib/node_modules/npm/node_modules/buffer-from/test.js
+lib/node_modules/npm/node_modules/builtin-modules/builtin-modules.json
+lib/node_modules/npm/node_modules/builtin-modules/index.js
+lib/node_modules/npm/node_modules/builtin-modules/license
+lib/node_modules/npm/node_modules/builtin-modules/package.json
+lib/node_modules/npm/node_modules/builtin-modules/readme.md
+lib/node_modules/npm/node_modules/builtin-modules/static.js
+lib/node_modules/npm/node_modules/builtins/.travis.yml
+lib/node_modules/npm/node_modules/builtins/History.md
+lib/node_modules/npm/node_modules/builtins/License
+lib/node_modules/npm/node_modules/builtins/Readme.md
+lib/node_modules/npm/node_modules/builtins/builtins.json



Home | Main Index | Thread Index | Old Index