├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json └── src ├── __snapshots__ └── task-easy.spec.js.snap ├── index.d.ts ├── index.js └── task-easy.spec.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | **/*.spec.js 2 | /coverage 3 | /assets 4 | **/__snapshots__ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/task-easy.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/src/__snapshots__/task-easy.spec.js.snap -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/task-easy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmseaton42/task-easy/HEAD/src/task-easy.spec.js --------------------------------------------------------------------------------