├── .gitignore ├── .npmignore ├── History.md ├── Makefile ├── Readme.md ├── bin └── gify ├── example.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | out.gif 2 | out.mp4 3 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/gify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/bin/gify -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/node-gify/HEAD/package.json --------------------------------------------------------------------------------