├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples └── foobar │ ├── README.md │ ├── build.js │ ├── index.html │ ├── node_modules │ ├── browserify │ └── proxyquireify │ ├── package.json │ ├── src │ ├── bar.js │ └── foo.js │ └── test.js ├── index.js ├── lib ├── find-dependencies.js ├── prelude.js ├── replace-prelude.js └── transform.js ├── package.json ├── plugin.js └── test ├── clientside ├── argument-validation.js ├── falsy.js ├── independent-overrides.js ├── manipulating-overrides.js ├── noCallThru.js └── run.js ├── find-dependencies.js ├── fixtures ├── bar.js ├── dependencies.js ├── foo.js ├── stats.js ├── true.js ├── value.js └── var-declaration.js └── watchify-cli.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/README.md -------------------------------------------------------------------------------- /examples/foobar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/README.md -------------------------------------------------------------------------------- /examples/foobar/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/build.js -------------------------------------------------------------------------------- /examples/foobar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/index.html -------------------------------------------------------------------------------- /examples/foobar/node_modules/browserify: -------------------------------------------------------------------------------- 1 | ../../../node_modules/browserify -------------------------------------------------------------------------------- /examples/foobar/node_modules/proxyquireify: -------------------------------------------------------------------------------- 1 | ../../../ -------------------------------------------------------------------------------- /examples/foobar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/package.json -------------------------------------------------------------------------------- /examples/foobar/src/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/src/bar.js -------------------------------------------------------------------------------- /examples/foobar/src/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/src/foo.js -------------------------------------------------------------------------------- /examples/foobar/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/examples/foobar/test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/index.js -------------------------------------------------------------------------------- /lib/find-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/lib/find-dependencies.js -------------------------------------------------------------------------------- /lib/prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/lib/prelude.js -------------------------------------------------------------------------------- /lib/replace-prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/lib/replace-prelude.js -------------------------------------------------------------------------------- /lib/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/lib/transform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/plugin.js -------------------------------------------------------------------------------- /test/clientside/argument-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/clientside/argument-validation.js -------------------------------------------------------------------------------- /test/clientside/falsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/clientside/falsy.js -------------------------------------------------------------------------------- /test/clientside/independent-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/clientside/independent-overrides.js -------------------------------------------------------------------------------- /test/clientside/manipulating-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/clientside/manipulating-overrides.js -------------------------------------------------------------------------------- /test/clientside/noCallThru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/clientside/noCallThru.js -------------------------------------------------------------------------------- /test/clientside/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/clientside/run.js -------------------------------------------------------------------------------- /test/find-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/find-dependencies.js -------------------------------------------------------------------------------- /test/fixtures/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/fixtures/bar.js -------------------------------------------------------------------------------- /test/fixtures/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/fixtures/dependencies.js -------------------------------------------------------------------------------- /test/fixtures/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/fixtures/foo.js -------------------------------------------------------------------------------- /test/fixtures/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/fixtures/stats.js -------------------------------------------------------------------------------- /test/fixtures/true.js: -------------------------------------------------------------------------------- 1 | module.exports = true 2 | -------------------------------------------------------------------------------- /test/fixtures/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./true') 2 | -------------------------------------------------------------------------------- /test/fixtures/var-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/fixtures/var-declaration.js -------------------------------------------------------------------------------- /test/watchify-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/proxyquireify/HEAD/test/watchify-cli.js --------------------------------------------------------------------------------