package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "require-in-the-middle",
  3. "version": "5.1.0",
  4. "description": "Module to hook into the Node.js require function",
  5. "main": "index.js",
  6. "dependencies": {
  7. "debug": "^4.1.1",
  8. "module-details-from-path": "^1.0.3",
  9. "resolve": "^1.12.0"
  10. },
  11. "devDependencies": {
  12. "@babel/core": "^7.9.0",
  13. "@babel/preset-env": "^7.9.5",
  14. "@babel/preset-typescript": "^7.9.0",
  15. "@babel/register": "^7.9.0",
  16. "ipp-printer": "^1.0.0",
  17. "patterns": "^1.0.3",
  18. "roundround": "^0.2.0",
  19. "semver": "^6.3.0",
  20. "standard": "^14.3.1",
  21. "tape": "^4.11.0"
  22. },
  23. "scripts": {
  24. "test": "npm run test:lint && npm run test:tape && npm run test:babel",
  25. "test:lint": "standard",
  26. "test:tape": "tape test/*.js",
  27. "test:babel": "node test/babel/babel-register.js"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/elastic/require-in-the-middle.git"
  32. },
  33. "keywords": [
  34. "require",
  35. "hook",
  36. "shim",
  37. "shimmer",
  38. "shimming",
  39. "patch",
  40. "monkey",
  41. "monkeypatch",
  42. "module",
  43. "load"
  44. ],
  45. "author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
  46. "license": "MIT",
  47. "bugs": {
  48. "url": "https://github.com/elastic/require-in-the-middle/issues"
  49. },
  50. "homepage": "https://github.com/elastic/require-in-the-middle#readme",
  51. "coordinates": [
  52. 56.009779,
  53. 11.962099
  54. ]
  55. }