├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmrc ├── .travis.yml ├── PlainTextWriter.js ├── README.md ├── features.js ├── flow-typed └── npm │ └── jest_v22.x.x.js ├── index.js ├── index.test.js ├── package.json └── xmlutils.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["cellular"] 3 | } 4 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /PlainTextWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/PlainTextWriter.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/README.md -------------------------------------------------------------------------------- /features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/features.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v22.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/flow-typed/npm/jest_v22.x.x.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/package.json -------------------------------------------------------------------------------- /xmlutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cellular/speech-builder/HEAD/xmlutils.js --------------------------------------------------------------------------------