├── LICENSE ├── README.md ├── assets ├── brand │ ├── bootstrap-outline.svg │ ├── bootstrap-punchout.svg │ └── bootstrap-solid.svg ├── css │ ├── docs.min.css │ ├── docs.min.css.map │ ├── ie10-viewport-bug-workaround.css │ └── src │ │ ├── docs.css │ │ └── pygments-manni.css ├── flash │ └── ZeroClipboard.swf ├── img │ ├── components.png │ ├── devices.png │ ├── expo-lyft.jpg │ ├── expo-newsweek.jpg │ ├── expo-riot.jpg │ ├── expo-vogue.jpg │ ├── github-banner.png │ └── sass-less.png └── js │ ├── customize.min.js │ ├── docs.min.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ ├── ie8-responsive-file-warning.js │ ├── raw-files.min.js │ ├── src │ ├── application.js │ └── customizer.js │ └── vendor │ ├── Blob.js │ ├── FileSaver.js │ ├── ZeroClipboard.min.js │ ├── anchor.min.js │ ├── autoprefixer.js │ ├── holder.min.js │ ├── jquery.min.js │ ├── jszip.min.js │ ├── less.min.js │ └── uglify.min.js ├── composer.json ├── css ├── basic-format.css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap-theme.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── bootstrap.min.css.map └── introjs.min.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── index.html └── js ├── bootstrap.js ├── bootstrap.min.js ├── clipboard.min.js ├── intent-utterance-generator-web.js ├── intro.min.js └── npm.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/README.md -------------------------------------------------------------------------------- /assets/brand/bootstrap-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/brand/bootstrap-outline.svg -------------------------------------------------------------------------------- /assets/brand/bootstrap-punchout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/brand/bootstrap-punchout.svg -------------------------------------------------------------------------------- /assets/brand/bootstrap-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/brand/bootstrap-solid.svg -------------------------------------------------------------------------------- /assets/css/docs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/css/docs.min.css -------------------------------------------------------------------------------- /assets/css/docs.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/css/docs.min.css.map -------------------------------------------------------------------------------- /assets/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/css/ie10-viewport-bug-workaround.css -------------------------------------------------------------------------------- /assets/css/src/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/css/src/docs.css -------------------------------------------------------------------------------- /assets/css/src/pygments-manni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/css/src/pygments-manni.css -------------------------------------------------------------------------------- /assets/flash/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/flash/ZeroClipboard.swf -------------------------------------------------------------------------------- /assets/img/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/components.png -------------------------------------------------------------------------------- /assets/img/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/devices.png -------------------------------------------------------------------------------- /assets/img/expo-lyft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/expo-lyft.jpg -------------------------------------------------------------------------------- /assets/img/expo-newsweek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/expo-newsweek.jpg -------------------------------------------------------------------------------- /assets/img/expo-riot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/expo-riot.jpg -------------------------------------------------------------------------------- /assets/img/expo-vogue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/expo-vogue.jpg -------------------------------------------------------------------------------- /assets/img/github-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/github-banner.png -------------------------------------------------------------------------------- /assets/img/sass-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/img/sass-less.png -------------------------------------------------------------------------------- /assets/js/customize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/customize.min.js -------------------------------------------------------------------------------- /assets/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/docs.min.js -------------------------------------------------------------------------------- /assets/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /assets/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /assets/js/ie8-responsive-file-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/ie8-responsive-file-warning.js -------------------------------------------------------------------------------- /assets/js/raw-files.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/raw-files.min.js -------------------------------------------------------------------------------- /assets/js/src/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/src/application.js -------------------------------------------------------------------------------- /assets/js/src/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/src/customizer.js -------------------------------------------------------------------------------- /assets/js/vendor/Blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/Blob.js -------------------------------------------------------------------------------- /assets/js/vendor/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/FileSaver.js -------------------------------------------------------------------------------- /assets/js/vendor/ZeroClipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/ZeroClipboard.min.js -------------------------------------------------------------------------------- /assets/js/vendor/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/anchor.min.js -------------------------------------------------------------------------------- /assets/js/vendor/autoprefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/autoprefixer.js -------------------------------------------------------------------------------- /assets/js/vendor/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/holder.min.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /assets/js/vendor/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/jszip.min.js -------------------------------------------------------------------------------- /assets/js/vendor/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/less.min.js -------------------------------------------------------------------------------- /assets/js/vendor/uglify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/assets/js/vendor/uglify.min.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /css/basic-format.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/basic-format.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /css/introjs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/css/introjs.min.css -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/js/clipboard.min.js -------------------------------------------------------------------------------- /js/intent-utterance-generator-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/js/intent-utterance-generator-web.js -------------------------------------------------------------------------------- /js/intro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/js/intro.min.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/Alexa-Utterance-Generator/HEAD/js/npm.js --------------------------------------------------------------------------------