package.json 940 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "is-installed-globally",
  3. "version": "0.4.0",
  4. "description": "Check if your package was installed globally",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-installed-globally",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "global",
  25. "package",
  26. "globally",
  27. "module",
  28. "install",
  29. "installed",
  30. "npm",
  31. "yarn",
  32. "is",
  33. "check",
  34. "detect",
  35. "local",
  36. "locally",
  37. "cli",
  38. "bin",
  39. "binary"
  40. ],
  41. "dependencies": {
  42. "global-dirs": "^3.0.0",
  43. "is-path-inside": "^3.0.2"
  44. },
  45. "devDependencies": {
  46. "ava": "^2.4.0",
  47. "cpy": "^8.1.1",
  48. "del": "^6.0.0",
  49. "execa": "^5.0.0",
  50. "make-dir": "^3.1.0",
  51. "tsd": "^0.14.0",
  52. "xo": "^0.37.1"
  53. }
  54. }