├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── example ├── example.js ├── output │ ├── example.sgf │ └── simple-example.sgf └── sgf │ ├── example.sgf │ └── simple_example.sgf ├── index.js ├── package.json └── test ├── test-load.js └── test-methods.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/README.md -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/example/example.js -------------------------------------------------------------------------------- /example/output/example.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/example/output/example.sgf -------------------------------------------------------------------------------- /example/output/simple-example.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/example/output/simple-example.sgf -------------------------------------------------------------------------------- /example/sgf/example.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/example/sgf/example.sgf -------------------------------------------------------------------------------- /example/sgf/simple_example.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/example/sgf/simple_example.sgf -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/package.json -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/test/test-load.js -------------------------------------------------------------------------------- /test/test-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neagle/smartgame/HEAD/test/test-methods.js --------------------------------------------------------------------------------