├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── lib └── index.js ├── package.json └── test ├── build.js ├── spec.js └── template ├── dependency.js ├── ignore-me.js └── module.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/package.json -------------------------------------------------------------------------------- /test/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/test/build.js -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/test/spec.js -------------------------------------------------------------------------------- /test/template/dependency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/test/template/dependency.js -------------------------------------------------------------------------------- /test/template/ignore-me.js: -------------------------------------------------------------------------------- 1 | exports = {}; 2 | -------------------------------------------------------------------------------- /test/template/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-like-robots/rewireify/HEAD/test/template/module.js --------------------------------------------------------------------------------