package.json 806 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "read-pkg-up",
  3. "version": "4.0.0",
  4. "description": "Read the closest package.json file",
  5. "license": "MIT",
  6. "repository": "sindresorhus/read-pkg-up",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "json",
  23. "read",
  24. "parse",
  25. "file",
  26. "fs",
  27. "graceful",
  28. "load",
  29. "pkg",
  30. "package",
  31. "find",
  32. "up",
  33. "find-up",
  34. "findup",
  35. "look-up",
  36. "look",
  37. "search",
  38. "match",
  39. "resolve",
  40. "parent",
  41. "parents",
  42. "folder",
  43. "directory",
  44. "dir",
  45. "walk",
  46. "walking",
  47. "path"
  48. ],
  49. "dependencies": {
  50. "find-up": "^3.0.0",
  51. "read-pkg": "^3.0.0"
  52. },
  53. "devDependencies": {
  54. "ava": "*",
  55. "xo": "*"
  56. }
  57. }