package.json 920 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "npm-run-path",
  3. "version": "6.0.0",
  4. "description": "Get your PATH prepended with locally installed binaries",
  5. "license": "MIT",
  6. "repository": "sindresorhus/npm-run-path",
  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. "type": "module",
  14. "exports": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "npm",
  31. "run",
  32. "path",
  33. "package",
  34. "bin",
  35. "binary",
  36. "binaries",
  37. "script",
  38. "cli",
  39. "command-line",
  40. "execute",
  41. "executable"
  42. ],
  43. "dependencies": {
  44. "path-key": "^4.0.0",
  45. "unicorn-magic": "^0.3.0"
  46. },
  47. "devDependencies": {
  48. "ava": "^6.1.3",
  49. "tsd": "^0.31.1",
  50. "xo": "^0.59.3"
  51. }
  52. }