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
850 B

  1. {
  2. "name": "pkg-dir",
  3. "version": "2.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. "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. "package",
  23. "json",
  24. "root",
  25. "npm",
  26. "entry",
  27. "find",
  28. "up",
  29. "find-up",
  30. "findup",
  31. "look-up",
  32. "look",
  33. "file",
  34. "search",
  35. "match",
  36. "resolve",
  37. "parent",
  38. "parents",
  39. "folder",
  40. "directory",
  41. "dir",
  42. "walk",
  43. "walking",
  44. "path"
  45. ],
  46. "dependencies": {
  47. "find-up": "^2.1.0"
  48. },
  49. "devDependencies": {
  50. "ava": "*",
  51. "xo": "*"
  52. }
  53. }