├── .editorconfig ├── .gitignore ├── .npmrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── now.png ├── package.json └── test ├── fixtures └── unicorn.gif └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/index.js -------------------------------------------------------------------------------- /now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/now.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/unicorn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/test/fixtures/unicorn.gif -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaperret/kap-now/HEAD/test/test.js --------------------------------------------------------------------------------