package.json 922 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "read-pkg-up",
  3. "version": "7.0.1",
  4. "description": "Read the closest package.json file",
  5. "license": "MIT",
  6. "repository": "sindresorhus/read-pkg-up",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "json",
  25. "read",
  26. "parse",
  27. "file",
  28. "fs",
  29. "graceful",
  30. "load",
  31. "package",
  32. "find",
  33. "up",
  34. "find-up",
  35. "findup",
  36. "look-up",
  37. "look",
  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": "^4.1.0",
  51. "read-pkg": "^5.2.0",
  52. "type-fest": "^0.8.1"
  53. },
  54. "devDependencies": {
  55. "ava": "^2.4.0",
  56. "tsd": "^0.9.0",
  57. "xo": "^0.25.3"
  58. }
  59. }