├── .gitignore ├── LICENSE ├── README.md ├── install.sh └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | binaryen 3 | wabt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/webassembly-binary-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/webassembly-binary-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/webassembly-binary-toolkit/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/webassembly-binary-toolkit/HEAD/package.json --------------------------------------------------------------------------------