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.

25 lines
705 B

  1. # npm install-test(1) -- Install package(s) and run tests
  2. ## SYNOPSIS
  3. npm install-test (with no args, in package dir)
  4. npm install-test [<@scope>/]<name>
  5. npm install-test [<@scope>/]<name>@<tag>
  6. npm install-test [<@scope>/]<name>@<version>
  7. npm install-test [<@scope>/]<name>@<version range>
  8. npm install-test <tarball file>
  9. npm install-test <tarball url>
  10. npm install-test <folder>
  11. alias: npm it
  12. common options: [--save|--save-dev|--save-optional] [--save-exact] [--dry-run]
  13. ## DESCRIPTION
  14. This command runs an `npm install` followed immediately by an `npm test`. It
  15. takes exactly the same arguments as `npm install`.
  16. ## SEE ALSO
  17. - npm-install(1)
  18. - npm-test(1)