package.json 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "registry-auth-token",
  3. "version": "3.4.0",
  4. "description": "Get the auth token set for an npm registry (if any)",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "posttest": "standard",
  9. "coverage": "istanbul cover _mocha"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git"
  14. },
  15. "keywords": [
  16. "npm",
  17. "conf",
  18. "config",
  19. "npmconf",
  20. "registry",
  21. "auth",
  22. "token",
  23. "authtoken"
  24. ],
  25. "author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/rexxars/registry-auth-token/issues"
  29. },
  30. "homepage": "https://github.com/rexxars/registry-auth-token#readme",
  31. "dependencies": {
  32. "rc": "^1.1.6",
  33. "safe-buffer": "^5.0.1"
  34. },
  35. "devDependencies": {
  36. "istanbul": "^0.4.2",
  37. "mocha": "^3.3.0",
  38. "require-uncached": "^1.0.2",
  39. "standard": "^10.0.2"
  40. },
  41. "standard": {
  42. "ignore": [
  43. "coverage/**"
  44. ]
  45. }
  46. }