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.

51 lines
862 B

  1. {
  2. "name": "import-local",
  3. "version": "3.0.2",
  4. "description": "Let a globally installed package use a locally installed version of itself if available",
  5. "license": "MIT",
  6. "repository": "sindresorhus/import-local",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "bin": {
  13. "import-local-fixture": "fixtures/cli.js"
  14. },
  15. "engines": {
  16. "node": ">=8"
  17. },
  18. "scripts": {
  19. "test": "xo && ava"
  20. },
  21. "files": [
  22. "index.js",
  23. "fixtures/cli.js"
  24. ],
  25. "keywords": [
  26. "import",
  27. "local",
  28. "require",
  29. "resolve",
  30. "global",
  31. "version",
  32. "prefer",
  33. "cli"
  34. ],
  35. "dependencies": {
  36. "pkg-dir": "^4.2.0",
  37. "resolve-cwd": "^3.0.0"
  38. },
  39. "devDependencies": {
  40. "ava": "2.1.0",
  41. "cpy": "^7.0.1",
  42. "del": "^4.1.1",
  43. "execa": "^2.0.1",
  44. "xo": "^0.24.0"
  45. },
  46. "xo": {
  47. "ignores": [
  48. "fixtures"
  49. ]
  50. }
  51. }