├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── README.md ├── cmudict-0.7b ├── demo └── index.html ├── package.json ├── pronouncing.js ├── test.js └── tests └── test_pronouncing.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/README.md -------------------------------------------------------------------------------- /cmudict-0.7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/cmudict-0.7b -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/demo/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/package.json -------------------------------------------------------------------------------- /pronouncing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/pronouncing.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/test.js -------------------------------------------------------------------------------- /tests/test_pronouncing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/pronouncingjs/HEAD/tests/test_pronouncing.js --------------------------------------------------------------------------------