├── .babelrc ├── .gitignore ├── .npmignore ├── Dockerfile ├── LICENSE ├── README.md ├── end.png ├── index.js ├── package.json ├── start.png └── thanc.svg /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/.npmignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:9.3.0-alpine 2 | 3 | WORKDIR /opt/app 4 | 5 | CMD ["node", "index.js"] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/README.md -------------------------------------------------------------------------------- /end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/end.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/package.json -------------------------------------------------------------------------------- /start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/start.png -------------------------------------------------------------------------------- /thanc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilk/thanc/HEAD/thanc.svg --------------------------------------------------------------------------------