json/en-US.json

{
    "install": "Alias: i\nInstall a package\neg: npm install axios\n npm i axios",
    "install -g": "Install a package globally\neg: npm i typescript -g",
    "install -S": "Alias: --save\n(Default)Install a package(write to the dependencies of package.json)\neg: npm i axios [-S]",
    "install -D": "Alias: --save-dev\nInstall a package(write to the devDependencies of package.json)\neg: npm i sass -D",
    "install -h": "Alias: --help \nShow official help -- install",
    "uninstall": "Uninstall a package\neg: npm uninstall axios",
    "uninstall -g": "Uninstall a package globally\neg: npm uninstall typescript -g",
    "uninstall -h": "Alias: --help \nShow official help -- uninstall",
    "update": "Update a package\neg: npm Update typescript",
    "update -h": "Alias: --help \nShow official help -- update",
    "search": "Search for packages\neg: npm search [search terms ...]",
    "search -h": "Alias: --help \nShow official help -- search",
    "init": "Initialize a package.json file\neg: npm init",
    "init -y": "Alias: --yes\nInitialize a package.json file(without confirm)\neg: npm init -y",
    "init -f": "Alias: --force\nForce initialize a package.json file",
    "init -h": "Alias: --help \nShow official help -- init",
    "list": "Alias: ls\nList installed packages",
    "list -g": "List installed packages globally",
    "list -h": "Alias: --help \nShow official help -- list",
    "test": "run this projects tests",
    "test -h": "Alias: --help \nShow official help -- test",
    "cache": "Manipulates packages cache",
    "cache add": "Add packages cache\neg: npm cache add <package-spec>",
    "cache clean": "Clean packages cache\neg: npm cache clean [<key>]",
    "cache ls": "List packages cache\neg: npm cache ls [<name>@<version>]",
    "cache Verify": "Verify package's cache\neg: npm cache verify",
    "cache -h": "Alias: --help \nShow official help -- cache",
    "config": "Alias: c\nManage the npm configuration files",
    "config set": "Set the npm configuration\neg: npm config set <key>=<value> [<key>=<value> ...]",
    "config get": "Get the npm configuration\neg: npm config get [<key> [<key> ...]]",
    "config delete": "Delete the npm configuration\neg: npm config delete <key> [<key> ...]",
    "config list": "List the npm configuration\neg: npm config list [--json]",
    "config edit": "Edit the npm configuration\neg: npm config edit",
    "config fix": "Fix the npm configuration\neg: npm config fix",
    "config -h": "Alias: --help \nShow official help -- config",
    "run": "run the script named <foo>\neg: npm run <foo>",
    "run -h": "Alias: --help \nShow official help -- run",
    "root": "Display npm root",
    "root -h": "Alias: --help \nShow official help -- root",
    "view": "View registry info",
    "view -h": "Alias: --help \nShow official help -- view",
    "outdated": "Check for outdated packages",
    "outdated -h": "Alias: --help \nShow official help -- outdated",
    "-l": "display usage info for all commands",
    "-v": "Alias: --version\nPrint the current version of npm",
    "help": "Show official help",
    "help install": "Show official help -- install",
    "help uninstall": "Show official help -- uninstall",
    "help update": "Show official help -- update",
    "help search": "Show official help -- search",
    "help init": "Show official help -- init",
    "help list": "Show official help -- list",
    "help test": "Show official help --test",
    "help cache": "Show official help -- cache",
    "help config": "Show official help -- config",
    "help run": "Show official help -- run",
    "help root": "Show official help -- root",
    "help view": "Show official help -- view",
    "help outdated": "Show official help -- outdated",
    "npm_info":{
        "warn":"Module Warning(npm-tab-completion): It's no longer maintained and improved!",
        "tip":"You should install and import the PSCompletions module, and run \"psc add npm\" to add npm completion\nFor more information: https://github.com/abgox/PSCompletions"
    }
}