{"_id":"angular2-in-memory-web-api","_rev":"37-4ca3b97c41aa96768977eef7604f6a11","name":"angular2-in-memory-web-api","time":{"modified":"2022-06-13T03:00:55.883Z","created":"2016-01-18T20:01:34.140Z","1.0.0":"2016-01-18T20:01:34.140Z","1.0.1":"2016-01-18T20:12:32.584Z","0.0.1":"2016-04-27T21:56:39.848Z","0.0.2":"2016-04-28T22:57:45.167Z","0.0.3":"2016-04-30T00:35:17.791Z","0.0.4":"2016-04-30T19:15:23.924Z","0.0.5":"2016-05-02T07:19:52.047Z","0.0.6":"2016-05-03T01:57:59.920Z","0.0.7":"2016-05-03T22:36:52.909Z","0.0.8":"2016-05-20T04:18:54.148Z","0.0.9":"2016-05-20T05:44:13.910Z","0.0.10":"2016-05-21T17:40:36.448Z","0.0.11":"2016-05-28T01:46:29.068Z","0.0.12":"2016-06-15T21:36:28.223Z","0.0.13":"2016-06-29T22:37:11.772Z","0.0.14":"2016-06-30T18:56:06.885Z","0.0.15":"2016-08-09T17:54:41.333Z","0.0.16":"2016-08-19T08:52:21.167Z","0.0.17":"2016-08-19T09:51:33.343Z","0.0.18":"2016-09-01T00:15:48.755Z","0.0.19":"2016-09-13T08:36:15.102Z","0.0.20":"2016-09-15T02:42:07.766Z","0.0.21":"2016-09-25T17:33:38.843Z"},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"dist-tags":{"latest":"0.0.21"},"description":"An in-memory web api for Angular 2 demos and tests","readme":"# Angular 2 in-memory-web-api\n\n>**UPDATE NOTICE**\n>\n>This is the last of the npm packages under the name `angular2-in-memory-web-api`. \nThe new package name is (or soon will be) `angular-in-memory-web-api`. \nAll versions after 0.0.21 are (or soon will be) shipped under this new name.\n**Be sure to update your `package.json` and import statements accordingly**.\n\nAn in-memory web api for Angular demos and tests.\n\nIt will intercept HTTP requests that would otherwise go to the remote server\nvia the Angular `XHRBackend` service\n\nThis in-memory web api service processes an HTTP request and \nreturns an `Observable` of HTTP `Response` object\nin the manner of a RESTy web api.\nIt natively handles URI patterns in the form :base/:collectionName/:id?\n\nExamples:\n```\n  // for store with a 'heroes' collection\n  GET api/heroes          // all heroes\n  GET api/heroes/42       // the character with id=42\n  GET api/heroes?name=^j  // 'j' is a regex; returns heroes whose name contains 'j' or 'J'\n  GET api/heroes.json/42  // ignores the \".json\"\n```\nAlso accepts\n  \"commands\":\n  ```\n    POST \"resetDb\",\n    GET/POST \"config\"\" - get or (re)set the config\n  ```\n\n## Basic usage\nCreate an `InMemoryDataService` class that implements `InMemoryDataService`.\n\nAt minimum it must implement `createDb` which \ncreates a \"database\" hash whose keys are collection names\nand whose values are arrays of collection objects to return or update.\nFor example:\n```\nimport { InMemoryDbService } from 'angular-in-memory-web-api';\n\nexport class InMemHeroService implements InMemoryDbService {\n  createDb() {\n    let heroes = [\n      { id: '1', name: 'Windstorm' },\n      { id: '2', name: 'Bombasto' },\n      { id: '3', name: 'Magneta' },\n      { id: '4', name: 'Tornado' }\n    ];\n    return {heroes};\n  }\n}\n```\n\nRegister this module and your service implementation in `AppModule.imports`\ncalling the `forRoot` static method with this service class and optional configuration object:\n```\n// other imports\nimport { HttpModule }           from '@angular/http';\nimport { InMemoryWebApiModule } from 'angular-in-memory-web-api';\n\nimport { InMemHeroService }     from '../app/hero-data';\n@NgModule({\n imports: [\n   HttpModule,\n   InMemoryWebApiModule.forRoot(InMemHeroService),\n   ...\n ],\n ...\n})\nexport class AppModule { ... }\n```\n\nSee examples in the Angular.io such as the\n[Server Communication](https://angular.io/docs/ts/latest/guide/server-communication.html) and\n[Tour of Heroes](https://angular.io/docs/ts/latest/tutorial/toh-pt6.html) chapters.\n\n# Bonus Features\nSome features are not readily apparent in the basic usage example.\n\nThe `InMemoryBackendConfigArgs` defines a set of options. Add them as the second `forRoot` argument:\n```\n   InMemoryWebApiModule.forRoot(InMemHeroService, { delay: 500 }),\n```\n\n## Simple query strings\nPass custom filters as a regex pattern via query string. \nThe query string defines which property and value to match.\n\nFormat: `/app/heroes/?propertyName=regexPattern`\n\nThe following example matches all names containing the letter 'j' in the heroes collection.\n\n`/app/heroes/?name=j+`\n\n# To Do\n* add tests (shameful omission!)\n\n# Build Instructions\n\nMostly gulp driven.\n\nThe following describes steps for updating from one Angular version to the next\n\n>This is essential even when there are no changes of real consequence.\nNeglecting to synchronize Angular 2 versions\ntriggers typescript definition duplication error messages when\ncompiling your application project.\n\n- `gulp bump` - up the package version number\n\n- update `CHANGELOG.MD` to record the change\n\n- update the dependent version(s) in `package.json`\n\n- `npm install` the new package(s) (make sure they really do install!)<br>\n   `npm list --depth=0`\n\n- consider updating typings, install individually/several:\n  `npm run typings -- install packagename --ambient --save`\n\n   **NB: Do not add to `npm postinstall` as that screws up consumers!**\n\n- `npm run typings install`\n\n- `npm run tsc` to confirm the project compiles w/o error (sanity check)\n\n -- NO TESTS YET ... BAD --\n\n- `gulp build`\n- commit and push\n\n- `npm publish`\n\n- Fix and validate angular.io docs samples\n\n- Add two tags to the release commit with for unpkg\n  - the version number\n  - 'latest'\n","versions":{"0.0.1":{"name":"angular2-in-memory-web-api","version":"0.0.1","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@igorminar/core":"0.2.0","@igorminar/http":"0.2.0","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.2","rxjs-es":"5.0.0-beta.2","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"1.9.0-dev.20160426","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"240e8cd84d0a908f1aefa750da05c75fbbdac60f","_id":"angular2-in-memory-web-api@0.0.1","_shasum":"84ef7ace6bd632b5e5ad95cb172c203c39e35a85","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"84ef7ace6bd632b5e5ad95cb172c203c39e35a85","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.1.tgz","integrity":"sha512-Tno2zgtLvPsuroNvJUN/wKmJH0RSoNsNiFt7gKM22G3ZFx/lmyPdcfeS5u/dZdNSfO/3mfeaLLgRDa01uUfCIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCf8BOcboEAKHbD5idk0VZnzuadDsNXNk/179lkktyKrwIgVjnzVr5lNxySboQ2MkjvdwwcW4cw1Eg2fKZNT4yaMrM="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.1.tgz_1461794199400_0.11995639745146036"}},"0.0.2":{"name":"angular2-in-memory-web-api","version":"0.0.2","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"0.0.0-0","@angular/http":"0.0.0-0","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.2","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"650fa8e3ca29d7d09666db1c1dc7fee8cbc67537","_id":"angular2-in-memory-web-api@0.0.2","_shasum":"58f7862e5116ec7c0de7f052b1f1fecbf37ca6be","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"58f7862e5116ec7c0de7f052b1f1fecbf37ca6be","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.2.tgz","integrity":"sha512-/qQMNV+qghCdGmmqGDKPIe27F1+PvnfcnTdLB6KOCRgKgheIWDtm1kmdku4P09hjQG1iEVbHcB3RgEapIKGo8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG/xO1S4MMNSNb/Ahxyx+uPKV5xTg7mCclwf1YwsTlIdAiB6tWxCZNtqWAPDk+O74sHYyKXR0gTes4p0ssDKDAVFDQ=="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.2.tgz_1461884264772_0.10311131342314184"}},"0.0.3":{"name":"angular2-in-memory-web-api","version":"0.0.3","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"0.0.0-2","@angular/http":"0.0.0-2","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.2","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"6eaf768da4f9fcdae202c47540a96e1f5790e4ab","_id":"angular2-in-memory-web-api@0.0.3","_shasum":"2c52daeb3bb4d4f2dcb033abd468c5f801656096","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"2c52daeb3bb4d4f2dcb033abd468c5f801656096","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.3.tgz","integrity":"sha512-oxrtOgLUa1W5BbLIpqLiwQ02KqDljucqtk7RbxJuYEXTHr6zs09wsfvHCxjcwPHVnfRDIxbkrmGK06A0QOHxRQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUxc9SFBU1lO7gntR6pSx5/ZcAvgJx57zUgcS1FABiwwIhANP1VHb1OakMSJ8NcujsE8cX0FkA6TaM0uLMjUHxxg32"}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.3.tgz_1461976515525_0.14215493109077215"}},"0.0.4":{"name":"angular2-in-memory-web-api","version":"0.0.4","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"0.0.0-3","@angular/http":"0.0.0-3","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"f48933275c099928987394497ac7dd2a32a884f4","_id":"angular2-in-memory-web-api@0.0.4","_shasum":"880aeeff9189f6fad205b93d1b1f2f5f5d60ca93","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"880aeeff9189f6fad205b93d1b1f2f5f5d60ca93","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.4.tgz","integrity":"sha512-Y8hmEvoBNEyhOCWR7x0HpcqitY5PqQoX36r57wMCEDGlWPSK6xVFBdKFR/fH5wSgDTAec+0eP0Jswrt21riWcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDblZ9hstgG6YYmlhFPXOHZ/BYI5WXoKYOGdu3zo23PfQIgMaXEiDUSXAEav96c+tXE+Zn7I5Rg7EK7AIse8wQaMsc="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.4.tgz_1462043723495_0.867844752734527"}},"0.0.5":{"name":"angular2-in-memory-web-api","version":"0.0.5","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"0.0.0-5","@angular/http":"0.0.0-5","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"ab67c6070ececcea60b5c9d5cdc3b76659cdd563","_id":"angular2-in-memory-web-api@0.0.5","_shasum":"fc6eb06fc9accb081858acb28d1d03ce6694dc9e","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"fc6eb06fc9accb081858acb28d1d03ce6694dc9e","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.5.tgz","integrity":"sha512-Cc7MuBDWiJitErM1EUXty6yUN7gNajumF3XQBjZSvEejrXhK3u1x0m3UucDJATZerrttPimekcHl7CBhb6X/rA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDObXWtpEi557NMcGSDqd8C05yFHaJkYG8IDzA32PgGvgIgGg9qVHYbEswuTylF3S9R1x2bLJuNViWzOcGZ5KE9WLY="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.5.tgz_1462173591600_0.051259866915643215"}},"0.0.6":{"name":"angular2-in-memory-web-api","version":"0.0.6","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"2.0.0-rc.0","@angular/http":"2.0.0-rc.0","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"4f9f978cc49bf30cac278411a5186f0ce61d6850","_id":"angular2-in-memory-web-api@0.0.6","_shasum":"183f889710b761cee38eef6ccac7282ab587fb3f","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"183f889710b761cee38eef6ccac7282ab587fb3f","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.6.tgz","integrity":"sha512-PqR5zpe+CohZkh8FJo8BjVU/RwmluQilWfjsmSjQWaRqSgAbSWh6feqjoru8J6LK75A8Wl9UBI9S9OHzvsgSVg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAPfb1AH+j8cF1YIx0Ewh2c/SDOckkKkusmT4arbKeo/AiEA2U0XR+tqa7f/xGX20UTRbQH0ILlfQUjTgpRJ1p5EjF4="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.6.tgz_1462240679473_0.7076339933555573"}},"0.0.7":{"name":"angular2-in-memory-web-api","version":"0.0.7","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","systemjs":"0.19.26","systemjs-builder":"^0.15.15","yargs":"^4.6.0"},"gitHead":"b69340f89cc942963d2b9ebccdf222fd55b16d58","_id":"angular2-in-memory-web-api@0.0.7","_shasum":"0f8e42916c4ca6eefd8b5a63f7e927272dcbcd83","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"0f8e42916c4ca6eefd8b5a63f7e927272dcbcd83","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.7.tgz","integrity":"sha512-3qBcDcO65Qseqy+qCoN+jZfzh6HT7Mjgci083PmZeNh31+F2heR6pB6BiCV535on7fSdREI7KPPFJNcfrGCszw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHpeOWxuPQ6/db2zzL8R2Fg1nBng7T4yHRX2zuBbEPONAiAaalZH4cJSmSfRJtGbBRPuTaezGgGbTdT5wRvxRu0kmA=="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.7.tgz_1462315011611_0.09504394209943712"}},"0.0.8":{"name":"angular2-in-memory-web-api","version":"0.0.8","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.6.0"},"gitHead":"dc5a4d15e7f33f3b37c30ebd0f027596cca2ab8d","_id":"angular2-in-memory-web-api@0.0.8","_shasum":"a2d04501f3c833ee37ffd86d98bd2bf6e7ff4973","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"a2d04501f3c833ee37ffd86d98bd2bf6e7ff4973","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.8.tgz","integrity":"sha512-fB+afg/qWTC6FDMYOAAicAeb/19Zh3XVWlYQIawbF23U/Up9vtPpIaKqfiInWO/mZLjp2I6vURRI2xLyAXfk+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDO91XHPOZ/4Kccmo2LlCJYzlVvZLr2LnY24O4PfyADFQIhANwgEAqjnn8I1kHHC6Rg+BY4BCtBLFmm9PdVQH0Wx7mH"}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.8.tgz_1463717933596_0.8116777283139527"}},"0.0.9":{"name":"angular2-in-memory-web-api","version":"0.0.9","description":"An in-memory web api for demos and tests","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","dependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","es6-shim":"^0.35.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"concurrently":"^2.0.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^0.8.1","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.6.0"},"gitHead":"3e4aff0fd79353414b1f238fc53d23d625b918e1","_id":"angular2-in-memory-web-api@0.0.9","_shasum":"5b01a0f3c319ed50be9faf1a4cd300549ac2724e","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"5b01a0f3c319ed50be9faf1a4cd300549ac2724e","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.9.tgz","integrity":"sha512-cN6vDW2TOVgc8XyWSnAs9Oa/KXM78jNnlJv4ZHODUXIV2JnYE0CpqHFNRIKr/JPNc9dcKYik/YJldcmcnTzd/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKnm3x4XndANdx0opXmTUD6mrMunAGzDfZM46RAgWJTAIhAP2O3ghanVIZ/4bQwDi2oroKm+PhYwOaJLCgm4LTkjSJ"}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.9.tgz_1463723053229_0.07639406900852919"}},"0.0.10":{"name":"angular2-in-memory-web-api","version":"0.0.10","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.0.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.0.4","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.6.0"},"gitHead":"e9d720a905bb09b4ba0f81dab3e4ac77ed61879e","_id":"angular2-in-memory-web-api@0.0.10","_shasum":"ae07e8ef3a4da4c55aaafddc3d69ef16c58524aa","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"ae07e8ef3a4da4c55aaafddc3d69ef16c58524aa","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.10.tgz","integrity":"sha512-yl4THi4hwBwQzMeSrBX5o4j+366h+FIB+eZFjYbcFymIUhb6KqbJpxeTN3nftWms+YlgK/itJEm/sdQjISnK2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID3r8MrAaN3AMPZNAPSdiqxcKQxXcyaS91xH4JrByOyjAiEAo+0n/07k9VJdzHxfTJWh1asDNZOiJv3NO3bVPN8SMVI="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.10.tgz_1463852436038_0.1249807293061167"}},"0.0.11":{"name":"angular2-in-memory-web-api","version":"0.0.11","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/core":"2.0.0-rc.1","@angular/http":"2.0.0-rc.1","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.0.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.0.4","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.11.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.2","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.6.0"},"gitHead":"86926e0b033abeb3791b34d0e2948c654558ebe7","_id":"angular2-in-memory-web-api@0.0.11","_shasum":"efa97b9e393897d711543acd9a5bd7d6d580065a","_from":".","_npmVersion":"3.8.2","_nodeVersion":"5.6.0","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"efa97b9e393897d711543acd9a5bd7d6d580065a","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.11.tgz","integrity":"sha512-0Xp5RHsykd/8r3ICpDTqrTViM3rGMaa44cli/47vBFQO9Sv+/pQONPCMC55vHc3iJpCBtFQYAQDpa25cMA3j4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIENIgoxG9GwnMJsq5vJrDBxXYDjEjqu+o8roiJG8ljyuAiEAvxEOWK2E/TmUNpbDiarVxAbU/6o62YUS1bYOIrdJRhs="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.11.tgz_1464399985747_0.8684368354734033"}},"0.0.12":{"name":"angular2-in-memory-web-api","version":"0.0.12","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.2","@angular/http":"2.0.0-rc.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/common":"2.0.0-rc.2","@angular/compiler":"2.0.0-rc.2","@angular/core":"2.0.0-rc.2","@angular/http":"2.0.0-rc.2","@angular/platform-browser":"2.0.0-rc.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.1.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"ecec3ccf1d1b4529dab7156b6494fafe438868be","_id":"angular2-in-memory-web-api@0.0.12","_shasum":"b5959f2ddec2ac4da35695a1802cf3c825d600da","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"b5959f2ddec2ac4da35695a1802cf3c825d600da","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.12.tgz","integrity":"sha512-Wj2iV16b0yZGigwum90GPAvz9B4tfORU+ioTQJ7wVS0AD9xDdHawc91Aezfi2aMGpz4NHMnflsQedM2c45Zwaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6Ah7EZRVUrBT7PjxvXIXh6O82UH59CP3M4DpRyuNgRgIhAN/pvxDs165Vev64N4Zh8Q1icAfJe2lnDOACm9JzOdr8"}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.12.tgz_1466026585967_0.37658182671293616"}},"0.0.13":{"name":"angular2-in-memory-web-api","version":"0.0.13","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.1.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"8075de96e98f2a78e13473957340a524abb2c15d","_id":"angular2-in-memory-web-api@0.0.13","_shasum":"ead2a92ed52972e693a54c522dc5f9045bc6d5bf","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"ead2a92ed52972e693a54c522dc5f9045bc6d5bf","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.13.tgz","integrity":"sha512-O4BUMftHJERKeXtDJ3GyVzcc6kPciCuloyZnWj0avJ927m7kjDIHb7jALLfEKo9cch+sAj8GsZAk9DMlMNzlwA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICS/+c+3eaVIWCgANLj+HidWaWkfdVCoMIDZryV1DKI8AiAShHHYAlsdOnZMnHj2uD0J7nZ2hSbXrOj8qTzH6ZgldQ=="}]},"maintainers":[{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.13.tgz_1467239831309_0.2940636358689517"}},"0.0.14":{"name":"angular2-in-memory-web-api","version":"0.0.14","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.4","@angular/http":"2.0.0-rc.4","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.1.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"ff3a458d07ddf7dc50c76e48d4011222629d1a90","_id":"angular2-in-memory-web-api@0.0.14","_shasum":"338de75e93b9d527429663516427e51bd18e0dd8","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"338de75e93b9d527429663516427e51bd18e0dd8","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.14.tgz","integrity":"sha512-iRPp+5V6Hxeo5/rQyOCDdQZ09xVXR8wac9prnPotzBrtDzxOl10ijhmb08yFJkFU6kFI8PvPZySFUyvlHwxYsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDPjsskHPzNlJS1JCqFer6Qzc4IZ1kKYcSiViD0b9nNBgIgNFvHRX9Mamh+gLLqxHHZaKv/1RV2AwVjQMRg6duOEio="}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.14.tgz_1467312966444_0.4411460948176682"}},"0.0.15":{"name":"angular2-in-memory-web-api","version":"0.0.15","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.5","@angular/http":"2.0.0-rc.5","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.1.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"1abe11987f919260abdcad0b0349c3ef2dc79e71","_id":"angular2-in-memory-web-api@0.0.15","_shasum":"107ae178719da8042f154bba21cfd91c7ac9c8d6","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"filipesilva","email":"filipematossilva@gmail.com"},"dist":{"shasum":"107ae178719da8042f154bba21cfd91c7ac9c8d6","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.15.tgz","integrity":"sha512-bBXni2l+hWJy1AaGoUIOnTbG2XIWSd7j6Ns0y0XpoKXQhsZO/Rep1xT/3Ui9QuIO1OLGh/mxWH1HlZuxm40CCQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOrD+iBNu6UZhrJr57fUUDI3d1wqFUKF3aobsMxgl63wIgeh5orDFiWvKouVvy3HB2EM2IIbkfIHzjuHYIKEtItWU="}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.15.tgz_1470765278700_0.6113433314021677"}},"0.0.16":{"name":"angular2-in-memory-web-api","version":"0.0.16","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.5","@angular/http":"2.0.0-rc.5","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.1.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"4864064af0d044b994ccc38817fcbfbac408097b","_id":"angular2-in-memory-web-api@0.0.16","_shasum":"4bb7c61e3307071dd3428395bfec17651fa787f2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"4bb7c61e3307071dd3428395bfec17651fa787f2","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.16.tgz","integrity":"sha512-PSzo9dyaCx8+PBWWdZLkr8wU0cOK7zOfquWqwcVcBXHPB5wHhzo3ph4uiJvsgjSWVXeYbDqFhikqZTuzi5Otag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHiqp8a03pBtqhoO8npupDIEGekktKve6+DBO47MSA7RAiEA49BB2k9Rg+acCe5Gh608dwGcQbH00rEx51hVtDpuriQ="}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.16.tgz_1471596738981_0.15457962127402425"}},"0.0.17":{"name":"angular2-in-memory-web-api","version":"0.0.17","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.5","@angular/http":"2.0.0-rc.5","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12","concurrently":"^2.1.0","core-js":"^2.4.0","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"5c72977fe0856312d561727b84f48444eb0f0bc1","_id":"angular2-in-memory-web-api@0.0.17","_shasum":"1f76744d645f0c013e9a7742acb724eb6125ac94","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"1f76744d645f0c013e9a7742acb724eb6125ac94","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.17.tgz","integrity":"sha512-qsZsIdndwc3J+EDFx5GMzd2Fptpw93+OLdX3Rp+ZMFOCLEabOJAFvIjr+OuIfTeP/d4Vvw+F7xL1539CtUMitQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCK7pEIpxn7fGzn87P5mTKkYHkretQarJpM2n14r061rwIgamx68GSuqT6K1RVI18zLXhUp3p/MwomrwRwqP2ZYSIk="}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.17.tgz_1471600291261_0.4308353222440928"}},"0.0.18":{"name":"angular2-in-memory-web-api","version":"0.0.18","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.6","@angular/http":"2.0.0-rc.6","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.11","zone.js":"^0.6.17"},"devDependencies":{"@angular/common":"2.0.0-rc.6","@angular/compiler":"2.0.0-rc.6","@angular/core":"2.0.0-rc.6","@angular/http":"2.0.0-rc.6","@angular/platform-browser":"2.0.0-rc.6","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.11","zone.js":"^0.6.17","concurrently":"^2.1.0","core-js":"^2.4.1","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"79d450c7126a8372cdd8f1972583e9f0a76586f3","_id":"angular2-in-memory-web-api@0.0.18","_shasum":"8ca83aa6735e6dd8092e06d742e0234965f581da","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"8ca83aa6735e6dd8092e06d742e0234965f581da","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.18.tgz","integrity":"sha512-H/ETs3sgTDaxpxSBsfK4kljCVhKFpvFC769i1ahNbKjXMUukJgdCe8ogwCgyEHWVB1sZjsJ5px/iSKIm+WUfVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCHTqNKBlPMBf29gzpUH6HaPrQSEhkFkyYcN/y8eYKWPgIhAI/gRFpA3sDPTuko1pk40IdaflQGSSWeFHjNCSp6Tx0C"}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.18.tgz_1472688945480_0.8444763217121363"}},"0.0.19":{"name":"angular2-in-memory-web-api","version":"0.0.19","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"2.0.0-rc.7","@angular/http":"2.0.0-rc.7","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","zone.js":"^0.6.21"},"devDependencies":{"@angular/common":"2.0.0-rc.7","@angular/compiler":"2.0.0-rc.7","@angular/core":"2.0.0-rc.7","@angular/http":"2.0.0-rc.7","@angular/platform-browser":"2.0.0-rc.7","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","zone.js":"^0.6.21","concurrently":"^2.1.0","core-js":"^2.4.1","lite-server":"^2.2.0","typescript":"^1.8.10","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"7e40004a7fdacd5b0d03db8b6d982d562fc597d9","_id":"angular2-in-memory-web-api@0.0.19","_shasum":"fa740f9b704a6de7aed152e8b57cc31973e73064","_from":".","_npmVersion":"3.10.7","_nodeVersion":"5.11.1","_npmUser":{"name":"foxandxss","email":"Foxandxss@gmail.com"},"dist":{"shasum":"fa740f9b704a6de7aed152e8b57cc31973e73064","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.19.tgz","integrity":"sha512-+au9xYhPG+ypyXeflYBpV2dBcbk4m9isDqfhIgvUhr2DMU52n/DNnLhkTGH3ko5UgXObdnF16LY50W/t8l7FBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCHxkhOgUmvCIO4CfKZpnx1VmpZnWOjix9TSCHyDTlLQACID7OUAzIFpIY4DsWVGWXHYx+wtBCfImj37pfWwB9uXfk"}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.19.tgz_1473755773423_0.07836851361207664"}},"0.0.20":{"name":"angular2-in-memory-web-api","version":"0.0.20","description":"An in-memory web api for demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/in-memory-backend.service.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","zone.js":"^0.6.23"},"devDependencies":{"@angular/common":"2.0.0-rc.7","@angular/compiler":"2.0.0-rc.7","@angular/core":"2.0.0-rc.7","@angular/http":"2.0.0-rc.7","@angular/platform-browser":"2.0.0-rc.7","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","zone.js":"^0.6.21","concurrently":"^2.1.0","core-js":"^2.4.1","lite-server":"^2.2.0","typescript":"^2.0.2","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"d515761bed87cf2339842e35c145218a9204e2b3","_id":"angular2-in-memory-web-api@0.0.20","_shasum":"d7dd822c668a9788f18634e9acf6740daa70f67a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"filipesilva","email":"filipematossilva@gmail.com"},"dist":{"shasum":"d7dd822c668a9788f18634e9acf6740daa70f67a","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.20.tgz","integrity":"sha512-M48gCUupnr+dCcBurubWq9l+4cBaKpzYHt21xT8TrUv0qj02recjkv4gWia8GrgG7IOCpgh483kzOeUHvee6qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCCkmVDDINixn58YX28u9aeJMOkzoLCtdLXLE+Ke2KB2QIhAKjiwAdt0e6JU0gTvFbwmjtBmEROJ90v7P9Sv3ki+Q4J"}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.20.tgz_1473907325880_0.18355939420871437"}},"0.0.21":{"name":"angular2-in-memory-web-api","version":"0.0.21","description":"An in-memory web api for Angular 2 demos and tests","main":"index.js","jsnext:main":"esm/index.js","scripts":{"tsc":"tsc","tsc:w":"tsc -w","lint":"tslint ./src/*.ts -t verbose","lite":"lite-server","live":"live-server","start":"concurrently \"npm run tsc:w\" \"npm run lite\" ","test":"karma start karma.conf.js","build-and-test":"concurrently  \"npm run tsc\" \"npm run test\"","http-server":"tsc && http-server","typings":"typings"},"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"keywords":[],"author":"","license":"ISC","bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"homepage":"https://github.com/angular/in-memory-web-api#readme","peerDependencies":{"@angular/core":"^2.0.0","@angular/http":"^2.0.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","zone.js":"^0.6.25"},"devDependencies":{"@angular/common":"^2.0.0","@angular/compiler":"^2.0.0","@angular/core":"^2.0.0","@angular/http":"^2.0.0","@angular/platform-browser":"^2.0.0","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.12","zone.js":"^0.6.25","concurrently":"^2.1.0","core-js":"^2.4.1","lite-server":"^2.2.0","tslint":"^3.15.1","typescript":"^2.0.2","typings":"^1.2.0","canonical-path":"0.0.2","http-server":"^0.9.0","lodash":"^4.13.1","jasmine-core":"~2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-htmlfile-reporter":"^0.3.1","karma-jasmine":"^1.0.2","rimraf":"^2.5.2","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.0.1","gulp-load-plugins":"^1.2.4","gulp-task-listing":"^1.0.1","gulp-util":"^3.0.7","yargs":"^4.7.1"},"gitHead":"0b471fcac0f53cb050e05e0f57d2c14cc300cdf5","_id":"angular2-in-memory-web-api@0.0.21","_shasum":"20b4ada639343862da3274d41f7a0c66996bf619","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"wardbell","email":"wardbell@hotmail.com"},"dist":{"shasum":"20b4ada639343862da3274d41f7a0c66996bf619","tarball":"https://registry.npmjs.org/angular2-in-memory-web-api/-/angular2-in-memory-web-api-0.0.21.tgz","integrity":"sha512-wAOgpnVr5VHizMLhT1RRnpHTgQT2sTV0GL61gvcbeQRczcwAgkw96NO0/tFfFD2EHHcOrkX0ZxiPnKsZfDEp3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJNK8k6qwOCmL6SO2SFJiMta/faxdMcIPvlOfm7DnesAIhANF4wxDnshwWFwVHKLHnfiySxQqRXnpJVz9Mj6h3TmXq"}]},"maintainers":[{"name":"filipesilva","email":"filipematossilva@gmail.com"},{"name":"wardbell","email":"wardbell@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-in-memory-web-api-0.0.21.tgz_1474824816233_0.9471730967052281"}}},"homepage":"https://github.com/angular/in-memory-web-api#readme","keywords":[],"repository":{"type":"git","url":"git+https://github.com/angular/in-memory-web-api.git"},"bugs":{"url":"https://github.com/angular/in-memory-web-api/issues"},"license":"ISC","readmeFilename":"README.md","users":{"jeandrebosch":true,"jamesbedont":true,"zeliosariex":true,"tashiro.tatsuki":true,"objectgyan":true}}