{"_id":"@casanote/casa-core","_rev":"4-d20c208c12bbb598d6afd6d8bb7b79cd","name":"@casanote/casa-core","dist-tags":{"latest":"0.2.0"},"versions":{"0.1.0":{"name":"@casanote/casa-core","version":"0.1.0","repository":{"type":"git","url":"git+https://github.com/nabytoure/crm-core.git"},"author":{"name":"Ibrahima Naby Toure","email":"guriganote@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/nabytoure/crm-core/issues"},"main":"casa-core.umd.js","module":"casa-core.js","jsnext:main":"casa-core.js","typings":"casa-core.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"## Installation","homepage":"https://github.com/nabytoure/crm-core#readme","_id":"@casanote/casa-core@0.1.0","scripts":{},"_shasum":"c4673cb019f9e410e506b27bee632d9dad7facf5","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"casanote","email":"guriganote@gmail.com"},"dist":{"shasum":"c4673cb019f9e410e506b27bee632d9dad7facf5","tarball":"https://registry.npmjs.org/@casanote/casa-core/-/casa-core-0.1.0.tgz","fileCount":11,"unpackedSize":12599,"integrity":"sha512-9lGqNrVL99nIUWdr7PVlwdDvDy1amBkgxTDvvwTjKWOiJPUT6Sun5/X/Z2ajsTAf9OJiSP7UFLu3ZBTME7cRHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEYEYrUYgzUafZKG5csas4VSPPfjesQ7VDATxv6Cd8jEAiAb7VUoUKj2EBXy0ZTXMRUa2SG3+icmnLdbnExdTUnInA=="}]},"maintainers":[{"name":"casanote","email":"guriganote@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/casa-core_0.1.0_1522114457158_0.4057663900606998"},"_hasShrinkwrap":false},"0.2.0":{"name":"@casanote/casa-core","version":"0.2.0","repository":{"type":"git","url":"git+https://github.com/nabytoure/crm-core.git"},"author":{"name":"Ibrahima Naby Toure","email":"guriganote@gmail.com"},"keywords":["angular"],"license":"MIT","bugs":{"url":"https://github.com/nabytoure/crm-core/issues"},"main":"casa-core.umd.js","module":"casa-core.js","jsnext:main":"casa-core.js","typings":"casa-core.d.ts","peerDependencies":{"@angular/core":"^4.0.0","rxjs":"^5.1.0","zone.js":"^0.8.4"},"description":"## Installation","homepage":"https://github.com/nabytoure/crm-core#readme","_id":"@casanote/casa-core@0.2.0","scripts":{},"_shasum":"bffa0a0580390d6a1b44a267c4fe2b88995c2b14","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"casanote","email":"guriganote@gmail.com"},"dist":{"shasum":"bffa0a0580390d6a1b44a267c4fe2b88995c2b14","tarball":"https://registry.npmjs.org/@casanote/casa-core/-/casa-core-0.2.0.tgz","fileCount":11,"unpackedSize":12599,"integrity":"sha512-yFb4mNDOBqUA6YdBx0KAVloaeoW3QRe3BaAght0Li0sTnmla6Ee48Kg4TXcCJ8BnWwEXqaR33giKVoEED6sLig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICQIPcquUF08WZEBLgx250qpPYCe+6f7hHh7dEVSKabNAiEAh73fyxsxmYGRJBsOrHuirCl7wLl8esCy0MPaB1nmnDM="}]},"maintainers":[{"name":"casanote","email":"guriganote@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/casa-core_0.2.0_1522144568519_0.747183132183219"},"_hasShrinkwrap":false}},"time":{"created":"2018-03-27T01:34:17.103Z","0.1.0":"2018-03-27T01:34:17.219Z","modified":"2022-06-12T15:42:27.071Z","0.2.0":"2018-03-27T09:56:08.594Z"},"maintainers":[{"name":"casanote","email":"guriganote@gmail.com"}],"description":"## Installation","homepage":"https://github.com/nabytoure/crm-core#readme","keywords":["angular"],"repository":{"type":"git","url":"git+https://github.com/nabytoure/crm-core.git"},"author":{"name":"Ibrahima Naby Toure","email":"guriganote@gmail.com"},"bugs":{"url":"https://github.com/nabytoure/crm-core/issues"},"license":"MIT","readme":"# @casanote/casa-core\n\n## Installation\n\nTo install this library, run:\n\n```bash\n$ npm install @casanote/casa-core --save\n```\n\n## Consuming your library\n\nOnce you have published your library to npm, you can import your library in any Angular application by running:\n\n```bash\n$ npm install @casanote/casa-core\n```\n\nand then from your Angular `AppModule`:\n\n```typescript\nimport { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\n// Import your library\nimport { SampleModule } from '@casanote/casa-core';\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n\n    // Specify your library as an import\n    LibraryModule\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\n\nOnce your library is imported, you can use its components, directives and pipes in your Angular application:\n\n```xml\n<!-- You can now use your library component in app.component.html -->\n<h1>\n  {{title}}\n</h1>\n<sampleComponent></sampleComponent>\n```\n\n## Development\n\nTo generate all `*.js`, `*.d.ts` and `*.metadata.json` files:\n\n```bash\n$ npm run build\n```\n\nTo lint all `*.ts` files:\n\n```bash\n$ npm run lint\n```\n\n## License\n\nMIT © [Ibrahima Naby Toure](mailto:guriganote@gmail.com)\n","readmeFilename":"README.MD"}