mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 14:21:50 +00:00

Fixes - fix unassigned variable (#1665, #1664) - Fix for $path used by zsh (#1669) - `set -u`: ensure `NVM_USE_OUTPUT` is always set (#1671) - `install.sh`: Fix a bug that block that installation of node in install.sh (#1676) - `nvm install-latest-npm`: fix node 4-4.6 Documentation - Make `nvm cache clear` message less ambiguous (#1644) - Added missing piece (#1658)
43 lines
1.8 KiB
JSON
43 lines
1.8 KiB
JSON
{
|
|
"name": "nvm",
|
|
"version": "0.33.7",
|
|
"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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/creationix/nvm.git"
|
|
},
|
|
"keywords": [
|
|
"nvm",
|
|
"node",
|
|
"iojs",
|
|
"version",
|
|
"manager"
|
|
],
|
|
"author": "Tim Caswell <tim@creationix.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/creationix/nvm/issues"
|
|
},
|
|
"homepage": "https://github.com/creationix/nvm",
|
|
"devDependencies": {
|
|
"replace": "^0.3.0",
|
|
"semver": "^5.0.1",
|
|
"urchin": "^0.0.5",
|
|
"doctoc": "^1.2.0"
|
|
}
|
|
}
|