Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

111 lines
2.2 KiB

  1. npm-ls(1) -- List installed packages
  2. ======================================
  3. ## SYNOPSIS
  4. npm ls [[<@scope>/]<pkg> ...]
  5. aliases: list, la, ll
  6. ## DESCRIPTION
  7. This command will print to stdout all the versions of packages that are
  8. installed, as well as their dependencies, in a tree-structure.
  9. Positional arguments are `name@version-range` identifiers, which will
  10. limit the results to only the paths to the packages named. Note that
  11. nested packages will *also* show the paths to the specified packages.
  12. For example, running `npm ls promzard` in npm's source tree will show:
  13. npm@@VERSION@ /path/to/npm
  14. └─┬ init-package-json@0.0.4
  15. └── promzard@0.1.5
  16. It will print out extraneous, missing, and invalid packages.
  17. If a project specifies git urls for dependencies these are shown
  18. in parentheses after the name@version to make it easier for users to
  19. recognize potential forks of a project.
  20. The tree shown is the logical dependency tree, based on package
  21. dependencies, not the physical layout of your node_modules folder.
  22. When run as `ll` or `la`, it shows extended information by default.
  23. ## CONFIGURATION
  24. ### json
  25. * Default: false
  26. * Type: Boolean
  27. Show information in JSON format.
  28. ### long
  29. * Default: false
  30. * Type: Boolean
  31. Show extended information.
  32. ### parseable
  33. * Default: false
  34. * Type: Boolean
  35. Show parseable output instead of tree view.
  36. ### global
  37. * Default: false
  38. * Type: Boolean
  39. List packages in the global install prefix instead of in the current
  40. project.
  41. ### depth
  42. * Type: Int
  43. Max display depth of the dependency tree.
  44. ### prod / production
  45. * Type: Boolean
  46. * Default: false
  47. Display only the dependency tree for packages in `dependencies`.
  48. ### dev / development
  49. * Type: Boolean
  50. * Default: false
  51. Display only the dependency tree for packages in `devDependencies`.
  52. ### only
  53. * Type: String
  54. When "dev" or "development", is an alias to `dev`.
  55. When "prod" or "production", is an alias to `production`.
  56. ### link
  57. * Type: Boolean
  58. * Default: false
  59. Display only dependencies which are linked
  60. ## SEE ALSO
  61. * npm-config(1)
  62. * npm-config(7)
  63. * npmrc(5)
  64. * npm-folders(5)
  65. * npm-install(1)
  66. * npm-link(1)
  67. * npm-prune(1)
  68. * npm-outdated(1)
  69. * npm-update(1)