├── .gitignore ├── History.md ├── LICENSE ├── README.md ├── bin └── hookshot ├── lib └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/hookshot/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/hookshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/hookshot/HEAD/README.md -------------------------------------------------------------------------------- /bin/hookshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/hookshot/HEAD/bin/hookshot -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/hookshot/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/hookshot/HEAD/package.json --------------------------------------------------------------------------------