web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
851 B

  1. {
  2. "name": "find-up",
  3. "version": "4.1.0",
  4. "description": "Find a file or directory by walking up parent directories",
  5. "license": "MIT",
  6. "repository": "sindresorhus/find-up",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "find",
  24. "up",
  25. "find-up",
  26. "findup",
  27. "look-up",
  28. "look",
  29. "file",
  30. "search",
  31. "match",
  32. "package",
  33. "resolve",
  34. "parent",
  35. "parents",
  36. "folder",
  37. "directory",
  38. "walk",
  39. "walking",
  40. "path"
  41. ],
  42. "dependencies": {
  43. "locate-path": "^5.0.0",
  44. "path-exists": "^4.0.0"
  45. },
  46. "devDependencies": {
  47. "ava": "^2.1.0",
  48. "is-path-inside": "^2.1.0",
  49. "tempy": "^0.3.0",
  50. "tsd": "^0.7.3",
  51. "xo": "^0.24.0"
  52. }
  53. }