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.

73 lines
1.4 KiB

  1. npm-config(1) -- Manage the npm configuration files
  2. ===================================================
  3. ## SYNOPSIS
  4. npm config set <key> <value> [-g|--global]
  5. npm config get <key>
  6. npm config delete <key>
  7. npm config list [-l] [--json]
  8. npm config edit
  9. npm get <key>
  10. npm set <key> <value> [-g|--global]
  11. aliases: c
  12. ## DESCRIPTION
  13. npm gets its config settings from the command line, environment
  14. variables, `npmrc` files, and in some cases, the `package.json` file.
  15. See npmrc(5) for more information about the npmrc files.
  16. See `npm-config(7)` for a more thorough discussion of the mechanisms
  17. involved.
  18. The `npm config` command can be used to update and edit the contents
  19. of the user and global npmrc files.
  20. ## Sub-commands
  21. Config supports the following sub-commands:
  22. ### set
  23. npm config set key value
  24. Sets the config key to the value.
  25. If value is omitted, then it sets it to "true".
  26. ### get
  27. npm config get key
  28. Echo the config value to stdout.
  29. ### list
  30. npm config list
  31. Show all the config settings. Use `-l` to also show defaults. Use `--json`
  32. to show the settings in json format.
  33. ### delete
  34. npm config delete key
  35. Deletes the key from all configuration files.
  36. ### edit
  37. npm config edit
  38. Opens the config file in an editor. Use the `--global` flag to edit the
  39. global config.
  40. ## SEE ALSO
  41. * npm-folders(5)
  42. * npm-config(7)
  43. * package.json(5)
  44. * npmrc(5)
  45. * npm(1)