├── .gitignore ├── .travis.yml ├── README.md ├── appveyor.yml ├── header.html ├── index.js ├── logo.svg ├── netlify.toml ├── package.json └── test ├── cli-test.js └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/appveyor.yml -------------------------------------------------------------------------------- /header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/header.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/index.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/logo.svg -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/package.json -------------------------------------------------------------------------------- /test/cli-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishkny/webgif/HEAD/test/cli-test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 120000 2 | --------------------------------------------------------------------------------