You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
2.0 KiB

{
"name": "nvm",
v0.36.0 New Stuff - add `nvm -v` as an alias for `nvm --version` (#2270) - `nvm deactivate`/`nvm which`: add `--silent` - adding default and alias option to `nvm install` (#2274, #1929) - `nvm_supports_xz`: Add Mac/FreeBSD xz platform support checks (#2156) - add `nvm_find_project_dir` helper Fixes: - `latest-npm`: ensure npm 7 is not installed on node < 10 - `nvm_die_on_prefix`: check that the prefix is inside the version dir, not just the nvm dir - `nvm use`: fix `--silent` when version is omitted - ensure `--help` is intercepted on any command (#2277) - `--help`: Add more examples (#2272) - `install`: improved arg parsing around `--reinstall-packages-from` (#1762) - `reinstall-packages`: do not include unmet peer deps (#1948) - `--help`: explain more clearly that <version> parameter is optional and can be provided by .nvmrc on `nvm install`, `nvm use`, `nvm exec`, and `nvm run` (#2242) - [Robustness] add `command` to `xargs`/`rm` in `nvm_get_default_packages` (#2281) - [debug] add `whoami` output - [performance] `nvm_auto`: only call `nvm_ls_current` in `use` mode (#2286) Refactors: - [Refactor] add `nvm_get_checksum_binary`; use it in `nvm debug` - [Refactor] remove unused `nvm_checksum` function - [Refactor] Rename solaris and iojs helper functions to be nvm_ prefixed (#2213) - [Refactor] `nvm run`/`nvm exec`: use `NVM_SILENT` consistently internally (#2279) Dockerfile: - [dockerfile] Add missing apt package `locales` (#2306) - [dockerfile] Remove ShellCheck Segmentation fault workaround (#2305) - [dockerfile] Update ShellCheck download URL in Dockerfile (#2304, #2232) - [dockerfile] Update Dockerfile base image to Ubuntu 16.04, cc #2008 (#2187) Docs: - [readme] fix LTS upgrade command (#2294) - [readme] update autocompletion output examples - [readme] Mention problem with windows cmd echo (#2282) - [readme] Add documentation for LTS updates which reinstall existing packages (#2271) - [readme] Fix fish load_nvm function (#2252) - [readme] Update macOS troubleshooting w/ 10.15 zsh default (#2248) - [readme] Update install instructions troubleshooting (#2225) - [readme] Syntax highlight for Ansible task example in README.md (#2228) - [readme] Update README for environment variables (#2159) - [readme] Stop removing spaces from nvm_path (#2235) - [readme] include deeper integration instructions for fish (#2208) - [patch] Update docs and add warning for 'nvm is not compatible with the npm config "prefix" option' edgecase error on Mac OS (#2263) Tests: - pin postcss to v7 - Source nvm.sh before defining FILE (#2182) Meta Stuff: - fix TOC action - add actions: Automatic Rebase for PRs, auto-update-TOC for push
4 years ago
"version": "0.36.0",
"description": "Node Version Manager - Simple bash script to manage multiple active node.js versions",
"directories": {
"test": "test"
},
"scripts": {
"test": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make test-$shell",
"test/fast": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make TEST_SUITE=fast test-$shell",
"test/slow": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make TEST_SUITE=slow test-$shell",
"test/install_script": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make TEST_SUITE=install_script test-$shell",
"test/installation": "npm run --silent test/installation/node && npm run --silent test/installation/iojs",
"test/installation/node": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make TEST_SUITE=installation_node test-$shell",
"test/installation/iojs": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make TEST_SUITE=installation_iojs test-$shell",
"test/sourcing": "shell=$(basename -- $(ps -o comm= $(ps -o ppid= -p $PPID)) | sed 's/^-//'); make TEST_SUITE=sourcing test-$shell",
"doctoc": "doctoc --title='## Table of Contents' --github README.md",
"eclint": "eclint check $(git ls-tree --name-only HEAD | xargs)",
"dockerfile_lint": "dockerfile_lint"
},
"repository": {
"type": "git",
"url": "git://github.com/nvm-sh/nvm.git"
},
"keywords": [
"nvm",
"node",
"iojs",
"version",
"manager"
],
"author": "Tim Caswell <tim@creationix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nvm-sh/nvm/issues"
},
"homepage": "https://github.com/nvm-sh/nvm",
"devDependencies": {
"dockerfile_lint": "^0.3.2",
"eclint": "^2.6.0",
"replace": "^0.3.0",
10 years ago
"semver": "^5.0.1",
"urchin": "^0.0.5",
"doctoc": "^1.2.0"
}
}