package.json 832 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "is-installed-globally",
  3. "version": "0.1.0",
  4. "description": "Check if your package was installed globally",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-installed-globally",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "global",
  23. "package",
  24. "globally",
  25. "module",
  26. "install",
  27. "installed",
  28. "npm",
  29. "yarn",
  30. "is",
  31. "check",
  32. "detect",
  33. "local",
  34. "locally",
  35. "cli",
  36. "bin",
  37. "binary"
  38. ],
  39. "dependencies": {
  40. "global-dirs": "^0.1.0",
  41. "is-path-inside": "^1.0.0"
  42. },
  43. "devDependencies": {
  44. "ava": "*",
  45. "execa": "^0.7.0",
  46. "xo": "*"
  47. }
  48. }