![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/n/versions/node/14.15.4/lib/node_modules/npm/docs/content/cli-commands/ |
Upload File : |
--- section: cli-commands title: npm-fund description: Retrieve funding information --- # npm-fund(1) ## Retrieve funding information ### Synopsis ```bash npm fund [<pkg>] ``` ### Description This command retrieves information on how to fund the dependencies of a given project. If no package name is provided, it will list all dependencies that are looking for funding in a tree-structure in which are listed the type of funding and the url to visit. If a package name is provided then it tries to open its funding url using the `--browser` config param; if there are multiple funding sources for the package, the user will be instructed to pass the `--which` command to disambiguate. The list will avoid duplicated entries and will stack all packages that share the same type/url as a single entry. Given this nature the list is not going to have the same shape of the output from `npm ls`. ### Configuration #### browser * Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"` * Type: String The browser that is called by the `npm fund` command to open websites. #### json * Type: Boolean * Default: false Show information in JSON format. #### unicode * Type: Boolean * Default: true Whether to represent the tree structure using unicode characters. Set it to `false` in order to use all-ansi output. #### which * Type: Number * Default: undefined If there are multiple funding sources, which 1-indexed source URL to open. ## See Also * [npm docs](/cli-commands/npm-docs) * [npm config](/cli-commands/npm-config) * [npm install](/cli-commands/npm-install) * [npm ls](/cli-commands/npm-ls)