angular/packages/misc/angular-in-memory-web-api/package.json
Alex Rickabaugh 48aa0039ea refactor(compiler-cli): update peerDependencies to require rxjs ^7.4.0 (#43748)
RxJS 7 versions prior to 7.4.0 export ES5 code, whereas Angular
applications using RxJS 6 today use ES2015. This was fixed in RxJS 7.4.0
which exposes ES2015 entrypoints as well. This commit updates Angular's
peer dependencies to require the newer RxJS.

PR Close #43748
2021-10-06 15:57:59 -07:00

24 lines
No EOL
612 B
JSON

{
"name": "angular-in-memory-web-api",
"version": "0.12.0",
"description": "An in-memory web api for Angular demos and tests",
"author": "angular",
"license": "MIT",
"peerDependencies": {
"@angular/core": "^12.0.0",
"@angular/common": "^12.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
},
"dependencies": {
"tslib": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git",
"directory": "packages/misc/angular-in-memory-web-api"
},
"sideEffects": false,
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
}
}