package.json 901 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "npm-run-path",
  3. "version": "5.2.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": "./index.js",
  15. "types": "./index.d.ts",
  16. "sideEffects": false,
  17. "engines": {
  18. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  19. },
  20. "scripts": {
  21. "test": "xo && ava && tsd"
  22. },
  23. "files": [
  24. "index.js",
  25. "index.d.ts"
  26. ],
  27. "keywords": [
  28. "npm",
  29. "run",
  30. "path",
  31. "package",
  32. "bin",
  33. "binary",
  34. "binaries",
  35. "script",
  36. "cli",
  37. "command-line",
  38. "execute",
  39. "executable"
  40. ],
  41. "dependencies": {
  42. "path-key": "^4.0.0"
  43. },
  44. "devDependencies": {
  45. "ava": "^3.15.0",
  46. "tsd": "^0.17.0",
  47. "xo": "^0.45.0"
  48. }
  49. }