├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── package.json ├── src ├── card.coffee ├── deck.coffee ├── hand.coffee └── index.coffee ├── test ├── deck_test.coffee ├── hand_test.coffee └── index_test.coffee └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/package.json -------------------------------------------------------------------------------- /src/card.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/src/card.coffee -------------------------------------------------------------------------------- /src/deck.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/src/deck.coffee -------------------------------------------------------------------------------- /src/hand.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/src/hand.coffee -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/src/index.coffee -------------------------------------------------------------------------------- /test/deck_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/test/deck_test.coffee -------------------------------------------------------------------------------- /test/hand_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/test/hand_test.coffee -------------------------------------------------------------------------------- /test/index_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/test/index_test.coffee -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdp/hoyle/HEAD/yarn.lock --------------------------------------------------------------------------------