{"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"keywords":["angular"],"dist-tags":{"latest":"1.6.2-alpha","fix-to-38":"1.4.0-fix-to-38","beta":"1.5.1-beta","alpha":"1.5.4-alpha","rc0":"1.6.0-alpha"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","readme":"# Ionic2-auto-complete\n\nThis is a component based on Ionic's search-bar component, with the addition of auto-complete abillity.\nThis component is super simple and light-weight. Just provide the data, and let the fun begin.\n\nThis is a **free software** please feel free to contribute! :)\n\n![](example.gif)\n\n### Angular 5.0 Support\n\nSince Angular 5.0 was out, a several issues occured. \nThanks to @CoreyCole, most of them are gone now :)\n\nIf you encounter another issues regrading Angular 5, pleae file an issue!\n\nFor more info: https://github.com/kadoshms/ionic2-autocomplete/issues/128\n\n### Installation\n```\n$ npm install ionic2-auto-complete --save\n```\n\n#### Usage guide\n\nOpen `app.module.ts` and add the following import statetment:\n\n``\nimport { AutoCompleteModule } from 'ionic2-auto-complete';\n``\n\nThen, add the `AutoCompleteModule` to the `imports` array:\n\n```\n@NgModule({\n  declarations: [\n    MyApp,\n    HomePage,\n    TabsPage,\n    MyItem\n  ],\n  imports: [\n    BrowserModule,\n    AutoCompleteModule,\n    FormsModule,\n    HttpModule,\n    IonicModule.forRoot(MyApp)\n  ],\n  ...\n  ...\n})\nexport class AppModule {}\n```\nNow let's import the styling file. Open `app.scss` and add the following:\n\n`@import \"../../node_modules/ionic2-auto-complete/auto-complete\";`\n\nNow, let's add the component to our app!\n\nAdd the following tag to one of your pages, in this example I am using the Homepage:\n\n`<ion-auto-complete></ion-auto-complete>`\n\nNow let's see what wev'e done so far by running `ionic serve`.\n\nNow, when everything is up and running you should see a nice search-bar component. Open the **developer console** and try to type something.\n\nOh no! something is wrong. You probably see an excpetion similiar to :\n\n`EXCEPTION: Error in ./AutoCompleteComponent class AutoCompleteComponent - inline template:1:21`\n\nThis is totatlly cool, for now. The exception shows up since we did not provide a **dataProvider** to the autocomplete component.\n\n**How does it work?** So, ionic2-auto-complete is not responsible for getting the data from the server. As a developer, you should implement your own service which eventually be responsible to get the data for the component to work, as well we determing how many results to show and/or their order of display.\n\nSo there are two possibilities to provide data:\n\n1. A simple function that returns an Array of items\n2. An instance of 'AutocompleteService' (specified below)\n\nLet's start by creating the service:\n\n```\nimport {AutoCompleteService} from 'ionic2-auto-complete';\nimport { Http } from '@angular/http';\nimport {Injectable} from \"@angular/core\";\nimport 'rxjs/add/operator/map'\n\n@Injectable()\nexport class CompleteTestService implements AutoCompleteService {\n  labelAttribute = \"name\";\n\n  constructor(private http:Http) {\n\n  }\n  getResults(keyword:string) {\n    return this.http.get(\"https://restcountries.eu/rest/v1/name/\"+keyword)\n      .map(\n        result =>\n        {\n          return result.json()\n            .filter(item => item.name.toLowerCase().startsWith(keyword.toLowerCase()) )\n        });\n  }\n}\n\n\n```\n\nBy implementing an AutoCompleteService interface, you must implement two properties:\n\n1. **labelAttribute** [string] - which is the name of the object's descriptive property (leaving it null is also an option for non-object results)\n2. **getResults(keyword)** [() => any] - which is the method responsible for getting the data from server.\n\nThe **getResults** method can return one of:\n- an Observable that produces an array\n- a Subject (like an Observable)\n- a Promise that provides an array\n- directly an array of values\n\nIn the above example, we fetch countries data from the amazing https://restcountries.eu/ project, and we filter the results accordingly.\n\n**Important!** the above example is just an example! the best practice would be to let the server to the filtering for us! Here, since I used the countries-api, that's the best I could do.\n\nNow, we need to let ionic2-auto-complete that we want to use CompleteTestService as the data provider, edit *home.ts* and add `private completeTestService: CompleteTestService` to the constructor argument list.\nShould look like that:\n```\nimport { Component } from '@angular/core';\nimport { NavController } from 'ionic-angular';\nimport { CompleteTestService } from '../../providers/CompleteTestService';\n\n@Component({\n  selector: 'page-home',\n  templateUrl: 'home.html'\n})\nexport class HomePage {\n\n  constructor(public navCtrl: NavController, public completeTestService: CompleteTestService) {\n\n  }\n\n}\n\n```\n\nThan, in *home.html* modify `<ion-auto-complete>`:\n```\n<ion-auto-complete [dataProvider]=\"completeTestService\"></ion-auto-complete>\n```\n\nNow, everything should be up and ready :)\n\n\n----------------------------------------------------------------------------\n\n### Use auto-complete in Angular FormGroup ###\n\n#### Use labelAttribute as both label and form value (default behavior) ####\n\nBy default, if your **dataProvider** provides an array of objects, the `labelAttribute` property is used to take the good field of each object to display in the suggestion list. For backward compatibility, if nothing is specified, this attribute is also used to grab the value used in the form.\n\nThe page should look like this:\n\n```\nimport { Component } from '@angular/core';\nimport { NavController } from 'ionic-angular';\nimport { CompleteTestService } from '../../providers/CompleteTestService';\nimport { FormGroup, Validators, FormControl } from '@angular/forms'\n\n\n@Component({\n  selector: 'page-home',\n  templateUrl: 'home.html'\n})\nexport class HomePage {\n  myForm: FormGroup\n\n  constructor(public navCtrl: NavController, public completeTestService: CompleteTestService) {\n  }\n\n  ngOnInit(): void {\n    this.myForm = new FormGroup({\n      country: new FormControl('', [\n        Validators.required\n      ])\n    })\n  }\n\n  submit(): void {\n    let country = this.myForm.value.country\n  }\n\n}\n```\n\nThen, in *home.html* place the auto-complete component in the form group and add the `formControlName` attribute:\n```\n<form [formGroup]=\"myForm\" (ngSubmit)=\"submit()\" novalidate>\n  <div class=\"ion-form-group\">\n    <ion-auto-complete [dataProvider]=\"completeTestService\" formControlName=\"country\"></ion-auto-complete>\n  </div>\n  <button ion-button type=\"submit\" block>Add country</button>\n</form>\n```\n\nNow when the `submit` method is called, the `country` is the selected country **name**.\n\n**NOTE** As said above by default for backward compatibility, only the name is used as value not the country object.\n\n\n#### How to use another field as form value ? ####\n\nTo indicate that you don't want the label as value but another field of the country object returned by the REST service, you can specify the attribute **formValueAttribute** on your dataProvider. For example, we want to use the country numeric code as value and still use the country name as label.\n\nLet's update the service (juste declare `formValueAttribute` property):\n\n```\nimport {AutoCompleteService} from 'ionic2-auto-complete';\nimport { Http } from '@angular/http';\nimport {Injectable} from \"@angular/core\";\nimport 'rxjs/add/operator/map'\n\n@Injectable()\nexport class CompleteTestService implements AutoCompleteService {\n  labelAttribute = \"name\";\n  formValueAttribute = \"numericCode\"\n\n  constructor(private http:Http) {\n  }\n\n  getResults(keyword:string) {\n    return this.http.get(\"https://restcountries.eu/rest/v1/name/\"+keyword)\n      .map(\n        result =>\n        {\n          return result.json()\n            .filter(item => item.name.toLowerCase().startsWith(keyword.toLowerCase()) )\n        });\n  }\n}\n```\n\nNow when the `submit` method is called, the `country` is the selected country **numericCode**. The name is still used as the label.\n\n#### How to use the whole object as form value ? ####\n\nSimply set `formValueAttribute` to empty string:\n```\nimport {AutoCompleteService} from 'ionic2-auto-complete';\nimport { Http } from '@angular/http';\nimport {Injectable} from \"@angular/core\";\nimport 'rxjs/add/operator/map'\n\n@Injectable()\nexport class CompleteTestService implements AutoCompleteService {\n  labelAttribute = \"name\";\n  formValueAttribute = \"\"\n\n  constructor(private http:Http) {\n  }\n\n  getResults(keyword:string) {\n    return this.http.get(\"https://restcountries.eu/rest/v1/name/\"+keyword)\n      .map(\n        result =>\n        {\n          return result.json()\n            .filter(item => item.name.toLowerCase().startsWith(keyword.toLowerCase()) )\n        });\n  }\n}\n```\n\n\n----------------------------------------------------------------------------\n\n### Styling ###\n\nCurrently for best visual result, use viewport size / fixed size (pixels) if you are interested in resizing the component:\n```\nion-auto-complete {\n  width: 50vw;\n}\n```\n\n<!--\n### How to concatenate several fields as label ? ###\n\n\nThe auto-complete component allows you to use templates for customize the display of each suggestion. But in many cases, the default template is good. However, you need to concatenate several fields (like firstname and lastname) to produce a full label. In that case, you can declare a method named `getItemLabel` instead of using `labelAttribute`.\n\nFor example, we want to display the country name and the population:\n```\nimport {AutoCompleteService} from 'ionic2-auto-complete';\nimport { Http } from '@angular/http';\nimport {Injectable} from \"@angular/core\";\nimport 'rxjs/add/operator/map'\n\n@Injectable()\nexport class CompleteTestService implements AutoCompleteService {\n  formValueAttribute = \"\"\n\n  constructor(private http:Http) {\n  }\n\n  getResults(keyword:string) {\n    return this.http.get(\"https://restcountries.eu/rest/v1/name/\"+keyword)\n      .map(\n        result =>\n        {\n          return result.json()\n            .filter(item => item.name.toLowerCase().startsWith(keyword.toLowerCase()) )\n        });\n  }\n\n  getItemLabel(country: any) {\n    return country.name + ' (' + country.population + ')'\n  }\n}\n```\n-->\n\n\n### Custom Templates (for versions 1.5.0 and above) ###\n\n**NOTE** this feature uses ng-template which was introduced in Angular versions 4.0.0 and later, it might not work in earlier versions.\n\nIonic2-auto-complete also supports custom templates for the list items.\nActually, you can display any attribute associated with your data items by simply accessing it from the `data` input class member in the template.\n\nFor example:\n\nLet's assume that in addition to the country name, we also wish to display the country flag.\nFor that, we use the `ng-template` directive, which let's us pass the template as an input to the component.\n\nOn the page where your `ion-auto-complete` is located:\n\n```\n<ng-template #withFlags let-attrs=\"attrs\">\n  <img src=\"assets/image/flags/{{attrs.data.name}}.png\" class=\"flag\" /> <span [innerHTML]=\"attrs.data.name | boldprefix:attrs.keyword\"></span>\n</ng-template>\n<ion-auto-complete [dataProvider]=\"service\" [template]=\"withFlags\"></ion-auto-complete>\n```\n\nPlease note that you must add the `let-attrs=\"attrs\"` attribute to your template.\n\nWith that, you can easily of **different templates for different components**!\n\n#### Old custom templates mechanism (depreacted) ####\n**NOTE** the following is depreacted! (versions less than 1.5.0)\n\n\n**DEPREACTED (applies for<1.5.0)**\nFor that, we need to create a new file, let's call it for instance `comp-test-item.ts`:\n```\nimport {AutoCompleteItem, AutoCompleteItemComponent} from 'ionic2-auto-complete';\n\n@AutoCompleteItem({\n  template: `<img src=\"assets/image/flags/{{data.name}}.png\" class=\"flag\" /> <span [innerHTML]=\"data.name | boldprefix:keyword\"></span>`\n})\nexport class CompTestItem extends AutoCompleteItemComponent{\n\n}\n\n```\n\nAnd we must also add this component to our module:\n\n```\n@NgModule({\n  declarations: [\n    MyApp,\n    AboutPage,\n    ContactPage,\n    HomePage,\n    TabsPage,\n    CompTestItem\n  ],\n  ...\n  ...\n  providers: [\n    StatusBar,\n    SplashScreen,\n    CompleteTestService,\n    {provide: ErrorHandler, useClass: IonicErrorHandler}\n  ]\n\n```\n\nWhat is going on above is very simple.\nIn order to implement a custom Item component, you need to follow these steps:\n\n1. Import all neccessary classes.\n2. Use the `@AutoCompleteItem` decorator, which currently accepts `template` only (`templeteUrl` is currently not supported).\n3. Extend the AutoCompleteItemComponent class with your own class.\n\n**DEPREACTED**\n\n## Events ##\n\n**itemSelected($event)** - fired when item is selected (clicked)\n**itemsShown($event)** - fired when items are shown\n**itemsHidden($event)** - fired when items are hidden\n**ionAutoInput($event)** - fired when user inputs\n**autoFocus($event)** - fired when the input is focused\n**autoBlur($event)** - fired when the input is blured\n\n## Searchbar options ##\n\nIonic2-auto-complete supports the regular Ionic's Searchbar options, which are set to their default values as specified in the [docs](http://ionicframework.com/docs/v2/api/components/searchbar/Searchbar/).\n\nYou can override these default values by adding the `[options]` attribute to the `<ion-auto-complete>` tag, for instance:\n\n```\n  <ion-auto-complete [dataProvider]=\"someProvider\" [options]=\"{ placeholder : 'Lorem Ipsum' }\"></ion-auto-complete>\n```\nOptions include, but not limited to:\n1. debounce (default is `250`)\n2. autocomplete (\"on\" and \"off\")\n3. type (\"text\", \"password\", \"email\", \"number\", \"search\", \"tel\", \"url\". Default \"search\".)\n4. placeholder (default \"Search\")\n\n## Component specific options\n\nIn addition to the searchbar options, ion-auto-complete also supports the following option attributes:\n\n* **[template]** (TemplateRef) - custom template reference for your auto complete items (see below)\n* **[showResultsFirst]** (Boolean) - for small lists it might be nicer to show all options on first tap (you might need to modify your service to handle an empty `keyword`)\n* **[alwaysShowList]** (Boolean) - always show the list - defaults to false)\n* **[hideListOnSelection]** (Boolean) - if allowing multiple selections, it might be nice not to dismiss the list after each selection - defaults to true)\n\nWill set the Searchbar's placeholder to *Lorem Ipsum*\n\n## Accessing Searchbar component ##\n\nBy using the `@ViewChild()` decorator, and the built-in `getValue()` method we can easily access the actual value in the searchbar component.\nJust define a new property within the desired page, for instance (the chosen names are arbitrary):\n\n```\n  @ViewChild('searchbar')\n  searchbar: AutoCompleteComponent;\n```\n\nAnd then, in the component tag we need to add `#searchbar`:\n\n```\n<ion-auto-complete [dataProvider]=\"provider\" #searchbar></ion-auto-complete>\n```\n\nAvailable methods:\n\n1. getValue(): `this.searchbar.getValue()` - get the string value of the selected item\n2. getSelection(): `this.searchbar.getSelection()` - get the selected object\n3. setFocus(): `this.searchbar.setFocus()` - focus on searchbar\n\n## ngModel (since 1.5.3) ##\n\nMany thanks to [bushybuffalo](https://github.com/bushybuffalo) for contributing this cool feature.\nYou can now bind the component with an ngModel.\nPlease note that if you use an object as your model, the component will try to achieve the initial keyword value using the labelAttribute.\nFor plain string models, it will just use the value itself.\n\n## Contributing ##\n\nTo contribute, clone the repo. Then, run `npm install` to get the packages needed for the library to work. Running `gulp` will run a series of tasks that builds the files in `/src` into `/dist`. Replace the `/dist` into whatever Ionic application's `node_modules` where you're testing your changes to continously improve the library.\n","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"users":{"kadoshms":true},"bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"license":"MIT","versions":{"1.0.0":{"name":"ionic2-auto-complete","version":"1.0.0","description":"A simple Ionic 2 based auto-complete component","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-auto-complete.git"},"keywords":["ionic2","auto-complete","angular2"],"author":{"name":"kadoshms"},"license":"ISC","bugs":{"url":"https://github.com/kadoshms/ionic2-auto-complete/issues"},"homepage":"https://github.com/kadoshms/ionic2-auto-complete#readme","gitHead":"d901dc2eb1433e739dd09bca916f9d169ef37da4","_id":"ionic2-auto-complete@1.0.0","_shasum":"9a351949b30f686eafa3f0b3102dd5837823af7d","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"9a351949b30f686eafa3f0b3102dd5837823af7d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.0.0.tgz","integrity":"sha512-Phy9TPmaFbv5vO7HNAbLvKqWDG9HOJU/ob2aoQWrSenGuHLtXUNFMvIJhzXF/wa9D3E1gG7cRuA7KdLpZtUboQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDq3YnA3ErBY8OQdJtQiHVbaFwFyXzeky/azrIzX2dp1AIhAPa6OdCpCRZH2JJlJQC0rmiiygzHOoIE8cOpzPLkbs+R"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.0.0.tgz_1471426373340_0.5373713986482471"},"deprecated":"depreacted","directories":{}},"1.1.0":{"name":"ionic2-auto-complete","version":"1.1.0","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{},"engines":{"node":">=0.8.0"},"gitHead":"d16b14f5aaa47ec112da17036f9ec097dbf86234","description":"## Installation","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.1.0","_shasum":"9757d327b4c4e956b36e9eb076f4d497f83b14f4","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"9757d327b4c4e956b36e9eb076f4d497f83b14f4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.1.0.tgz","integrity":"sha512-okcyYTz3mK1pvSJBiDilKQ3tJ2TIoJqL2snaDcVl/EYR82UOLcAE272B5aN8c9lrU1H1VoetK6d7awnvtg1U+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAJKTJPuaanRt+r2xXEqTsordvM3/9CYQ+MaAfikOwPLAiARHBjtvRbWUqoU3R2886RswnQ3JRc+BAuKW0YRNm9JXQ=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.1.0.tgz_1471605460143_0.5314322516787797"},"directories":{}},"1.1.1-0":{"name":"ionic2-auto-complete","version":"1.1.1-0","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{},"engines":{"node":">=0.8.0"},"gitHead":"91f92f5fb8c0219f4fe3b8b0c567aeedd6675372","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.1.1-0","_shasum":"d0cc5a6e5c49a9dce2eeff31edc9ebf39ebf32cb","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"d0cc5a6e5c49a9dce2eeff31edc9ebf39ebf32cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.1.1-0.tgz","integrity":"sha512-pQDS2kx9ggIYhy3QDQAd3sfGvQfE956zJyiLcHEOFQtpK3aYed9Ct64/djCZWAsoqOowdjKNct/I83JS8d0lsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKTLyKfop5pepBUjD0LLrxvDW7sdr/59NJTK6MQnqfRQIgflWyG6RiR9X/r52xnOok5JxHsYUD8aHYd0+zAF1UuOs="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.1.1-0.tgz_1471612462253_0.10520085389725864"},"directories":{}},"1.2.0":{"name":"ionic2-auto-complete","version":"1.2.0","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{},"engines":{"node":">=0.8.0"},"gitHead":"86e76a2dc5f9ac75d359810ed531950ad9511305","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.2.0","_shasum":"8175c0f1e107c8bb9a3acf47a49b36dc20682f0c","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"8175c0f1e107c8bb9a3acf47a49b36dc20682f0c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.2.0.tgz","integrity":"sha512-D79gCKKj6GQGnjH+6h8kORmWriOio+YkKCnAyE/IcoAKbD7JY/bRK6Rxcj+1H+DzSwRyyxiaP14oRTw7Zcp8WA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH0n7HLTZj/q2fFWje4/IR7kU+YS3euZr/gPL0ISOqxEAiEA4+MU1h2j+ZopOF76gqbSP4ztBrdQU7w7xwUJ2EjQQv8="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.2.0.tgz_1472048999625_0.49544106889516115"},"directories":{}},"1.2.1":{"name":"ionic2-auto-complete","version":"1.2.1","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{},"engines":{"node":">=0.8.0"},"gitHead":"76b3f16afc12a7278bbbc38a36f2b8b9a120e7e4","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.2.1","_shasum":"3cc7de48cc20078c02eb703fe947dd5d872853c3","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"3cc7de48cc20078c02eb703fe947dd5d872853c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.2.1.tgz","integrity":"sha512-GY+y+BGp0VXaCiqjFxPpORLrHihr/PoOHVMEC/2NuZvOYgZP57y6As5LVEi9ws8Ux/xel9On5xv7qfy4BR+t2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHkYM3y2fwCOzchQQNqiQkjiOoQX2nvAcCFixuIcXaSjAiAg0tS2U+/JtFjhhd2DG3z2j2obV44wrUI3Ge1wuCwJbA=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.2.1.tgz_1472070041226_0.11610065586864948"},"directories":{}},"1.2.3":{"name":"ionic2-auto-complete","version":"1.2.3","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{},"engines":{"node":">=0.8.0"},"gitHead":"0fe913a5809e2e029dfcc623729d2c0325558273","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.2.3","_shasum":"147db12234db9c5b220aed7071f48d178b34fca1","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"147db12234db9c5b220aed7071f48d178b34fca1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.2.3.tgz","integrity":"sha512-AdMmjugx+ajtMoKjBFcPG6CZ7qtvUfA9UncnOsUitWEqIoeUX9kWBqdamyDPdrPGQ/9lgsC6ljf0WacSXtsG+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEhlgg5aJgngQK0EYQlz2tQSzfqB8QIHWOlrqJtvAsDgAiBmpHdrN14eJfwehvQkxiESAmtvzLt8hXty6yLPMZCb8w=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.2.3.tgz_1472077242981_0.21788195590488613"},"directories":{}},"1.2.4":{"name":"ionic2-auto-complete","version":"1.2.4","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{},"engines":{"node":">=0.8.0"},"gitHead":"b4576da0440689cc2eca7f940f721dcb9aebd35c","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.2.4","_shasum":"24101c4e1b2144427d21645efb653dee2e9c0243","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"24101c4e1b2144427d21645efb653dee2e9c0243","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.2.4.tgz","integrity":"sha512-+2QfAjoufKU/K3w3wdZRgYNk0d5EmcS5DKHEmoxa/eRoed3B/jRZqxCYTEVZJ2kiuTu7ueJAYJtirocJdvrRWA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/QPWGB+TVFyUJY2ghAr88cYypGomrcXFtxU4taqrbMAiBcBpous2sMC85c/A53s8Q2woip7WlAue5aDlkr2yRLyw=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.2.4.tgz_1472157784916_0.01117582293227315"},"directories":{}},"1.3.0":{"name":"ionic2-auto-complete","version":"1.3.0","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{"@angular/core":"^2.0.0","codelyzer":"^0.0.20","rxjs":"5.0.0-beta.12","tslint":"^3.15.1","typescript":"2.0.2","typings":"^1.0.4","zone.js":"0.6.23"},"engines":{"node":">=0.8.0"},"gitHead":"ae341c66f9ee8b63daa950f48994cc853f2ebd5d","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.3.0","_shasum":"baa18fdaba855652862ce516ee2ffb319a269e57","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"baa18fdaba855652862ce516ee2ffb319a269e57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.3.0.tgz","integrity":"sha512-LAhTmVlOuGlaBlYsJFH3qWqJk04pE3jrb/ZqFSvYXrY82V/RJC8OI3NFbvLOQW2FfBdtcEmUZzWUqp26EL2fsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBbfCPoYvznjoG/9yTOWCF1dT65dYHoQ2R8bygOQ+5SIAiAxWLpI4mJ3nE5uwiymsm4BA9kGSxOt8FVVcyCkhEZt7w=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.3.0.tgz_1476208228765_0.8547254828736186"},"directories":{}},"1.3.1":{"name":"ionic2-auto-complete","version":"1.3.1","scripts":{"lint":"tslint src/**/*.ts","test":"tsc && karma start","postinstall":"typings install","prepublish":"tsc && cp src/auto-complete.scss dist/","tsc":"tsc","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular","angular2"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","typings":"./dist/index.d.ts","dependencies":{},"devDependencies":{"@angular/core":"^2.0.0","codelyzer":"^0.0.20","rxjs":"5.0.0-beta.12","tslint":"^3.15.1","typescript":"2.0.2","typings":"^1.0.4","zone.js":"0.6.23"},"engines":{"node":">=0.8.0"},"gitHead":"7d0da24875e5d1919618d0740c3190459e6a7d4d","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.3.1","_shasum":"60b7299de0461bca5e2390a4a0f148f02b861b39","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"60b7299de0461bca5e2390a4a0f148f02b861b39","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.3.1.tgz","integrity":"sha512-JnTnMKmmRNZsWiSGc7TFP7ChqEUikgTlw/iMerZcyTPJ8FiOM2CTS1Xbd1FQO7vl/t8zKZuVPQhbWS8qG2a2+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAFAXFLLrW7UE/yCRW3lr5pbLa1YNWeYxcLS1+/p4qBQIhANlWeH8jbIvoYfSNuCNSY9ZdrrSkdwO1yYiBtZh/pPdD"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.3.1.tgz_1476606068872_0.135581775335595"},"directories":{}},"1.4.0":{"name":"ionic2-auto-complete","version":"1.4.0","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{"ionic-angular":"^3.0.1"},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"bfac3458553dc4302f5c8d0ec135589d4df446d9","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.0","_shasum":"57a18fff114ef36b2d2e8715ace8cb5ed3eac702","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"57a18fff114ef36b2d2e8715ace8cb5ed3eac702","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.0.tgz","integrity":"sha512-GFVUNperTfaSfRQ0hXGgiuwdLJAZoYviHHo/dv6U0uWsNKMX2cxVcbEHevf4BMHHWjuxHCp08+0/InaqznO1jQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB/TVKY2dpjZ68r1HFpk3zvFmiZk4ZhiHX3Jn/tqdmHHAiBos5zEslXPdzASX2sznKT2K4ajCkeNB2kwqdDthEKy6w=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.0.tgz_1492353554821_0.7131457410287112"},"directories":{}},"1.4.0-rc1":{"name":"ionic2-auto-complete","version":"1.4.0-rc1","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc","local":"tsc && cp src/auto-complete.scss dist/ && rm -rf /var/www/html/auto/test/node_modules/ionic2-autocomplete && cp dist -R /var/www/html/auto/test/node_modules/ionic2-autocomplete"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{"ionic-angular":"^3.0.1"},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"468cd227c2171f0f29b91d6d562c9e36bf35f8fd","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.0-rc1","_shasum":"e5e2370ed6094aa574e9cd0abf9962f735824d8a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"e5e2370ed6094aa574e9cd0abf9962f735824d8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.0-rc1.tgz","integrity":"sha512-pwT3skHbTuJ/2FEOv4j4kiMfBb2veJ99t3GishUZKe9Rpg5UDrZU1gGSjgf68/Ry3lv5n4GpdIx1q8FNC0hIJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICclc+O4zpdpRTjlh3plLcoH/MDgaOtW+3k3KmD+j3CIAiEAnU+B9gEsmV1kDMmcfg37bbhNstb3Zsybpt5ixnBcaJw="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.0-rc1.tgz_1492380725562_0.6556402468122542"},"directories":{}},"1.4.1-rc1":{"name":"ionic2-auto-complete","version":"1.4.1-rc1","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc","local":"tsc && cp src/auto-complete.scss dist/ && rm -rf /var/www/html/auto/test/node_modules/ionic2-autocomplete && cp dist -R /var/www/html/auto/test/node_modules/ionic2-autocomplete"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{"ionic-angular":"^3.0.1"},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"58e6237b5041057db7edc12fbe41179f6e684c1a","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.1-rc1","_shasum":"57871536f01f49b5cec7568f525fb830885f0003","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"57871536f01f49b5cec7568f525fb830885f0003","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.1-rc1.tgz","integrity":"sha512-kkBMV/bFp+yp/qFdK4mKavxOemf7f8c85+zEgw7A9zuT0SW0Sw3+tnjt3BtvLpKxtGTzyNUprW+SFlBdlBz8mA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCndHnP0C2PRmGV4O0Ikn40DpthsHFVSwLf6yj235W9KAIgeO8RCpfLwqqLImhXHLpoUui5l8sIerUO5e+nalN5c4M="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.1-rc1.tgz_1492381289888_0.03375009261071682"},"directories":{}},"1.4.1-rc2":{"name":"ionic2-auto-complete","version":"1.4.1-rc2","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{"ionic-angular":"^3.0.1"},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"b5c32d150ef2ed0c5355fd0569d5162ebf3e81e1","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.1-rc2","_shasum":"bf546f1ff8bc479b72ea7cf23bdaaa1af33843a9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"bf546f1ff8bc479b72ea7cf23bdaaa1af33843a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.1-rc2.tgz","integrity":"sha512-vote4hTfXwA+t6pj3FHas1taVXFrKaRUIMt0kt7rH3Q0H2SnHgCdKntfAtq89AL1P0FWoVc9lf1GJA95/rXdXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA46YTzNGr1Jit9Cs2n4MW9eGA7jW9dAxmQbDL0pGxdRAiEAnBj61MQSOiGA/nqzAKU9nzvmmh+0MhxSpB4l2q3GOR8="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.1-rc2.tgz_1492381673563_0.46048603602685034"},"directories":{}},"1.4.1-release":{"name":"ionic2-auto-complete","version":"1.4.1-release","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{"ionic-angular":"^3.0.1"},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"0ae3a000a7f4dbf45c0ffbfceba3e34c5f1fa8ad","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.1-release","_shasum":"e5b9fd3b833c59875eacbfe3a327c7cd7789f907","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"e5b9fd3b833c59875eacbfe3a327c7cd7789f907","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.1-release.tgz","integrity":"sha512-9ImO87WqHFhFUwzHpB3rTN3hVLqMxNx3tobABStL7jlZS3iiXzcU1m/cmZy0qDsWc4Dh/UzlK9oUCeCTXUv6Mg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHZIOfC3kCpd/rYBmA/ezvSfOlECP1oJKQyl+ZO8lOXvAiBUBRcaM2XRsMagY8eBNSNLHq0nmxe+oqcDJP/NUTgH3w=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.1-release.tgz_1493019257785_0.17668693116866052"},"directories":{}},"1.4.2-rc0":{"name":"ionic2-auto-complete","version":"1.4.2-rc0","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc","local":"tsc && rm -rf /var/www/html/misc/auto/node_modules/ionic2-auto-complete/dist/ && cp -R dist /var/www/html/misc/auto/node_modules/ionic2-auto-complete/"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{"ionic-angular":"^3.0.1"},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"9ac1ad01785fa7327a1896b9b42bb0adbbae1c04","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.2-rc0","_shasum":"b9f9bb787c65d5fb479cb9b1783a905189465f3d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"b9f9bb787c65d5fb479cb9b1783a905189465f3d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.2-rc0.tgz","integrity":"sha512-n9WuQWqe+Da9BhUUaaYym/g48wAHhVEC5fw/WFuV2+7XNPeiFX15qvvST3g6IB5COmNUi7hukgqW0Zk+NTHwBQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDF+kr8FYfWd4mCNh6V0qxQF76KajaT+B21naV2SFbOqQIhALA9MgukpcmYC4mSbrH5xGZrNNHFf9lwPL1jHLo3A68j"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.2-rc0.tgz_1493471302403_0.8130256542935967"},"directories":{}},"1.4.2-rc1":{"name":"ionic2-auto-complete","version":"1.4.2-rc1","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc","local":"tsc && rm -rf /var/www/html/misc/auto/node_modules/ionic2-auto-complete/dist/ && cp -R dist /var/www/html/misc/auto/node_modules/ionic2-auto-complete/"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","ionic-angular":"^3.1.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"33b2f3ab8b951675f9d0d11f1dd631531091c3e8","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.2-rc1","_shasum":"48943c863b411a32b2e6d5c54bda92e304efb927","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"48943c863b411a32b2e6d5c54bda92e304efb927","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.2-rc1.tgz","integrity":"sha512-zmPJXKZf/U8jBT6faC3T6SBS+xJWxYIb/snuWtDSyHvGwY5wnniocNmjhbaXqcmwVekxhZXBl+yh0YzChtW+Yw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE44fDjxZxPNXdVebYwLvcbWjGbquF2jY9qLcGVByOAvAiEAvIzVG3ZQxerC4+N3dM9GSdXvWrRlSnEM/0swwz6Q16s="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.2-rc1.tgz_1493623673153_0.5128466130699962"},"directories":{}},"1.4.2-rc2":{"name":"ionic2-auto-complete","version":"1.4.2-rc2","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc","local":"tsc && rm -rf /var/www/html/misc/auto/node_modules/ionic2-auto-complete/dist/ && cp -R dist /var/www/html/misc/auto/node_modules/ionic2-auto-complete/"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","ionic-angular":"^3.1.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"0f17c9acd0ae4cd8c6a772b5513720c8222d33e4","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.2-rc2","_shasum":"0f25d4d9ae8c303c4ded9223b3811e1dddcbb0f9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"0f25d4d9ae8c303c4ded9223b3811e1dddcbb0f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.2-rc2.tgz","integrity":"sha512-AXKULFIvYAg4DRJuDdraD+VHhGi24mBJFu5LNZrw8UDImVLZIpKdgNRzZQZMmYhFNtIoOFJlqObNjTE1jdDuPg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDfUtScT15OdPQAfyn2WzzM44ywNtBnWGH+xL0B/USu8wIhAJtLL7fCInDbrH0As9zZQK3WW+kj4SF94i6DRy2d4eOL"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.2-rc2.tgz_1493625044910_0.19244949333369732"},"directories":{}},"1.4.2-release":{"name":"ionic2-auto-complete","version":"1.4.2-release","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc","local":"tsc && rm -rf /var/www/html/misc/auto/node_modules/ionic2-auto-complete/dist/ && cp -R dist /var/www/html/misc/auto/node_modules/ionic2-auto-complete/"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","ionic-angular":"^3.1.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"ed376f02f3e440943f53496284d18b7a503d27f1","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.2-release","_shasum":"7c3025e0f22a1ff1acd75a0b6dadbd255c570334","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"7c3025e0f22a1ff1acd75a0b6dadbd255c570334","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.2-release.tgz","integrity":"sha512-vPDCKfObwLcmRscTBkaEnftlxpaMhJjVSOioPXQLlSlSHG+3oigVHW5d0WlCVG3/MVcXfgxtnfykd72M84cs2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCJ6h9pdZ35TxnChb3wVXCuicw/Gp06Bzp4M2x0TP7BAIgD6eAyVda3Vuz8P+MXz8ywXgmtOX2bfD8l/QjAqbQ2Oo="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.2-release.tgz_1494248464805_0.7775765031110495"},"directories":{}},"1.4.3-alpha":{"name":"ionic2-auto-complete","version":"1.4.3-alpha","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","ionic-angular":"^3.1.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"b81f56b4d269d731b84a1e6c3d900a1825988cca","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.3-alpha","_shasum":"8d2029954eb5664cda6ed20830291f68acdd68d6","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"8d2029954eb5664cda6ed20830291f68acdd68d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.3-alpha.tgz","integrity":"sha512-0f9JIA78YZ91S7K9kL3Zhg3FWAOK0b1V3o9dV5I5wV0zMuAx1IaaT2+xcvn5TLmuYBOy9st2ZuNmYy0OxpWM6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDs7whsLLVItHaFqfyAtY42SqDVArR1OLM/Cb3Ti8zwMwIgSJTN/ytfC7GR03LTPj79bVO/XKarlI/AoINflEqEIuM="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.3-alpha.tgz_1494577852255_0.9109184278640896"},"directories":{}},"1.4.3-beta":{"name":"ionic2-auto-complete","version":"1.4.3-beta","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","ionic-angular":"^3.1.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"68950d5b8308e7e1b12c6bf8b544bbc3be0964b2","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.3-beta","_shasum":"a8e74b8bc79a8108730586283767baba14696c5b","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"a8e74b8bc79a8108730586283767baba14696c5b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.3-beta.tgz","integrity":"sha512-LJcoWfnlBc4xxVPmavrOWPGRE39ESlG4DDA9vN4A6c4FSJUPnZ/dA3uh2MUal+G2RBkEzqawz1eebmGa0YjTAA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDogWNigoGSnrJB3kexL03YD/2J7VETTZJeSSlpDJJtGAiEA/VzaWGxOhMbP1FOgau3InO9cadvlBZt9c2GhPnqZFiY="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.3-beta.tgz_1494581389356_0.8624755169730633"},"directories":{}},"1.4.3-release":{"name":"ionic2-auto-complete","version":"1.4.3-release","scripts":{"build":"ngc -p tsconfig.json","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","prepublish":"tsc","tsc":"tsc"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"kadoshms","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"main":"./dist/index.js","dependencies":{},"devDependencies":{"@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","ionic-angular":"^3.1.1","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","protractor":"~5.1.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"engines":{"node":">=6.0.0"},"gitHead":"fb88adb085ed4f4f3124b306bdfb9aaed9629e9e","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.3-release","_shasum":"ab0d98553f935919b091d1bd9516ffba79421f57","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"ab0d98553f935919b091d1bd9516ffba79421f57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.3-release.tgz","integrity":"sha512-KmFHuYwOhNN4UQl8MHvFcs59bwbbVw3HlbxZ5ZMTK952aSX8ZhtqUcioAILdbZMymwTnUzBc9XfGusS52+/vEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDMohNHdNWaCeCS6kRSNYCgjBe3/B/rQklhzBULOmxk+QIgPBJ7Xb9fmSAO2feomdJPVuXPGYHBCj/aBaj6L3OfHvU="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.3-release.tgz_1494848962381_0.08033428364433348"},"directories":{}},"0.1.0":{"name":"ionic2-auto-complete","version":"0.1.0","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"## Installation","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@0.1.0","scripts":{},"_shasum":"5d145e7a40de5e8b3371ee4fd3b7ef417b26a382","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"5d145e7a40de5e8b3371ee4fd3b7ef417b26a382","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-0.1.0.tgz","integrity":"sha512-jx9FVWOrPW5NCreCTF0idSdlg1G4Xkzd6QTRgyJ4Ju9msgfrPed4c4YjNMeKj8uNeRAY/NRUtSL7A2aUQ7yTsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF5fiT4qmYTaO1zGUnvn/KDGgV/EbcEG8pJI4gfUE3wcAiEAiIJHX+PESGb15CkFt1gdZm5+FkZaWwt5q5NffBuQrsA="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-0.1.0.tgz_1494971521780_0.4226265044417232"},"directories":{}},"1.4.0-alpha":{"name":"ionic2-auto-complete","version":"1.4.0-alpha","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"## Installation","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.0-alpha","scripts":{},"_shasum":"01e638c7bf4ba5079795a69e0cda5f4673ee9ecd","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"01e638c7bf4ba5079795a69e0cda5f4673ee9ecd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.0-alpha.tgz","integrity":"sha512-tUw2pOCbYchwrWU4hEMR4CJbPxfMn5ApRZNCBJ6WYuPcianDuzih/KGKnXf/Tc86bk6HpBd59MEojpG+GBkTBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFfqAWu8xximoVyh6VPa2JNtJFeKHHVAu645Hl6Mpr2VAiB/syCGwl+aK4LVEYx2kPukfASDelnY9dXF1hE5IKOaZg=="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.0-alpha.tgz_1494971857049_0.5001697358675301"},"directories":{}},"1.4.0-fix-to-38":{"name":"ionic2-auto-complete","version":"1.4.0-fix-to-38","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"## Installation","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.4.0-fix-to-38","scripts":{},"_shasum":"9d3733b9f0dc145ec704757fcd46a444b72fffd0","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"9d3733b9f0dc145ec704757fcd46a444b72fffd0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.4.0-fix-to-38.tgz","integrity":"sha512-QfzWOBBpkrSRUd/jvDu+GtgDByMTTHSqsYXAw4WsZee6s2tV4c8sd4Y9J4cd2zhgR4wYic2djDDOtL+ToW0Q5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGtkQVhABg4FXiWUbfv3T4/cWVEForcZ1/sLtBEzy3a5AiEAvQmhpVc6WtJ/KfjCid6U6jENmr65nUCL18eSY5p8AdY="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.4.0-fix-to-38.tgz_1494972325108_0.14525891141965985"},"directories":{}},"1.5.0-alpha":{"name":"ionic2-auto-complete","version":"1.5.0-alpha","scripts":{"build":"gulp build","build:watch":"gulp","docs":"npm run docs:build","docs:build":"compodoc -p tsconfig.json -n ionic2-auto-complete -d docs --hideGenerator","docs:serve":"npm run docs:build -- -s","docs:watch":"npm run docs:build -- -s -w","lint":"tslint --type-check --project tsconfig.json src/**/*.ts","test":"tsc && karma start","local":"rm -rf dist/ && npm run build && rm -rf /var/www/html/misc/auto4/node_modules/ionic2-auto-complete/ && cp dist/ ../../misc/auto4/node_modules/ionic2-auto-complete -R"},"repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"devDependencies":{"@compodoc/compodoc":"^1.0.0-beta.7","@types/jasmine":"2.5.38","@types/node":"~6.0.60","codelyzer":"~2.0.0","core-js":"^2.4.1","del":"^2.2.2","gulp":"^3.9.1","gulp-rename":"^1.2.2","gulp-rollup":"^2.11.0","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","node-sass":"^4.5.2","node-watch":"^0.5.2","protractor":"~5.1.0","rollup":"^0.41.6","run-sequence":"^1.2.2","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","@angular/common":"4.1.0","@angular/compiler":"4.1.0","@angular/compiler-cli":"4.1.0","@angular/core":"4.1.0","@angular/forms":"4.1.0","@angular/http":"4.1.0","@ionic/app-scripts":"1.3.7","@ionic/cli-plugin-cordova":"1.0.0","@ionic/cli-plugin-ionic-angular":"1.0.0","@angular/platform-browser":"4.1.0","@angular/platform-browser-dynamic":"4.1.0","@ionic-native/core":"3.7.0","@ionic-native/splash-screen":"3.7.0","@ionic-native/status-bar":"3.7.0","@ionic/storage":"2.0.1","ionic-angular":"3.2.1","ionic2-auto-complete":"^1.4.3-release","ionicons":"3.0.0","rxjs":"5.1.1","sw-toolbox":"3.6.0","zone.js":"0.8.10"},"engines":{"node":">=6.0.0"},"gitHead":"8c549cff67fac4c1c2433bffdd80fc77192a92be","description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.0-alpha","_shasum":"b29e214c075b31d34f6c3ee49372ee3f9f8d464e","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"b29e214c075b31d34f6c3ee49372ee3f9f8d464e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.0-alpha.tgz","integrity":"sha512-fektfwKoyugVxSrwSDstiD4cw71Q+0AHsNUQOpP1G6p7mlIwR9Dg7vrWj4t+48FqE94q7tMuyWHFKLz+qMTggQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB7ZEoV0zIpmtVxEcMfNHCnyypt5qHZ448bdrTU01242AiEAhS8C33qI60Gk0MTsPIxurWfSKhEbxscmCnXXOb7sTNs="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.5.0-alpha.tgz_1495051625639_0.07973699853755534"},"directories":{}},"1.5.0-beta":{"name":"ionic2-auto-complete","version":"1.5.0-beta","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.0-beta","scripts":{},"_shasum":"4f138a5e769cccbc0c189f7da7a0e61a581ed1ce","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"4f138a5e769cccbc0c189f7da7a0e61a581ed1ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.0-beta.tgz","integrity":"sha512-aKW+GhY5xmef4Te/VKUt4jTzU5CeDKA6FWbhcgjtlTiHVp4tx8AnDY7P63F6P4FiPm4FlZ6hfVbe8Wj0eAX01w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVbVJJhUbdA5EhnKYOSQy5Vz6beZuWOOS3CQOF6SaB7wIhANIl0SdQJtoorWQoVeC68HEQEU8g8SncjIIEoVsl9AB+"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic2-auto-complete-1.5.0-beta.tgz_1495052106304_0.6442410186864436"}},"1.5.1-beta":{"name":"ionic2-auto-complete","version":"1.5.1-beta","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.1-beta","scripts":{},"_shasum":"1e3dffeaa78bb1e57b1ce145499753b547007711","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"1e3dffeaa78bb1e57b1ce145499753b547007711","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.1-beta.tgz","integrity":"sha512-rgdT1r1m1uMLl4RwlCF4BARNzDdL5vfhIZ5uZgtzPFZ/67RL/evcoJ8Khw3N2vrph8l+jAzRvOz+f1MNI98edg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGrTpU90IH505hmMbujkwOJ1lQwNQQaXP9OtJRaY3WhQAiEAttwNlv+e7fE976c4Hky2A3TC8H2/CsYa+PZne/tgaQA="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.5.1-beta.tgz_1498472160502_0.7954228515736759"}},"1.5.2-beta":{"name":"ionic2-auto-complete","version":"1.5.2-beta","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.2-beta","scripts":{},"_shasum":"b2c98260c2578980a13f46805fc126b4dda54399","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"b2c98260c2578980a13f46805fc126b4dda54399","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.2-beta.tgz","integrity":"sha512-zUqxtkXb/E6aHvFglGyRdIrPg5mKaSWc5IxkGPX0ERlgLUZIzq6tdbX6NpuStyFyDee6GY04dMigzzGSkNpW+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG4WBGfUN5DKrahhvLQbNsDKdnMPtOBCOL7qgAo0qnv0AiEAmnA24LNz+srYhNTd4wETnmEt4JIT5B+FkMby3sPDxrM="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.5.2-beta.tgz_1499959909490_0.7052618593443185"}},"1.5.2-release":{"name":"ionic2-auto-complete","version":"1.5.2-release","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.2-release","scripts":{},"_shasum":"cf50b9095ad7a348e3b4e30a1c8838539261e29d","_from":"dist","_resolved":"file:dist","_npmVersion":"4.6.1","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"cf50b9095ad7a348e3b4e30a1c8838539261e29d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.2-release.tgz","integrity":"sha512-Q7iRxMe3R6Awt6s0LznKHpxDF4+29j+Ru7TH/48FIWP64TxqWd1fn5/xNXsFSDw1+pMqoXME4yosrOkOFnLnMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeEZQr/PDo69OEy4sEbnfYdnYO477PL3XmSSgzCyFvewIgM4BNPKmoVsHtWuSalUNlnAEI7is9x60q6qxDzArmD/0="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.5.2-release.tgz_1503666072262_0.277000542730093"}},"1.5.3-beta":{"name":"ionic2-auto-complete","version":"1.5.3-beta","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.3-beta","scripts":{},"_shasum":"74b1fe209424489f5b99e99dd318e5fe04d0c54c","_from":"dist","_resolved":"file:dist","_npmVersion":"4.6.1","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"74b1fe209424489f5b99e99dd318e5fe04d0c54c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.3-beta.tgz","integrity":"sha512-hOkjzV85Yef4xCMpwKicYfdcexxf+XH07a+6RnOd3BS9541c1xW2dcQJbe7cgX5Mx/yV4zjc47VZXEAG/lrrjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4eSyUAuWwZdmFwmIPgRf5kdwVNhks13WZRLZNFMveNQIgZ1JSg10UO7d5dFYSipMeo7CnZ7v0Ok+/mpWgYOc+Ri4="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.5.3-beta.tgz_1506770386167_0.6634413925930858"}},"1.5.4-alpha":{"name":"ionic2-auto-complete","version":"1.5.4-alpha","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.5.4-alpha","scripts":{},"_shasum":"672ac2b6b04f6974b6681b942a89a85ae86d5e54","_from":"dist","_resolved":"file:dist","_npmVersion":"4.6.1","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"672ac2b6b04f6974b6681b942a89a85ae86d5e54","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.5.4-alpha.tgz","integrity":"sha512-Ha817zJZkHCsVd86RJDfoOLO3V0ufUeZrXwiIyG/09eM1QmjoZH//RpGzolTP4kXctMXV86R+gSnFrbyf3qrGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzAI8EItnIQXDaW4gaS1ldUojfBM5NGr38Ox3XFqPFhAIhAI8809Sqpw9XY6OrB3GcpNgfY9H0ZPi4bfHzzLHrDSiU"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.5.4-alpha.tgz_1509895150061_0.7225568487774581"}},"1.6.0-alpha":{"name":"ionic2-auto-complete","version":"1.6.0-alpha","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.6.0-alpha","scripts":{},"_shasum":"1f90ea678f13c6684c0898cc70923386fec71eca","_from":"dist","_resolved":"file:dist","_npmVersion":"4.6.1","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"1f90ea678f13c6684c0898cc70923386fec71eca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.6.0-alpha.tgz","integrity":"sha512-oT3UQHglKT85SsdpE/EASFWP0kA5Juj+oQmxGPzlz94XnEyQbR3zbS3/CFD2hw9mQsYuKzBpyLv+vdAaMzLGUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDfATWiws3nFMJ46yjwJRsqinFBEHahov66pvfgf7H/kQIhAL1zhIHTYHaZ5HrmgI5mHkGaois+HKzrTvf2lSaAFWNT"}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.6.0-alpha.tgz_1511798646822_0.8590794107876718"}},"1.6.2-alpha":{"name":"ionic2-auto-complete","version":"1.6.2-alpha","repository":{"type":"git","url":"git+https://github.com/kadoshms/ionic2-autocomplete.git"},"author":{"name":"mor","email":"kadoshms@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/kadoshms/ionic2-autocomplete/issues"},"module":"ionic2-auto-complete.js","typings":"ionic2-auto-complete.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"This is a component based on Ionic's search-bar component, with the addition of auto-complete abillity. This component is super simple and light-weight. Just provide the data, and let the fun begin.","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme","_id":"ionic2-auto-complete@1.6.2-alpha","scripts":{},"_shasum":"407b84813c51b6051bc016fc672c0b20b945e744","_from":"dist","_resolved":"file:dist","_npmVersion":"4.6.1","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"kadoshms@gmail.com"},"dist":{"shasum":"407b84813c51b6051bc016fc672c0b20b945e744","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic2-auto-complete/-/ionic2-auto-complete-1.6.2-alpha.tgz","integrity":"sha512-EBghGM0zQJnDdS4b5Fdfq0uCT7gSi/uLAalb4EEoU176Runwr1t4JqBqx7NHIi2pN9xZcxfDff4mu11UF9QLfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCDoLYG1QxGVG2UGxDZf4X7FDHXm58lqkRRIQarWkOkZQIgE7l/9pEyH5ML2OnVRA26yUB7gdTFgFngtbP9Wvz/jaA="}]},"maintainers":[{"name":"dev","email":"kadoshms@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic2-auto-complete-1.6.2-alpha.tgz_1513464937235_0.6408370523713529"}}},"name":"ionic2-auto-complete","time":{"modified":"2022-06-19T02:12:27.491Z","created":"2016-08-17T09:32:56.100Z","1.0.0":"2016-08-17T09:32:56.100Z","1.1.0":"2016-08-19T11:17:41.287Z","1.1.1-0":"2016-08-19T13:14:24.530Z","1.2.0":"2016-08-24T14:30:01.685Z","1.2.1":"2016-08-24T20:20:43.214Z","1.2.3":"2016-08-24T22:20:45.837Z","1.2.4":"2016-08-25T20:43:05.645Z","1.3.0":"2016-10-11T17:50:29.435Z","1.3.1":"2016-10-16T08:21:10.515Z","1.4.0":"2017-04-16T14:39:15.630Z","1.4.0-rc1":"2017-04-16T22:12:06.452Z","1.4.1-rc1":"2017-04-16T22:21:32.261Z","1.4.1-rc2":"2017-04-16T22:27:56.016Z","1.4.1-release":"2017-04-24T07:34:18.498Z","1.4.2-rc0":"2017-04-29T13:08:23.099Z","1.4.2-rc1":"2017-05-01T07:27:53.866Z","1.4.2-rc2":"2017-05-01T07:50:47.083Z","1.4.2-release":"2017-05-08T13:01:05.484Z","1.4.3-alpha":"2017-05-12T08:30:54.413Z","1.4.3-beta":"2017-05-12T09:29:51.701Z","1.4.3-release":"2017-05-15T11:49:23.266Z","0.1.0":"2017-05-16T21:52:03.120Z","1.4.0-alpha":"2017-05-16T21:57:38.360Z","1.4.0-fix-to-38":"2017-05-16T22:05:27.071Z","1.5.0-alpha":"2017-05-17T20:07:07.640Z","1.5.0-beta":"2017-05-17T20:15:08.352Z","1.5.0-release":"2017-05-17T20:19:36.216Z","1.5.1-beta":"2017-06-26T10:16:01.532Z","1.5.2-beta":"2017-07-13T15:31:50.459Z","1.5.2-release":"2017-08-25T13:01:13.272Z","1.5.3-beta":"2017-09-30T11:19:47.372Z","1.5.4-alpha":"2017-11-05T15:19:11.046Z","1.6.0-alpha":"2017-11-27T16:04:08.024Z","1.6.1-alpha":"2017-12-16T13:38:15.525Z","1.6.2-alpha":"2017-12-16T22:55:37.347Z"},"readmeFilename":"README.MD","homepage":"https://github.com/kadoshms/ionic2-autocomplete#readme"}