package.json 796 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "import-fresh",
  3. "version": "3.3.0",
  4. "description": "Import a module while bypassing the cache",
  5. "license": "MIT",
  6. "repository": "sindresorhus/import-fresh",
  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. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd",
  18. "heapdump": "node heapdump.js"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts"
  23. ],
  24. "keywords": [
  25. "require",
  26. "cache",
  27. "uncache",
  28. "uncached",
  29. "module",
  30. "fresh",
  31. "bypass"
  32. ],
  33. "dependencies": {
  34. "parent-module": "^1.0.0",
  35. "resolve-from": "^4.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "^1.0.1",
  39. "heapdump": "^0.3.12",
  40. "tsd": "^0.7.3",
  41. "xo": "^0.23.0"
  42. }
  43. }