package.json 786 B

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