├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── baseswim.js ├── lib └── control.js ├── package.json └── test.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .git 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/README.md -------------------------------------------------------------------------------- /baseswim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/baseswim.js -------------------------------------------------------------------------------- /lib/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/lib/control.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/baseswim/HEAD/test.js --------------------------------------------------------------------------------