{"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"dist-tags":{"latest":"1.2.0"},"author":{"name":"Peter Bakondy"},"description":"Cordova Plugin for Speech Recognition","readme":"# cordova-plugin-speechrecognition\n\n[![npm](https://img.shields.io/npm/v/cordova-plugin-speechrecognition.svg)](https://www.npmjs.com/package/cordova-plugin-speechrecognition)\n![Platform](https://img.shields.io/badge/platform-android%20%7C%20ios-lightgrey.svg)\n[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=R7STJ6V2PNEMA)\n\nThis is a cordova plugin for Speech Recognition.\n\n\n## Installation\n\n```\ncordova plugin add cordova-plugin-speechrecognition\n```\n\n## Supported Platforms\n\n- Android\n- iOS\n\n## Usage\n\nThis plugin requires internet connection.\n\n### isRecognitionAvailable()\n\n```js\nwindow.plugins.speechRecognition.isRecognitionAvailable(\n  Function successCallback, Function errorCallback)\n```\n\nResult of success callback is a `Boolean`.\n\n### startListening()\n\n```js\n\nlet options = {\n  String language,\n  Number matches,\n  String prompt,      // Android only\n  Boolean showPopup,  // Android only\n  Boolean showPartial \n}\n\nwindow.plugins.speechRecognition.startListening(\n  Function successCallback, Function errorCallback, Object options)\n```\n\nThis method has an options parameter with the following optional values:\n\n- `language` {String} used language for recognition (default `\"en-US\"`)\n- `matches` {Number} number of return matches (default `5`, on iOS: maximum number of matches)\n- `prompt` {String} displayed prompt of listener popup window (default `\"\"`, Android only)\n- `showPopup` {Boolean} display listener popup window with prompt (default `true`, Android only)\n- `showPartial` {Boolean} Allow partial results to be returned (default `false`)\n\nResult of success callback is an `Array` of recognized terms.\n\nThere is a difference between Android and iOS platforms. On Android speech recognition stops when the speaker finishes speaking (at end of sentence). On iOS the user has to stop manually the recognition process by calling stopListening() method.\n\nIf you set `showPartial` to `true` on iOS the success callback will be called multiple times until `stopListening()` called.\n\n### stopListening()\n\n```js\nwindow.plugins.speechRecognition.stopListening(\n  Function successCallback, Function errorCallback)\n```\n\nStop the recognition process. No return value.\n\n### getSupportedLanguages()\n\n```js\nwindow.plugins.speechRecognition.getSupportedLanguages(\n  Function successCallback, Function errorCallback)\n```\n\nResult of success callback is an `Array` of supported languages.\n\n```js\n// getSupportedLanguages result on Android:\n\nlet supportedLanguagesAndroid =\n  [\"af-ZA\", \"id-ID\", \"ms-MY\", \"ca-ES\", \"cs-CZ\", \"da-DK\", \"de-DE\", \"en-AU\", \"en-CA\",\n  \"en-001\", \"en-IN\", \"en-IE\", \"en-NZ\", \"en-PH\", \"en-ZA\", \"en-GB\", \"en-US\", \"es-AR\",\n  \"es-BO\", \"es-CL\", \"es-CO\", \"es-CR\", \"es-EC\", \"es-US\", \"es-SV\", \"es-ES\", \"es-GT\",\n  \"es-HN\", \"es-MX\", \"es-NI\", \"es-PA\", \"es-PY\", \"es-PE\", \"es-PR\", \"es-DO\", \"es-UY\",\n  \"es-VE\", \"eu-ES\", \"fil-PH\", \"fr-FR\", \"gl-ES\", \"hr-HR\", \"zu-ZA\", \"is-IS\", \"it-IT\",\n  \"lt-LT\", \"hu-HU\", \"nl-NL\", \"nb-NO\", \"pl-PL\", \"pt-BR\", \"pt-PT\", \"ro-RO\", \"sl-SI\",\n  \"sk-SK\", \"fi-FI\", \"sv-SE\", \"vi-VN\", \"tr-TR\", \"el-GR\", \"bg-BG\", \"ru-RU\", \"sr-RS\",\n  \"uk-UA\", \"he-IL\", \"ar-IL\", \"ar-JO\", \"ar-AE\", \"ar-BH\", \"ar-DZ\", \"ar-SA\", \"ar-KW\",\n  \"ar-MA\", \"ar-TN\", \"ar-OM\", \"ar-PS\", \"ar-QA\", \"ar-LB\", \"ar-EG\", \"fa-IR\", \"hi-IN\",\n  \"th-TH\", \"ko-KR\", \"cmn-Hans-CN\", \"cmn-Hans-HK\", \"cmn-Hant-TW\", \"yue-Hant-HK\",\n  \"ja-JP\"];\n\n\n// getSupportedLanguages result on iOS:\n\nlet supportedLanguagesIOS =\n  [\"nl-NL\",\"es-MX\",\"zh-TW\",\"fr-FR\",\"it-IT\",\"vi-VN\",\"en-ZA\",\"ca-ES\",\"es-CL\",\"ko-KR\",\n  \"ro-RO\",\"fr-CH\",\"en-PH\",\"en-CA\",\"en-SG\",\"en-IN\",\"en-NZ\",\"it-CH\",\"fr-CA\",\"da-DK\",\n  \"de-AT\",\"pt-BR\",\"yue-CN\",\"zh-CN\",\"sv-SE\",\"es-ES\",\"ar-SA\",\"hu-HU\",\"fr-BE\",\"en-GB\",\n  \"ja-JP\",\"zh-HK\",\"fi-FI\",\"tr-TR\",\"nb-NO\",\"en-ID\",\"en-SA\",\"pl-PL\",\"id-ID\",\"ms-MY\",\n  \"el-GR\",\"cs-CZ\",\"hr-HR\",\"en-AE\",\"he-IL\",\"ru-RU\",\"de-CH\",\"en-AU\",\"de-DE\",\"nl-BE\",\n  \"th-TH\",\"pt-PT\",\"sk-SK\",\"en-US\",\"en-IE\",\"es-CO\",\"uk-UA\",\"es-US\"];\n\n```\n\n### hasPermission()\n\n```js\nwindow.plugins.speechRecognition.hasPermission(\n  Function successCallback, Function errorCallback)\n```\n\nResult of success callback is a `Boolean`.\n\n### requestPermission()\n\n```js\nwindow.plugins.speechRecognition.requestPermission(\n  Function successCallback, Function errorCallback)\n```\n\nThis method requests access permission to system resources if it was not granted before.\n\n\n### Ionic Usage\n\n```typescript\nimport { SpeechRecognition } from '@ionic-native/speech-recognition';\n\nconstructor(private speechRecognition: SpeechRecognition) { }\n\n...\n\n// Check feature available\nSpeechRecognition.isRecognitionAvailable()\n  .then((available: boolean) => console.log(available))\n\n// Start the recognition process\nSpeechRecognition.startListening(options)\n  .subscribe(\n    (matches: Array<string>) => console.log(matches),\n    (onerror) => console.log('error:', onerror)\n  )\n\n// Stop the recognition process (iOS only)\nSpeechRecognition.stopListening()\n\n// Get the list of supported languages\nSpeechRecognition.getSupportedLanguages()\n  .then(\n    (languages: Array<string>) => console.log(languages),\n    (error) => console.log(error)\n  )\n\n// Check permission\nSpeechRecognition.hasPermission()\n  .then((hasPermission: boolean) => console.log(hasPermission))\n\n// Request permissions\nSpeechRecognition.requestPermission()\n  .then(\n    () => console.log('Granted'),\n    () => console.log('Denied')\n  )\n```\n\nRequired: [ionic-native/speech-recognition](https://www.npmjs.com/package/@ionic-native/speech-recognition)\n\nSee [Ionic Native documentation](https://ionicframework.com/docs/native/speech-recognition/).\n\n\n## Android Quirks\n\n### Requirements\n\n- cordova-android v5.0.0\n- Android API level 14\n- `<android:launchMode>` must not be `singleInstance`. It can be `singleTask`, `standard`, `singleTop`.\n- [RECORD_AUDIO](https://developer.android.com/reference/android/Manifest.permission.html#RECORD_AUDIO) permission\n\n### How it works\n\nIt uses [Speech API](https://cloud.google.com/speech/) of Google. The Android public API recognizes when the speech is over and automatically begins the parsing process. The delay of result depends on the network quality.\n\n### Further readings\n\n- https://developer.android.com/reference/android/speech/package-summary.html\n- https://developer.android.com/reference/android/speech/SpeechRecognizer.html\n\n## iOS Quirks\n\n### Requirements\n\n- XCode 8.0 (requires 10.12+ macOS Sierra or 10.11.5+ OS X El Capitan)\n- iOS 10\n- [NSMicrophoneUsageDescription](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW25) permission\n- [NSSpeechRecognitionUsageDescription](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW52) permission\n\n### How it works\n\nThe Speech APIs perform speech recognition by communicating with Apple's servers or using an on-device speech recognizer, if available.\n\nBecause your app may need to connect to the servers to perform recognition, it's essential that you respect the privacy of your users and treat their utterances as sensitive data. For this reason, you must get the user's explicit permission before you initiate speech recognition.\n\nThe plugin works in [AVAudioSessionCategoryPlayAndRecord](https://developer.apple.com/reference/avfoundation/avaudiosessioncategoryplayandrecord) mode to enable playing audio.\n\n\n### Further readings\n\n- https://developer.apple.com/reference/speech?language=objc\n- https://developer.apple.com/reference/speech/sfspeechrecognizer?language=objc\n\n## Author\n\n### Peter Bakondy\n\n- https://github.com/pbakondy\n\n\n## LICENSE\n\n**cordova-plugin-speechrecognition** is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository.\n","repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"users":{"shadowlong":true},"bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"license":"MIT","versions":{"1.0.0":{"name":"cordova-plugin-speechrecognition","version":"1.0.0","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speech-recognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speech-recognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speech-recognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speech-recognition#readme","gitHead":"69fe4e1f2dc512bc8a8651edd70a0919e59de7a6","_id":"cordova-plugin-speechrecognition@1.0.0","scripts":{},"_shasum":"a450e00626de3bd3d1e0c519b10794a77f9863e8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.5.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"a450e00626de3bd3d1e0c519b10794a77f9863e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.0.0.tgz","integrity":"sha512-qVd3O58h5m/gOJBjakiub7vq9y48MYq4MfF+6KJnt9fbCSUM6ZVdgcdlPQCJNLzmK8sXCvMazTefb8CZZpeD/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCE+rizkl+gDdLG9z/e2N+0JULthoGu/9yIOLF/9Ic5YwIgaoWxISqb9UgGHIdJa9vRSQM7aBJr2X7eJYJn22us9xs="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.0.0.tgz_1475166703284_0.19959867699071765"}},"1.0.1":{"name":"cordova-plugin-speechrecognition","version":"1.0.1","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speech-recognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speech-recognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speech-recognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speech-recognition#readme","gitHead":"d1b610ea34267fa916721f12a3d6dd6fde2fd761","_id":"cordova-plugin-speechrecognition@1.0.1","scripts":{},"_shasum":"05c275364c08d18d66d7ccc8b227e52fa439b021","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.5.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"05c275364c08d18d66d7ccc8b227e52fa439b021","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.0.1.tgz","integrity":"sha512-R60orgZYtUvfM6xNLWUhOf6XusoTdTLBY8O5m1MrT7UEfYwQDRvz+owbUJY0Ce46SaTmrB1sln9ne4qQKBItDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCzQHBI8zisYAgASqxE6LZp2PKcml89dKS0A4NF4LyNtAIgEi3fusAmKiKB2hIbtQH/npBvMF2MUbdCYPXj2o5VqXQ="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.0.1.tgz_1475166771078_0.7653534365817904"}},"1.0.2":{"name":"cordova-plugin-speechrecognition","version":"1.0.2","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speech-recognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speech-recognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speech-recognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speech-recognition#readme","gitHead":"98446f8532baabce17d44f84122a6ef522857162","_id":"cordova-plugin-speechrecognition@1.0.2","scripts":{},"_shasum":"15dcfda60e1c882b7655a67fd9c4183041676da1","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.5.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"15dcfda60e1c882b7655a67fd9c4183041676da1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.0.2.tgz","integrity":"sha512-gKV4DS7QD1G93wtWNYkot2H64V8I1dY+9Y4o4pgvL0dr6pIKLcDKY3w7kvn6vfyoIHwOqx7BXu6u3ZE5QEOnQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHSew+XZZQgcRz6GLsjpFEM7dqi5eocQv8x123PWSYGnAiEAgE9OvtwGI59N85uxH6csLyUWxmXoxw0xr2uWJ6zcY20="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.0.2.tgz_1475167725003_0.8982923240400851"}},"1.0.3":{"name":"cordova-plugin-speechrecognition","version":"1.0.3","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"5f2964dbd7b2fc02ca6ea7e3fe426f3858957e28","_id":"cordova-plugin-speechrecognition@1.0.3","scripts":{},"_shasum":"bea9e080a2235e5014f165e0d533936111bc2852","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"bea9e080a2235e5014f165e0d533936111bc2852","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.0.3.tgz","integrity":"sha512-JNhQQL2YaajEAcLxm9LWGifPSV2F44gW5q3U+xF+H3onz0yvPJHcI5S1IBoFAN36ASx/8Tn6HNLhsaWfNbJhtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDode2ZZjzqdDfHjvbdC1UCpHGyT3HdnWhOYV+d8LoL1AiBg61Q0hcPv3tR3dKVKT09E5980iGz5vmyAIxtl4HnydA=="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.0.3.tgz_1476105428438_0.3613024107180536"}},"1.0.4":{"name":"cordova-plugin-speechrecognition","version":"1.0.4","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"ea3dc1f64c3e837270e7dc6896cb59ca8cfa1fbd","_id":"cordova-plugin-speechrecognition@1.0.4","scripts":{},"_shasum":"e86b6b6a2b0fafb10e8d7159f0e4bc3cbfcf7870","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"e86b6b6a2b0fafb10e8d7159f0e4bc3cbfcf7870","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.0.4.tgz","integrity":"sha512-eXMwxZAwdDu5rV5RhfWCkLBP6YyqvjnkdJPygKq7Pt3ftUHeR3AsNpZLUSO3ZLcfRiTrcDk9UmjdDvhIEAYL+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFVokwjAgXu4G/1JGclxYQwfX1IHCy7pb4bTYszSJMfNAiEAh7udTMuwvUdU6Ude6BxZeE4qpHKv8uVluQIVNu4rUyQ="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.0.4.tgz_1477679305969_0.5754003876354545"}},"1.0.5":{"name":"cordova-plugin-speechrecognition","version":"1.0.5","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"556f41d8ebd791417a808065e705a15dfa228120","_id":"cordova-plugin-speechrecognition@1.0.5","scripts":{},"_shasum":"7e0d88bed1428059d4b4a8d24454d495c3edb400","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"7e0d88bed1428059d4b4a8d24454d495c3edb400","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.0.5.tgz","integrity":"sha512-HGu2S76mflHeXlfagAtPmW2FUQtxqoCX8QDUS7k/XaoX0btDtx6/xl5HsfCTU2GxGDY2MdHhYMWPA/vGvx+Kng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICEEsFheZHYK8qcKMfxHerKti71CMa8G4uXT3eIXGpIVAiEAw01wzLscNaD7KDG1JcnxwZyxn6hPSyi4nvdrL7Wzt4o="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.0.5.tgz_1479818256993_0.24485172471031547"}},"1.1.0":{"name":"cordova-plugin-speechrecognition","version":"1.1.0","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"c2aeb0a67a6a45468f404b8f44c01170bf033994","_id":"cordova-plugin-speechrecognition@1.1.0","scripts":{},"_shasum":"8fa0b0a30b31682fdb315b4f59d9a2f215ba2d57","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"8fa0b0a30b31682fdb315b4f59d9a2f215ba2d57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.1.0.tgz","integrity":"sha512-+zBD1uqspzoFMLcYA1x9EKvH85NxCLrLEJlSftV0F6ssXfA2btjS+SQW1NdOw5/WZnZNgWaSYReviJ3mxjBrVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLPlKShIbUrOmfh+7xNCCg0/jHd+gUtNxkLyueDBmRSAIhAJVhf+0VVIJjczczfXTWqxZ8Otgq5nEzcM0+MSejHr/8"}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.1.0.tgz_1479914858270_0.035515569848939776"}},"1.1.1":{"name":"cordova-plugin-speechrecognition","version":"1.1.1","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"a6d2d06d768aee956296aa192a535040bfc1714c","_id":"cordova-plugin-speechrecognition@1.1.1","scripts":{},"_shasum":"4c9944135e3bc19370cdf600b804abd3e05a2e2f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"4c9944135e3bc19370cdf600b804abd3e05a2e2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.1.1.tgz","integrity":"sha512-PYXrkH/eSpfwcY2DZk3p28MEpmeqLkzSLj0mMwpF+0KVaUeuyezZnPht6fYwcj0bbUNH73mbRZL/SfpWP5cQtA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA+ZR0fGHjsKors5KHQ0lXL5L8k1/pIeoFJKFIYxqBhQAiBW67kN2wOdMZcCox2WiFdASejjorm7od8QriN2FE0iPQ=="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.1.1.tgz_1480082736061_0.6983194192871451"}},"1.1.2":{"name":"cordova-plugin-speechrecognition","version":"1.1.2","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"9302a31f7007a0180bd291e52da4130b48661924","_id":"cordova-plugin-speechrecognition@1.1.2","scripts":{},"_shasum":"14503dac334e166a4cc4b87478b8ff72437e54ee","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"14503dac334e166a4cc4b87478b8ff72437e54ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.1.2.tgz","integrity":"sha512-bZnFU/CE2ptAXOGMNd+N9JeapLeiNsUHC64PBaPkcx8BjL+z2gJTtGi/FBrKmrx6/8w2qSqk3J51v3O7JquCsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAY48oZ4UuK2GqXSZ+umGn3Dlq6LtdAcquwdtqr6LXIlAiBY8Xyqlgse157CHknHV4Gu8auzRQ3pyeNvi3SIvv0PxA=="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-speechrecognition-1.1.2.tgz_1487852186657_0.8749005801510066"}},"1.2.0":{"name":"cordova-plugin-speechrecognition","version":"1.2.0","description":"Cordova Plugin for Speech Recognition","cordova":{"id":"cordova-plugin-speechrecognition","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/pbakondy/cordova-plugin-speechrecognition.git"},"keywords":["cordova","speech","recognition","ecosystem:cordova","cordova-android","cordova-ios"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Peter Bakondy"},"license":"MIT","bugs":{"url":"https://github.com/pbakondy/cordova-plugin-speechrecognition/issues"},"homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme","gitHead":"6a1e773da555e25d56acd9c63253415d530af058","_id":"cordova-plugin-speechrecognition@1.2.0","scripts":{},"_shasum":"005f10c896fd9293d8587fe5522a2b642dea970a","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"dev","email":"pbakondy@gmail.com"},"dist":{"shasum":"005f10c896fd9293d8587fe5522a2b642dea970a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-speechrecognition/-/cordova-plugin-speechrecognition-1.2.0.tgz","integrity":"sha512-CJS+Wf4Km2jWUmT/HBMiA4XDSPNzr8NyE4r9tbhFvfEv02O+lq6thDfkZbEMQbVfNuOE5MTUSjmRh0wVZeTT2Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHwmbSV5LnozToA+yE3NS50RI8mtoPT2lrSMl8vhP7+pAiEAw+oWVT1YfgYvrTm8Be6rzLICVWeGwThezKLMK+3eSho="}]},"maintainers":[{"name":"dev","email":"pbakondy@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-speechrecognition-1.2.0.tgz_1511816499593_0.8542067820671946"}}},"name":"cordova-plugin-speechrecognition","time":{"modified":"2022-06-14T00:50:11.194Z","created":"2016-09-29T16:31:44.248Z","1.0.0":"2016-09-29T16:31:44.248Z","1.0.1":"2016-09-29T16:32:52.063Z","1.0.2":"2016-09-29T16:48:46.904Z","1.0.3":"2016-10-10T13:17:09.445Z","1.0.4":"2016-10-28T18:28:27.932Z","1.0.5":"2016-11-22T12:37:39.070Z","1.1.0":"2016-11-23T15:27:40.471Z","1.1.1":"2016-11-25T14:05:38.192Z","1.1.2":"2017-02-23T12:16:27.404Z","1.2.0":"2017-11-27T21:01:41.015Z"},"readmeFilename":"README.md","homepage":"https://github.com/pbakondy/cordova-plugin-speechrecognition#readme"}