├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── rejoice ├── lib └── index.js ├── package.json └── test ├── example └── preRegister.js ├── index.js ├── plugins ├── --loaded │ ├── lib │ │ └── index.js │ └── package.json └── --options │ ├── lib │ └── index.js │ └── package.json └── rejoice.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/README.md -------------------------------------------------------------------------------- /bin/rejoice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/bin/rejoice -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/package.json -------------------------------------------------------------------------------- /test/example/preRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/example/preRegister.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/index.js -------------------------------------------------------------------------------- /test/plugins/--loaded/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/plugins/--loaded/lib/index.js -------------------------------------------------------------------------------- /test/plugins/--loaded/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/plugins/--loaded/package.json -------------------------------------------------------------------------------- /test/plugins/--options/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/plugins/--options/lib/index.js -------------------------------------------------------------------------------- /test/plugins/--options/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/plugins/--options/package.json -------------------------------------------------------------------------------- /test/rejoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/rejoice/HEAD/test/rejoice.js --------------------------------------------------------------------------------