gitextract_3mab732j/ ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── alameda.js ├── bower.json ├── copyrequirejstests.sh ├── package.json ├── shrinktest.sh └── tests/ ├── all.js ├── circular/ │ ├── 414/ │ │ ├── 414.html │ │ └── 414.js │ ├── circular.html │ └── transpiler/ │ ├── transpiler.html │ └── transpiler.js ├── context/ │ └── context.html ├── dataMainBaseUrl/ │ ├── dataMainBaseUrl.html │ └── js/ │ └── sub/ │ ├── main.js │ └── other.js ├── defineDouble/ │ └── defineDouble.html ├── doh/ │ ├── LICENSE │ ├── README │ ├── _browserRunner.js │ ├── _nodeRunner.js │ ├── _rhinoRunner.js │ ├── _sounds/ │ │ └── LICENSE │ ├── runner.html │ ├── runner.js │ └── runner.sh ├── emptyRequire/ │ └── emptyRequire.html ├── errback/ │ └── errback.html ├── hasOwnProperty/ │ └── hasOwnProperty.html ├── index.html ├── insertRequire/ │ └── insertRequire.html ├── mapConfig/ │ ├── mapConfig.html │ ├── mapConfig.js │ ├── mapConfigPlugin.html │ ├── mapConfigPlugin.js │ ├── mapConfigSpecificity.html │ ├── mapConfigSpecificity.js │ ├── mapConfigStar.html │ ├── mapConfigStar.js │ ├── mapConfigStarAdapter.html │ └── mapConfigStarAdapter.js ├── moduleConfig/ │ ├── moduleConfig.html │ └── moduleConfig.js ├── onNodeCreated/ │ ├── a.js │ ├── b.js │ └── onNodeCreated.html ├── plugins/ │ ├── coffee.html │ ├── coffee.js │ ├── pluginMapSameName/ │ │ ├── pluginMapSameName.html │ │ └── pluginMapSameName.js │ ├── plugins.html │ ├── plugins.js │ ├── pluginsConfig/ │ │ ├── pluginsConfig.html │ │ └── pluginsConfig.js │ ├── text.html │ └── text.js ├── preserveDeps/ │ └── preserveDeps.html ├── promiseRequire/ │ ├── app.js │ ├── bar.js │ └── promiseRequire.html ├── relativePaths/ │ └── relativePaths.html ├── runner.js ├── server.js ├── shim/ │ ├── shim.html │ └── shim.js ├── simple.html ├── simple.js ├── specialDeps/ │ ├── specialDeps-tests.js │ └── specialDeps.html └── timeoutErrors/ └── timeoutErrors.html