├── .editorconfig ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── adhoc.html ├── adhoc.js ├── bin └── mr ├── bootstrap-node.js ├── bootstrap.js ├── browser.js ├── demo ├── data.js ├── index.html ├── index.js └── package.json ├── docs ├── Config-API.md ├── How-it-works.md ├── Module-API.md ├── Node-compatability.md ├── Package-API.md ├── Require-API.md └── Script-attributes.md ├── karma.conf.js ├── node.js ├── package.json ├── require.js ├── sandbox.js └── test ├── README.md ├── all.js ├── package.json ├── run-browser.js ├── run-karma.html ├── run-karma.js ├── run-node.js ├── run.html └── spec ├── browser-alternative ├── node_modules │ └── shimmy │ │ ├── browser.js │ │ ├── index.js │ │ └── package.json ├── package.json └── program.js ├── browser-alternatives ├── node_modules │ └── shimmy │ │ ├── browser.js │ │ ├── index.js │ │ └── package.json ├── package.json └── program.js ├── case-sensitive ├── a.js ├── package.json └── program.js ├── comments ├── package.json └── program.js ├── cyclic ├── a.js ├── b.js ├── package.json └── program.js ├── determinism ├── package.json ├── program.js └── submodule │ ├── a.js │ └── b.js ├── dev-dependencies ├── node_modules │ └── dev-dependency │ │ ├── dev-dependency.js │ │ └── package.json ├── package.json └── program.js ├── directory-index ├── bar.js ├── foo │ └── index.js ├── package.json └── program.js ├── dot-js-module ├── node_modules │ └── test.js │ │ ├── main.load.js │ │ └── package.json ├── package.json └── program.js ├── exactExports ├── a.js ├── package.json └── program.js ├── extension-loader ├── a.extension │ └── a.js ├── package.json └── program.js ├── flat-module-tree ├── node_modules │ ├── http-server │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── path │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── url │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── path │ │ ├── index.js │ │ └── package.json │ └── url │ │ ├── index.js │ │ └── package.json ├── package.json └── program.js ├── hasOwnProperty ├── identify ├── node_modules │ ├── cyclic │ │ ├── module.js │ │ └── package.json │ └── x │ │ ├── package.json │ │ └── x.js ├── package.json └── program.js ├── inject-dependency ├── node_modules │ └── dependency │ │ ├── module.js │ │ └── package.json ├── package.json └── program.js ├── inject-into-mapping ├── package.json ├── program.js └── somedir │ └── mapping │ ├── module.js │ └── package.json ├── inject-mapping ├── mapping │ ├── module.js │ └── package.json ├── package.json └── program.js ├── inject ├── package.json └── program.js ├── legacy-bundling ├── node_modules │ └── nested │ │ ├── index.js │ │ ├── node_modules │ │ └── child │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json └── program.js ├── load-package-digit ├── 0 │ ├── a.js │ └── package.json ├── package.json └── program.js ├── load-package-name ├── node_modules │ └── a │ │ ├── a.js │ │ └── package.json ├── package.json └── program.js ├── load-package ├── a │ ├── a.js │ └── package.json ├── package.json └── program.js ├── main-name ├── node_modules │ └── dependency │ │ ├── dependency.js │ │ └── package.json ├── package.json └── program.js ├── main ├── node_modules │ ├── dot-js-ext │ │ ├── a.something.js │ │ └── package.json │ ├── dot-slash │ │ ├── a.js │ │ └── package.json │ ├── js-ext │ │ ├── a.js │ │ └── package.json │ └── no-ext │ │ ├── a.js │ │ └── package.json ├── package.json └── program.js ├── method ├── a.js ├── package.json └── program.js ├── missing ├── package.json └── program.js ├── module-error ├── error.js ├── package.json └── program.js ├── module-exports ├── module-exports.js ├── package.json └── program.js ├── module-html ├── package.json ├── program.js └── simple-template.html ├── module-main-default ├── node_modules │ └── sub-module │ │ ├── index.js │ │ └── package.json ├── package.json └── program.js ├── module-metadata ├── node_modules │ └── a │ │ ├── a.js │ │ └── package.json ├── package.json └── program.js ├── module-reel ├── package.json ├── program.js └── test.reel │ └── test.js ├── moduleTypes ├── a │ ├── b.js │ ├── c.json │ ├── five.plus-one │ └── package.json ├── package.json └── program.js ├── monkeys ├── a.js ├── package.json └── program.js ├── named-mappings ├── node_modules │ ├── bar │ │ └── package.json │ └── foo │ │ ├── foo.js │ │ └── package.json ├── package.json └── program.js ├── named-packages ├── node_modules │ ├── bar │ │ └── package.json │ └── foo │ │ ├── foo.js │ │ └── package.json ├── package.json └── program.js ├── named-parent-package ├── node_modules │ └── child-package │ │ ├── child-module.js │ │ └── package.json ├── package.json ├── parent-module.js └── program.js ├── nested ├── a │ └── b │ │ └── c │ │ └── d.js ├── package.json └── program.js ├── not-found ├── package.json └── program.js ├── overlay ├── package.json └── program.js ├── package-lock ├── node_modules │ ├── http-server │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── path │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── url │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ └── url │ │ ├── index.js │ │ ├── node_modules │ │ └── path │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package-lock.json ├── package.json └── program.js ├── production ├── node_modules │ └── dev-dependency │ │ ├── dev-dependency.js │ │ └── package.json ├── package.json └── program.js ├── read ├── package.json └── program.js ├── redirects-package ├── node_modules │ └── foo │ │ ├── barz.js │ │ └── package.json ├── package.json └── program.js ├── redirects ├── barz.js ├── package.json └── program.js ├── relative ├── package.json ├── program.js └── submodule │ ├── a.js │ └── b.js ├── return ├── package.json ├── program.js └── returns.js ├── sandbox ├── a.js ├── b.js ├── node_modules │ └── dependency │ │ ├── c.js │ │ ├── main.js │ │ ├── other.js │ │ └── package.json ├── package.json └── program.js ├── script-injection-dep ├── node_modules │ └── dependency │ │ ├── main.load.js │ │ ├── package.json │ │ └── second.load.js ├── package.json └── program.js ├── script-injection ├── package.json ├── packages │ └── dependency │ │ ├── main.load.js │ │ └── package.json.load.js └── program.js ├── serialization-compiler ├── model.js ├── object.js ├── package.json └── program.js ├── top-level ├── b.js ├── package.json ├── program.js └── submodule │ └── a.js └── transitive ├── a.js ├── b.js ├── c.js ├── package.json └── program.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/README.md -------------------------------------------------------------------------------- /adhoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/adhoc.html -------------------------------------------------------------------------------- /adhoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/adhoc.js -------------------------------------------------------------------------------- /bin/mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/bin/mr -------------------------------------------------------------------------------- /bootstrap-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/bootstrap-node.js -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/bootstrap.js -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/browser.js -------------------------------------------------------------------------------- /demo/data.js: -------------------------------------------------------------------------------- 1 | module.exports = "This text was required from data.js!"; 2 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/demo/package.json -------------------------------------------------------------------------------- /docs/Config-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/Config-API.md -------------------------------------------------------------------------------- /docs/How-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/How-it-works.md -------------------------------------------------------------------------------- /docs/Module-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/Module-API.md -------------------------------------------------------------------------------- /docs/Node-compatability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/Node-compatability.md -------------------------------------------------------------------------------- /docs/Package-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/Package-API.md -------------------------------------------------------------------------------- /docs/Require-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/Require-API.md -------------------------------------------------------------------------------- /docs/Script-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/docs/Script-attributes.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/karma.conf.js -------------------------------------------------------------------------------- /node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/package.json -------------------------------------------------------------------------------- /require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/require.js -------------------------------------------------------------------------------- /sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/sandbox.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/README.md -------------------------------------------------------------------------------- /test/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/all.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/package.json -------------------------------------------------------------------------------- /test/run-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/run-browser.js -------------------------------------------------------------------------------- /test/run-karma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/run-karma.html -------------------------------------------------------------------------------- /test/run-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/run-karma.js -------------------------------------------------------------------------------- /test/run-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/run-node.js -------------------------------------------------------------------------------- /test/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/run.html -------------------------------------------------------------------------------- /test/spec/browser-alternative/node_modules/shimmy/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternative/node_modules/shimmy/browser.js -------------------------------------------------------------------------------- /test/spec/browser-alternative/node_modules/shimmy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternative/node_modules/shimmy/index.js -------------------------------------------------------------------------------- /test/spec/browser-alternative/node_modules/shimmy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternative/node_modules/shimmy/package.json -------------------------------------------------------------------------------- /test/spec/browser-alternative/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternative/package.json -------------------------------------------------------------------------------- /test/spec/browser-alternative/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternative/program.js -------------------------------------------------------------------------------- /test/spec/browser-alternatives/node_modules/shimmy/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternatives/node_modules/shimmy/browser.js -------------------------------------------------------------------------------- /test/spec/browser-alternatives/node_modules/shimmy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternatives/node_modules/shimmy/index.js -------------------------------------------------------------------------------- /test/spec/browser-alternatives/node_modules/shimmy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternatives/node_modules/shimmy/package.json -------------------------------------------------------------------------------- /test/spec/browser-alternatives/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternatives/package.json -------------------------------------------------------------------------------- /test/spec/browser-alternatives/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/browser-alternatives/program.js -------------------------------------------------------------------------------- /test/spec/case-sensitive/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/case-sensitive/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/case-sensitive/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/case-sensitive/program.js -------------------------------------------------------------------------------- /test/spec/comments/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/comments/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/comments/program.js -------------------------------------------------------------------------------- /test/spec/cyclic/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/cyclic/a.js -------------------------------------------------------------------------------- /test/spec/cyclic/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/cyclic/b.js -------------------------------------------------------------------------------- /test/spec/cyclic/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/cyclic/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/cyclic/program.js -------------------------------------------------------------------------------- /test/spec/determinism/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/determinism/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/determinism/program.js -------------------------------------------------------------------------------- /test/spec/determinism/submodule/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/determinism/submodule/a.js -------------------------------------------------------------------------------- /test/spec/determinism/submodule/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/determinism/submodule/b.js -------------------------------------------------------------------------------- /test/spec/dev-dependencies/node_modules/dev-dependency/dev-dependency.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/dev-dependencies/node_modules/dev-dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dev-dependencies/node_modules/dev-dependency/package.json -------------------------------------------------------------------------------- /test/spec/dev-dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dev-dependencies/package.json -------------------------------------------------------------------------------- /test/spec/dev-dependencies/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dev-dependencies/program.js -------------------------------------------------------------------------------- /test/spec/directory-index/bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/directory-index/foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/directory-index/foo/index.js -------------------------------------------------------------------------------- /test/spec/directory-index/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/directory-index/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/directory-index/program.js -------------------------------------------------------------------------------- /test/spec/dot-js-module/node_modules/test.js/main.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dot-js-module/node_modules/test.js/main.load.js -------------------------------------------------------------------------------- /test/spec/dot-js-module/node_modules/test.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dot-js-module/node_modules/test.js/package.json -------------------------------------------------------------------------------- /test/spec/dot-js-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dot-js-module/package.json -------------------------------------------------------------------------------- /test/spec/dot-js-module/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/dot-js-module/program.js -------------------------------------------------------------------------------- /test/spec/exactExports/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/exactExports/a.js -------------------------------------------------------------------------------- /test/spec/exactExports/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/exactExports/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/exactExports/program.js -------------------------------------------------------------------------------- /test/spec/extension-loader/a.extension/a.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/extension-loader/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/extension-loader/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/extension-loader/program.js -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/http-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/node_modules/http-server/index.js -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/http-server/node_modules/path/index.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/http-server/node_modules/path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/node_modules/http-server/node_modules/path/package.json -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/http-server/node_modules/url/index.js: -------------------------------------------------------------------------------- 1 | require("path"); 2 | -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/http-server/node_modules/url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/node_modules/http-server/node_modules/url/package.json -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/http-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/node_modules/http-server/package.json -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/path/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/node_modules/path/package.json -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/url/index.js: -------------------------------------------------------------------------------- 1 | require("path"); 2 | -------------------------------------------------------------------------------- /test/spec/flat-module-tree/node_modules/url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/node_modules/url/package.json -------------------------------------------------------------------------------- /test/spec/flat-module-tree/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/package.json -------------------------------------------------------------------------------- /test/spec/flat-module-tree/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/flat-module-tree/program.js -------------------------------------------------------------------------------- /test/spec/hasOwnProperty/hasOwnProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/hasOwnProperty/hasOwnProperty.js -------------------------------------------------------------------------------- /test/spec/hasOwnProperty/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/hasOwnProperty/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/hasOwnProperty/program.js -------------------------------------------------------------------------------- /test/spec/hasOwnProperty/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/hasOwnProperty/toString.js -------------------------------------------------------------------------------- /test/spec/identify/node_modules/cyclic/module.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/identify/node_modules/cyclic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/identify/node_modules/cyclic/package.json -------------------------------------------------------------------------------- /test/spec/identify/node_modules/x/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "x" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/identify/node_modules/x/x.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/identify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/identify/package.json -------------------------------------------------------------------------------- /test/spec/identify/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/identify/program.js -------------------------------------------------------------------------------- /test/spec/inject-dependency/node_modules/dependency/module.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/inject-dependency/node_modules/dependency/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/inject-dependency/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/inject-dependency/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/inject-dependency/program.js -------------------------------------------------------------------------------- /test/spec/inject-into-mapping/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/inject-into-mapping/package.json -------------------------------------------------------------------------------- /test/spec/inject-into-mapping/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/inject-into-mapping/program.js -------------------------------------------------------------------------------- /test/spec/inject-into-mapping/somedir/mapping/module.js: -------------------------------------------------------------------------------- 1 | module.exports = require("dependency"); // Injected by program 2 | -------------------------------------------------------------------------------- /test/spec/inject-into-mapping/somedir/mapping/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/inject-mapping/mapping/module.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/inject-mapping/mapping/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/inject-mapping/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/inject-mapping/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/inject-mapping/program.js -------------------------------------------------------------------------------- /test/spec/inject/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/inject/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/inject/program.js -------------------------------------------------------------------------------- /test/spec/legacy-bundling/node_modules/nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/legacy-bundling/node_modules/nested/index.js -------------------------------------------------------------------------------- /test/spec/legacy-bundling/node_modules/nested/node_modules/child/index.js: -------------------------------------------------------------------------------- 1 | exports.foo = function () { 2 | return 1; 3 | }; -------------------------------------------------------------------------------- /test/spec/legacy-bundling/node_modules/nested/node_modules/child/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index" 3 | } -------------------------------------------------------------------------------- /test/spec/legacy-bundling/node_modules/nested/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/legacy-bundling/node_modules/nested/package.json -------------------------------------------------------------------------------- /test/spec/legacy-bundling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "nested":"*" 4 | } 5 | } -------------------------------------------------------------------------------- /test/spec/legacy-bundling/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/legacy-bundling/program.js -------------------------------------------------------------------------------- /test/spec/load-package-digit/0/a.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/load-package-digit/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/load-package-digit/0/package.json -------------------------------------------------------------------------------- /test/spec/load-package-digit/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/load-package-digit/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/load-package-digit/program.js -------------------------------------------------------------------------------- /test/spec/load-package-name/node_modules/a/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/load-package-name/node_modules/a/a.js -------------------------------------------------------------------------------- /test/spec/load-package-name/node_modules/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "a.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/load-package-name/package.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /test/spec/load-package-name/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/load-package-name/program.js -------------------------------------------------------------------------------- /test/spec/load-package/a/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/load-package/a/a.js -------------------------------------------------------------------------------- /test/spec/load-package/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "a.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/load-package/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/load-package/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/load-package/program.js -------------------------------------------------------------------------------- /test/spec/main-name/node_modules/dependency/dependency.js: -------------------------------------------------------------------------------- 1 | module.exports = true; 2 | -------------------------------------------------------------------------------- /test/spec/main-name/node_modules/dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/main-name/node_modules/dependency/package.json -------------------------------------------------------------------------------- /test/spec/main-name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/main-name/package.json -------------------------------------------------------------------------------- /test/spec/main-name/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/main-name/program.js -------------------------------------------------------------------------------- /test/spec/main/node_modules/dot-js-ext/a.something.js: -------------------------------------------------------------------------------- 1 | module.exports = 40; 2 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/dot-js-ext/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "a.something.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/dot-slash/a.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/dot-slash/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./a.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/js-ext/a.js: -------------------------------------------------------------------------------- 1 | module.exports = 20; 2 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/js-ext/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "a.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/no-ext/a.js: -------------------------------------------------------------------------------- 1 | module.exports = 30; 2 | -------------------------------------------------------------------------------- /test/spec/main/node_modules/no-ext/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "a" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/main/package.json -------------------------------------------------------------------------------- /test/spec/main/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/main/program.js -------------------------------------------------------------------------------- /test/spec/method/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/method/a.js -------------------------------------------------------------------------------- /test/spec/method/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/method/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/method/program.js -------------------------------------------------------------------------------- /test/spec/missing/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/missing/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/missing/program.js -------------------------------------------------------------------------------- /test/spec/module-error/error.js: -------------------------------------------------------------------------------- 1 | throw new Error("whoops"); 2 | -------------------------------------------------------------------------------- /test/spec/module-error/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/module-error/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-error/program.js -------------------------------------------------------------------------------- /test/spec/module-exports/module-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-exports/module-exports.js -------------------------------------------------------------------------------- /test/spec/module-exports/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/module-exports/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-exports/program.js -------------------------------------------------------------------------------- /test/spec/module-html/package.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/spec/module-html/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-html/program.js -------------------------------------------------------------------------------- /test/spec/module-html/simple-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-html/simple-template.html -------------------------------------------------------------------------------- /test/spec/module-main-default/node_modules/sub-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-main-default/node_modules/sub-module/index.js -------------------------------------------------------------------------------- /test/spec/module-main-default/node_modules/sub-module/package.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/spec/module-main-default/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "sub-module": "*" 4 | } 5 | } -------------------------------------------------------------------------------- /test/spec/module-main-default/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-main-default/program.js -------------------------------------------------------------------------------- /test/spec/module-metadata/node_modules/a/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-metadata/node_modules/a/a.js -------------------------------------------------------------------------------- /test/spec/module-metadata/node_modules/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "a" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/module-metadata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "a": "*" 4 | } 5 | } -------------------------------------------------------------------------------- /test/spec/module-metadata/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-metadata/program.js -------------------------------------------------------------------------------- /test/spec/module-reel/package.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/spec/module-reel/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/module-reel/program.js -------------------------------------------------------------------------------- /test/spec/module-reel/test.reel/test.js: -------------------------------------------------------------------------------- 1 | exports.Hello = "World"; -------------------------------------------------------------------------------- /test/spec/moduleTypes/a/b.js: -------------------------------------------------------------------------------- 1 | module.exports = "pass" 2 | -------------------------------------------------------------------------------- /test/spec/moduleTypes/a/c.json: -------------------------------------------------------------------------------- 1 | { 2 | "pass": true 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/moduleTypes/a/five.plus-one: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/spec/moduleTypes/a/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/moduleTypes/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/moduleTypes/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/moduleTypes/program.js -------------------------------------------------------------------------------- /test/spec/monkeys/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/monkeys/a.js -------------------------------------------------------------------------------- /test/spec/monkeys/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/monkeys/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/monkeys/program.js -------------------------------------------------------------------------------- /test/spec/named-mappings/node_modules/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-mappings/node_modules/bar/package.json -------------------------------------------------------------------------------- /test/spec/named-mappings/node_modules/foo/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-mappings/node_modules/foo/foo.js -------------------------------------------------------------------------------- /test/spec/named-mappings/node_modules/foo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "foo.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/named-mappings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-mappings/package.json -------------------------------------------------------------------------------- /test/spec/named-mappings/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-mappings/program.js -------------------------------------------------------------------------------- /test/spec/named-packages/node_modules/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-packages/node_modules/bar/package.json -------------------------------------------------------------------------------- /test/spec/named-packages/node_modules/foo/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-packages/node_modules/foo/foo.js -------------------------------------------------------------------------------- /test/spec/named-packages/node_modules/foo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "foo.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/spec/named-packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-packages/package.json -------------------------------------------------------------------------------- /test/spec/named-packages/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-packages/program.js -------------------------------------------------------------------------------- /test/spec/named-parent-package/node_modules/child-package/child-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-parent-package/node_modules/child-package/child-module.js -------------------------------------------------------------------------------- /test/spec/named-parent-package/node_modules/child-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-parent-package/node_modules/child-package/package.json -------------------------------------------------------------------------------- /test/spec/named-parent-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-parent-package/package.json -------------------------------------------------------------------------------- /test/spec/named-parent-package/parent-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-parent-package/parent-module.js -------------------------------------------------------------------------------- /test/spec/named-parent-package/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/named-parent-package/program.js -------------------------------------------------------------------------------- /test/spec/nested/a/b/c/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/nested/a/b/c/d.js -------------------------------------------------------------------------------- /test/spec/nested/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/nested/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/nested/program.js -------------------------------------------------------------------------------- /test/spec/not-found/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/not-found/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/not-found/program.js -------------------------------------------------------------------------------- /test/spec/overlay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/overlay/package.json -------------------------------------------------------------------------------- /test/spec/overlay/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/overlay/program.js -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/http-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/node_modules/http-server/index.js -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/http-server/node_modules/path/index.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/http-server/node_modules/path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/node_modules/http-server/node_modules/path/package.json -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/http-server/node_modules/url/index.js: -------------------------------------------------------------------------------- 1 | require("path"); 2 | -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/http-server/node_modules/url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/node_modules/http-server/node_modules/url/package.json -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/http-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/node_modules/http-server/package.json -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/url/index.js: -------------------------------------------------------------------------------- 1 | require("path"); 2 | -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/url/node_modules/path/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/url/node_modules/path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/node_modules/url/node_modules/path/package.json -------------------------------------------------------------------------------- /test/spec/package-lock/node_modules/url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/node_modules/url/package.json -------------------------------------------------------------------------------- /test/spec/package-lock/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/package-lock.json -------------------------------------------------------------------------------- /test/spec/package-lock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/package.json -------------------------------------------------------------------------------- /test/spec/package-lock/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/package-lock/program.js -------------------------------------------------------------------------------- /test/spec/production/node_modules/dev-dependency/dev-dependency.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /test/spec/production/node_modules/dev-dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/production/node_modules/dev-dependency/package.json -------------------------------------------------------------------------------- /test/spec/production/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/production/package.json -------------------------------------------------------------------------------- /test/spec/production/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/production/program.js -------------------------------------------------------------------------------- /test/spec/read/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/read/package.json -------------------------------------------------------------------------------- /test/spec/read/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/read/program.js -------------------------------------------------------------------------------- /test/spec/redirects-package/node_modules/foo/barz.js: -------------------------------------------------------------------------------- 1 | exports.foo = function() { 2 | return 1; 3 | } -------------------------------------------------------------------------------- /test/spec/redirects-package/node_modules/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/redirects-package/node_modules/foo/package.json -------------------------------------------------------------------------------- /test/spec/redirects-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/redirects-package/package.json -------------------------------------------------------------------------------- /test/spec/redirects-package/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/redirects-package/program.js -------------------------------------------------------------------------------- /test/spec/redirects/barz.js: -------------------------------------------------------------------------------- 1 | exports.foo = function() { 2 | return 1; 3 | } -------------------------------------------------------------------------------- /test/spec/redirects/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/redirects/package.json -------------------------------------------------------------------------------- /test/spec/redirects/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/redirects/program.js -------------------------------------------------------------------------------- /test/spec/relative/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/relative/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/relative/program.js -------------------------------------------------------------------------------- /test/spec/relative/submodule/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/relative/submodule/a.js -------------------------------------------------------------------------------- /test/spec/relative/submodule/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/relative/submodule/b.js -------------------------------------------------------------------------------- /test/spec/return/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/return/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/return/program.js -------------------------------------------------------------------------------- /test/spec/return/returns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/return/returns.js -------------------------------------------------------------------------------- /test/spec/sandbox/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/sandbox/a.js -------------------------------------------------------------------------------- /test/spec/sandbox/b.js: -------------------------------------------------------------------------------- 1 | module.exports = "original"; 2 | -------------------------------------------------------------------------------- /test/spec/sandbox/node_modules/dependency/c.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /test/spec/sandbox/node_modules/dependency/main.js: -------------------------------------------------------------------------------- 1 | module.exports = require("other"); 2 | -------------------------------------------------------------------------------- /test/spec/sandbox/node_modules/dependency/other.js: -------------------------------------------------------------------------------- 1 | module.exports = "other"; 2 | -------------------------------------------------------------------------------- /test/spec/sandbox/node_modules/dependency/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/sandbox/package.json -------------------------------------------------------------------------------- /test/spec/sandbox/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/sandbox/program.js -------------------------------------------------------------------------------- /test/spec/script-injection-dep/node_modules/dependency/main.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection-dep/node_modules/dependency/main.load.js -------------------------------------------------------------------------------- /test/spec/script-injection-dep/node_modules/dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection-dep/node_modules/dependency/package.json -------------------------------------------------------------------------------- /test/spec/script-injection-dep/node_modules/dependency/second.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection-dep/node_modules/dependency/second.load.js -------------------------------------------------------------------------------- /test/spec/script-injection-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection-dep/package.json -------------------------------------------------------------------------------- /test/spec/script-injection-dep/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection-dep/program.js -------------------------------------------------------------------------------- /test/spec/script-injection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection/package.json -------------------------------------------------------------------------------- /test/spec/script-injection/packages/dependency/main.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection/packages/dependency/main.load.js -------------------------------------------------------------------------------- /test/spec/script-injection/packages/dependency/package.json.load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection/packages/dependency/package.json.load.js -------------------------------------------------------------------------------- /test/spec/script-injection/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/script-injection/program.js -------------------------------------------------------------------------------- /test/spec/serialization-compiler/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/serialization-compiler/model.js -------------------------------------------------------------------------------- /test/spec/serialization-compiler/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/serialization-compiler/object.js -------------------------------------------------------------------------------- /test/spec/serialization-compiler/package.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/spec/serialization-compiler/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/serialization-compiler/program.js -------------------------------------------------------------------------------- /test/spec/top-level/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/top-level/b.js -------------------------------------------------------------------------------- /test/spec/top-level/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/top-level/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/top-level/program.js -------------------------------------------------------------------------------- /test/spec/top-level/submodule/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/top-level/submodule/a.js -------------------------------------------------------------------------------- /test/spec/transitive/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/transitive/a.js -------------------------------------------------------------------------------- /test/spec/transitive/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/transitive/b.js -------------------------------------------------------------------------------- /test/spec/transitive/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/transitive/c.js -------------------------------------------------------------------------------- /test/spec/transitive/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/spec/transitive/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/montagejs/mr/HEAD/test/spec/transitive/program.js --------------------------------------------------------------------------------