expectedmap.json 914 B

12345678910111213141516171819202122232425
  1. {
  2. "./index.js": {
  3. "./dir/a": "./dir/a.js",
  4. "./dir/b": "./dir/b.js",
  5. "./dir/c": "./dir/c.js",
  6. "./dir/dummy": "./dir/dummy.js",
  7. "./dir/test.jsm": "./dir/test.jsm",
  8. "./utils": "./utils/index.js",
  9. "./newmodule": "./newmodule/lib/file.js",
  10. "test-math": "./node_modules/test-math/index.js",
  11. "test-custom-main": "./node_modules/test-custom-main/lib/custom-entry.js",
  12. "test-custom-main-relative": "./node_modules/test-custom-main-relative/lib/custom-entry.js",
  13. "test-default-main": "./node_modules/test-default-main/index.js"
  14. },
  15. "./dir/b.js": {
  16. "test-math": "./node_modules/test-math/index.js"
  17. },
  18. "./dir/c.js": {
  19. "../package.json": "./package.json"
  20. },
  21. "./node_modules/test-math/index.js": {
  22. "test-add": "./node_modules/test-math/node_modules/test-add/index.js",
  23. "test-subtract": "./node_modules/test-math/node_modules/test-subtract/index.js"
  24. }
  25. }