├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── README.md ├── flow-typed └── npm │ └── jest_v22.x.x.js ├── package.json ├── src ├── __tests__ │ └── index.spec.js └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /flow-typed/npm/jest_v22.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/flow-typed/npm/jest_v22.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/src/__tests__/index.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entria/yarn-package-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------