├── .merlin ├── .travis.yml ├── Makefile ├── README.md ├── _tags ├── index.html ├── main.ml └── opam /.merlin: -------------------------------------------------------------------------------- 1 | PKG tyxml reactiveData js_of_ocaml 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/_tags -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/index.html -------------------------------------------------------------------------------- /main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/main.ml -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/js-skeleton/HEAD/opam --------------------------------------------------------------------------------