├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE-MIT ├── README.md ├── gulpfile.js ├── guppy.png ├── index.js ├── lib └── get-hook.js ├── package.json └── test └── guppy.tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/gulpfile.js -------------------------------------------------------------------------------- /guppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/guppy.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/index.js -------------------------------------------------------------------------------- /lib/get-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/lib/get-hook.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/package.json -------------------------------------------------------------------------------- /test/guppy.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealklanni/git-guppy/HEAD/test/guppy.tests.js --------------------------------------------------------------------------------