package.json 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "pkg-dir",
  3. "version": "7.0.0",
  4. "description": "Find the root directory of a Node.js project or npm package",
  5. "license": "MIT",
  6. "repository": "sindresorhus/pkg-dir",
  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. "engines": {
  16. "node": ">=14.16"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "package",
  27. "json",
  28. "root",
  29. "npm",
  30. "entry",
  31. "find",
  32. "up",
  33. "find-up",
  34. "findup",
  35. "look-up",
  36. "look",
  37. "file",
  38. "search",
  39. "match",
  40. "resolve",
  41. "parent",
  42. "parents",
  43. "folder",
  44. "directory",
  45. "walk",
  46. "walking",
  47. "path"
  48. ],
  49. "dependencies": {
  50. "find-up": "^6.3.0"
  51. },
  52. "devDependencies": {
  53. "ava": "^4.3.1",
  54. "tempy": "^3.0.0",
  55. "tsd": "^0.22.0",
  56. "typescript": "^4.7.4",
  57. "xo": "^0.51.0"
  58. }
  59. }