- Babel: For transpiling ES6 code (http://babeljs.io)
- Mocha: Test runner (http://mochajs.org)
- Chai: Assertion Library (http://chaijs.com)
- Sinon: Mocking Library (http://sinonjs.org)
├── package.json
├── dist
│ ├── script.js
├── test
│ ├── mocha
│ │ └── parser_test.js
│ └── test_runner.js
├── src
│ ├── Main.js
│ └── Parser.js