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.

27 lines
1.1 KiB

  1. npm-shrinkwrap.json(5) -- A publishable lockfile
  2. =====================================================
  3. ## DESCRIPTION
  4. `npm-shrinkwrap.json` is a file created by npm-shrinkwrap(1). It is identical to
  5. `package-lock.json`, with one major caveat: Unlike `package-lock.json`,
  6. `npm-shrinkwrap.json` may be included when publishing a package.
  7. The recommended use-case for `npm-shrinkwrap.json` is applications deployed
  8. through the publishing process on the registry: for example, daemons and
  9. command-line tools intended as global installs or `devDependencies`. It's
  10. strongly discouraged for library authors to publish this file, since that would
  11. prevent end users from having control over transitive dependency updates.
  12. Additionally, if both `package-lock.json` and `npm-shrinkwrap.json` are present
  13. in a package root, `package-lock.json` will be ignored in favor of this file.
  14. For full details and description of the `npm-shrinkwrap.json` file format, refer
  15. to the manual page for package-lock.json(5).
  16. ## SEE ALSO
  17. * npm-shrinkwrap(1)
  18. * package-lock.json(5)
  19. * package.json(5)
  20. * npm-install(1)