├── .gitignore ├── .travis.yml ├── README.md ├── example ├── config.yml └── index.js ├── images ├── conductor.png └── example.png ├── lib ├── facade-manager.js └── the-conductor.js ├── package.json └── test └── the-conductor-test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/README.md -------------------------------------------------------------------------------- /example/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/example/config.yml -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/example/index.js -------------------------------------------------------------------------------- /images/conductor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/images/conductor.png -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/images/example.png -------------------------------------------------------------------------------- /lib/facade-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/lib/facade-manager.js -------------------------------------------------------------------------------- /lib/the-conductor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/lib/the-conductor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/package.json -------------------------------------------------------------------------------- /test/the-conductor-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odino/the-conductor/HEAD/test/the-conductor-test.js --------------------------------------------------------------------------------