10
0

package.json 965 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "import-local",
  3. "version": "3.2.0",
  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. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "bin": {
  14. "import-local-fixture": "fixtures/cli.js"
  15. },
  16. "sideEffects": false,
  17. "engines": {
  18. "node": ">=8"
  19. },
  20. "scripts": {
  21. "test": "xo && ava"
  22. },
  23. "files": [
  24. "index.js",
  25. "index.d.ts",
  26. "fixtures/cli.js"
  27. ],
  28. "keywords": [
  29. "import",
  30. "local",
  31. "require",
  32. "resolve",
  33. "global",
  34. "version",
  35. "prefer",
  36. "cli"
  37. ],
  38. "dependencies": {
  39. "pkg-dir": "^4.2.0",
  40. "resolve-cwd": "^3.0.0"
  41. },
  42. "devDependencies": {
  43. "ava": "2.1.0",
  44. "cpy": "^7.0.1",
  45. "del": "^4.1.1",
  46. "execa": "^2.0.1",
  47. "xo": "^0.24.0"
  48. },
  49. "xo": {
  50. "ignores": [
  51. "fixtures"
  52. ]
  53. }
  54. }