{"maintainers":[{"name":"blesh","email":"ben@benlesh.com"}],"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"dist-tags":{"latest":"5.4.0"},"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"description":"Reactive Extensions for modern JavaScript","readme":"[![Build Status](https://travis-ci.org/ReactiveX/rxjs.svg?branch=master)](https://travis-ci.org/ReactiveX/rxjs)\n[![Coverage Status](https://coveralls.io/repos/github/ReactiveX/rxjs/badge.svg?branch=master)](https://coveralls.io/github/ReactiveX/rxjs?branch=master)\n[![npm version](https://badge.fury.io/js/%40reactivex%2Frxjs.svg)](http://badge.fury.io/js/%40reactivex%2Frxjs)\n[![Join the chat at https://gitter.im/Reactive-Extensions/RxJS](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Reactive-Extensions/RxJS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n[![Selenium Test Status](https://saucelabs.com/browser-matrix/rxjs5.svg)](https://saucelabs.com/u/rxjs5)\n\n# RxJS 5\n\nReactive Extensions Library for JavaScript. This is a rewrite of [Reactive-Extensions/RxJS](https://github.com/Reactive-Extensions/RxJS) and is the latest production-ready version of RxJS. This rewrite is meant to have better performance, better modularity, better debuggable call stacks, while staying mostly backwards compatible, with some breaking changes that reduce the API surface.\n\n[Apache 2.0 License](LICENSE.txt)\n\n- [Code of Conduct](CODE_OF_CONDUCT.md)\n- [Contribution Guidelines](CONTRIBUTING.md)\n- [Maintainer Guidelines](doc/maintainer-guidelines.md)\n- [Creating Operators](doc/operator-creation.md)\n- [Migrating From RxJS 4 to RxJS 5](MIGRATION.md)\n- [API Documentation (WIP)](http://reactivex.io/rxjs)\n\n## Versions In This Repository\n\n- [master](https://github.com/ReactiveX/rxjs/commits/master) - commits that will be included in the next _minor_ or _patch_ release\n- [next](https://github.com/ReactiveX/rxjs/commits/next) - commits that will be included in the next _major_ release (breaking changes)\n\nMost PRs should be made to **master**, unless you know it is a breaking change.\n\n## Important\n\nBy contributing or commenting on issues in this repository, whether you've read them or not, you're agreeing to the [Contributor Code of Conduct](CODE_OF_CONDUCT.md). Much like traffic laws, ignorance doesn't grant you immunity.\n\n## Installation and Usage\n\n### ES6 via npm\n\n```sh\nnpm install rxjs\n```\n\nTo import the entire core set of functionality:\n\n```js\nimport Rx from 'rxjs/Rx';\n\nRx.Observable.of(1,2,3)\n```\n\nTo import only what you need by patching (this is useful for size-sensitive bundling):\n\n```js\nimport { Observable } from 'rxjs/Observable';\nimport 'rxjs/add/observable/of';\nimport 'rxjs/add/operator/map';\n\nObservable.of(1,2,3).map(x => x + '!!!'); // etc\n```\n\nTo import what you need and use it with proposed [bind operator](https://github.com/tc39/proposal-bind-operator):\n\n> Note: This additional syntax requires [transpiler support](http://babeljs.io/docs/plugins/transform-function-bind/) and this syntax may be completely withdrawn from TC39 without notice! Use at your own risk.\n\n```js\nimport { Observable } from 'rxjs/Observable';\nimport { of } from 'rxjs/observable/of';\nimport { map } from 'rxjs/operator/map';\n\nObservable::of(1,2,3)::map(x => x + '!!!'); // etc\n```\n\n### CommonJS via npm\n\n```sh\nnpm install rxjs\n```\n\nImport all core functionality:\n\n```js\nvar Rx = require('rxjs/Rx');\n\nRx.Observable.of(1,2,3); // etc\n```\n\nImport only what you need and patch Observable (this is useful in size-sensitive bundling scenarios):\n\n```js\nvar Observable = require('rxjs/Observable').Observable;\n// patch Observable with appropriate methods\nrequire('rxjs/add/observable/of');\nrequire('rxjs/add/operator/map');\n\nObservable.of(1,2,3).map(function (x) { return x + '!!!'; }); // etc\n```\n\nImport operators and use them _manually_ you can do the following (this is also useful for bundling):\n\n```js\nvar of = require('rxjs/observable/of').of;\nvar map = require('rxjs/operator/map').map;\n\nmap.call(of(1,2,3), function (x) { return x + '!!!'; });\n```\n\nYou can also use the above method to build your own Observable and export it from your own module.\n\n\n### All Module Types (CJS/ES6/AMD/TypeScript) via npm\n\nTo install this library via [npm](https://www.npmjs.org) **version 3**, use the following command:\n\n```sh\nnpm install @reactivex/rxjs\n```\n\nIf you are using npm **version 2** before this library has achieved a stable version, you need to specify the library version explicitly:\n\n```sh\nnpm install @reactivex/rxjs@5.0.0\n```\n\n### CDN\n\nFor CDN, you can use [unpkg](https://unpkg.com/):\n  \nhttps://unpkg.com/rxjs/bundles/Rx.min.js\n\n#### Node.js Usage:\n\n```js\nvar Rx = require('@reactivex/rxjs');\n\nRx.Observable.of('hello world')\n  .subscribe(function(x) { console.log(x); });\n```\n\n## Goals\n\n- Provide better performance than preceding versions of RxJS\n- To model/follow the [Observable Spec Proposal](https://github.com/zenparsing/es-observable) to the observable.\n- Provide more modular file structure in a variety of formats\n- Provide more debuggable call stacks than preceding versions of RxJS\n\n## Building/Testing\n\nThe build and test structure is fairly primitive at the moment. There are various npm scripts that can be run:\n\n- build_es6: Transpiles the TypeScript files from `src/` to `dist/es6`\n- build_cjs: Transpiles the ES6 files from `dist/es6` to `dist/cjs`\n- build_amd: Transpiles the ES6 files from `dist/es6` to `dist/amd`\n- build_global: Transpiles/Bundles the CommonJS files from `dist/cjs` to `dist/global/Rx.js`\n- build_all: Performs all of the above in the proper order.\n- build_test: builds ES6, then CommonJS, then runs the tests with `jasmine`\n- build_perf: builds ES6, CommonJS, then global, then runs the performance tests with `protractor`\n- build_docs: generates API documentation from `dist/es6` to `dist/docs`\n- build_cover: runs `istanbul` code coverage against test cases\n- test: runs tests with `jasmine`, must have built prior to running.\n- tests2png: generates PNG marble diagrams from test cases.\n\n`npm run info` will list available script.\n\n### Example\n\n```sh\n# build all the things!\nnpm run build_all\n```\n\n## Performance Tests\n\nRun `npm run build_perf` or `npm run perf` to run the performance tests with `protractor`.\nRun `npm run perf_micro` to run micro performance test benchmarking operator.\n\n## Adding documentation\nRxNext uses [ESDoc](https://esdoc.org/) to generate API documentation. Refer to ESDoc's documentation for syntax. Run `npm run build_docs` to generate.\n\n## Generating PNG marble diagrams\n\nThe script `npm run tests2png` requires some native packages installed locally: `imagemagick`, `graphicsmagick`, and `ghostscript`.\n\nFor Mac OS X with [Homebrew](http://brew.sh/):\n\n- `brew install imagemagick`\n- `brew install graphicsmagick`\n- `brew install ghostscript`\n- You may need to install the Ghostscript fonts manually:\n  - Download the tarball from the [gs-fonts project](https://sourceforge.net/projects/gs-fonts)\n  - `mkdir -p /usr/local/share/ghostscript && tar zxvf /path/to/ghostscript-fonts.tar.gz -C /usr/local/share/ghostscript`\n\nFor Debian Linux:\n\n- `sudo add-apt-repository ppa:dhor/myway`\n- `apt-get install imagemagick`\n- `apt-get install graphicsmagick`\n- `apt-get install ghostscript`\n\nFor Windows and other Operating Systems, check the download instructions here:\n\n- http://imagemagick.org\n- http://www.graphicsmagick.org\n- http://www.ghostscript.com/\n","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"users":{"285858315":true,"ovrmrw":true,"curioussavage":true,"bsnote":true,"sallyone":true,"coolhanddev":true,"guidoschmidt":true,"markthethomas":true,"ndyumin":true,"joypeterson":true,"jonlailam":true,"jeandrebosch":true,"scytalezero":true,"stretchgz":true,"crutchfix":true,"andreasonny83":true,"abuddington":true,"nilz3ro":true,"rebolon":true,"lossless":true,"yanrivera":true,"largepuma":true,"cedx":true,"aquafadas":true,"knoja4":true,"ingpdw":true,"fenrir":true,"muroc":true,"ucdok":true,"jetbug123":true,"chirag8642":true,"liximomo":true,"rochejul":true,"yatsu":true,"vmleon":true,"guzgarcia":true,"leizongmin":true,"rodrilink":true,"carly-lee":true,"ognjen.jevremovic":true,"uldis.sturms":true,"rickyrattlesnake":true,"lassevolkmann":true,"ssljivic":true,"tedyav":true,"pavelusov":true,"sopepos":true,"junjiansyu":true,"satoru":true,"panlw":true,"danielbayley":true,"tsxuehu":true,"fxkraus":true,"n.sanitate":true,"1two3code":true,"desmondddd":true,"andrej-k":true,"dg1an3":true,"pddivine":true,"erikvold":true,"dpjayasekara":true},"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"license":"Apache-2.0","versions":{"5.0.0-alpha.10":{"name":"rxjs","version":"5.0.0-alpha.10","description":"Reactive Extensions for modern JavaScript","main":"index.js","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"scripts":{"build_all":"npm run build_es6 && npm run build_amd && npm run build_cjs && npm run build_global","build_amd":"rm -rf dist/amd && tsc typings/es6-shim/es6-shim.d.ts src/Rx.ts -m amd --outDir dist/amd --sourcemap --target ES5 --diagnostics","build_cjs":"rm -rf dist/cjs && tsc typings/es6-shim/es6-shim.d.ts src/Rx.ts src/Rx.KitchenSink.ts -m commonjs --outDir dist/cjs --sourcemap --target ES5 -d --diagnostics","build_es6":"rm -rf dist/es6 && tsc src/Rx.ts src/Rx.KitchenSink.ts --outDir dist/es6 --sourceMap --target ES6 -d --diagnostics","build_closure":"java -jar ./node_modules/google-closure-compiler/compiler.jar ./dist/global/Rx.js --create_source_map ./dist/global/Rx.min.js.map --js_output_file ./dist/global/Rx.min.js","build_global":"rm -rf dist/global && mkdir \"dist/global\" && browserify src/Rx.global.js --outfile dist/global/Rx.js && npm run build_closure","build_perf":"npm run build_es6 && npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf","build_test":"rm -rf dist/ && npm run lint && npm run build_es6 && npm run build_cjs && jasmine","build_cover":"rm -rf dist/ && npm run lint && npm run build_es6 && npm run build_cjs && npm run cover","build_docs":"./docgen.sh","lint_perf":"eslint perf/ --fix","lint_spec":"eslint spec/**/*.js --fix","lint_src":"tslint -c .tslintrc src/*.ts src/**/*.ts src/**/**/*.ts","lint":"npm run lint_src && npm run lint_spec && npm run lint_perf","cover":"istanbul cover -x \"*-spec.js index.js *-helper.js\" jasmine && npm run cover_remapping","cover_remapping":"remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped.json && remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped.lcov -t lcovonly && remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped -t html","test":"jasmine && markdown-doctest","watch":"watch \"echo triggering build && npm run build_test && echo build completed\" src -d -u -w=15","perf":"protractor protractor.conf.js","perf_micro":"node ./perf/micro/index.js","prepublish":"npm run build_all","commit":"git-cz"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","colors":"1.1.2","commitizen":"2.3.0","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.2.5","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","google-closure-compiler":"20150920.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.3.2","jasmine-core":"2.3.4","lodash":"3.10.1","markdown-doctest":"^0.2.0","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","tslint":"2.5.0","typescript":"1.8.0-dev.20151017","validate-commit-msg":"1.0.0","watch":"0.16.0"},"engines":{"npm":">=2.0.0"},"typings":"./dist/cjs/Rx.d.ts","gitHead":"688e838412cce86f9d72fb62dbd6c025cda6f1bc","_id":"rxjs@5.0.0-alpha.10","_shasum":"dfd259f079ee732c324249f2b28eb54d54a69c6d","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"angularcore","email":"angular-core+npm@google.com"},"dist":{"shasum":"dfd259f079ee732c324249f2b28eb54d54a69c6d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-alpha.10.tgz"},"maintainers":[{"name":"angularcore","email":"angular-core+npm@google.com"}],"directories":{}},"5.0.0-alpha.11":{"name":"rxjs","version":"5.0.0-alpha.11","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"scripts":{"build_all":"npm run build_es6 && npm run build_amd && npm run build_cjs && npm run build_global && npm run generate_packages","build_amd":"rm -rf dist/amd && tsc typings/es6-shim/es6-shim.d.ts src/Rx.ts -m amd --outDir dist/amd --sourcemap --target ES5 --diagnostics --pretty","build_cjs":"rm -rf dist/cjs && tsc typings/es6-shim/es6-shim.d.ts src/Rx.ts src/Rx.KitchenSink.ts -m commonjs --outDir dist/cjs --sourcemap --target ES5 -d --diagnostics --pretty","build_es6":"rm -rf dist/es6 && tsc src/Rx.ts src/Rx.KitchenSink.ts --outDir dist/es6 --sourceMap --target ES6 -d --diagnostics --pretty","build_closure":"java -jar ./node_modules/google-closure-compiler/compiler.jar ./dist/global/Rx.js --language_in ECMASCRIPT5 --create_source_map ./dist/global/Rx.min.js.map --js_output_file ./dist/global/Rx.min.js","build_global":"rm -rf dist/global && mkdir \"dist/global\" && browserify src/Rx.global.js --outfile dist/global/Rx.js && npm run build_closure","build_perf":"npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf","build_test":"rm -rf dist/ && npm run lint && npm run build_cjs && jasmine","build_cover":"rm -rf dist/ && npm run lint && npm run build_cjs && npm run cover","build_docs":"./docgen.sh","lint_perf":"eslint perf/ --fix","lint_spec":"eslint spec/**/*.js --fix","lint_src":"tslint -c .tslintrc src/*.ts src/**/*.ts src/**/**/*.ts","lint":"npm run lint_src && npm run lint_spec && npm run lint_perf","cover":"istanbul cover -x \"*-spec.js index.js *-helper.js spec/helpers/*\" ./node_modules/jasmine/bin/jasmine.js && npm run cover_remapping","cover_remapping":"remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped.json && remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped.lcov -t lcovonly && remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped -t html","test":"jasmine","tests2png":"mkdirp img && JASMINE_CONFIG_PATH=spec/support/tests2png.json jasmine","watch":"watch \"echo triggering build && npm run build_test && echo build completed\" src -d -u -w=15","perf":"protractor protractor.conf.js","perf_micro":"node ./perf/micro/index.js","generate_packages":"node .make-packages.js","commit":"git-cz"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","colors":"1.1.2","commitizen":"2.4.4","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.2.5","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20151015.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.3.2","jasmine-core":"2.3.4","lodash":"3.10.1","markdown-doctest":"^0.2.0","mkdirp":"0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","tslint":"2.5.0","typescript":"1.8.0-dev.20151115","validate-commit-msg":"1.0.0","watch":"0.16.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","_id":"rxjs@5.0.0-alpha.11","_shasum":"95d10db3a3399cdb3b382ec3609b6a10ca59e990","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"95d10db3a3399cdb3b382ec3609b6a10ca59e990","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-alpha.11.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"directories":{}},"5.0.0-alpha.12":{"name":"rxjs","version":"5.0.0-alpha.12","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","colors":"1.1.2","commitizen":"2.4.4","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.2.5","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20151015.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.3.2","jasmine-core":"2.3.4","lodash":"3.10.1","markdown-doctest":"^0.2.0","mkdirp":"^0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","tslint":"2.5.0","typescript":"1.8.0-dev.20151115","validate-commit-msg":"1.0.0","watch":"0.16.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","_id":"rxjs@5.0.0-alpha.12","scripts":{},"_shasum":"c3625fb86742e4f9f52890b101cdf65b2274c0ab","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"c3625fb86742e4f9f52890b101cdf65b2274c0ab","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-alpha.12.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"directories":{}},"5.0.0-alpha.13":{"engines":{"npm":">=2.0.0"},"main":"Rx.js","typings":"Rx.d.ts","description":"Reactive Extensions for modern JavaScript","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"}],"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"version":"5.0.0-alpha.13","keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"license":"Apache-2.0","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","colors":"1.1.2","commitizen":"2.4.4","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.4.3","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20151015.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.4.1","jasmine-core":"2.4.1","lodash":"3.10.1","markdown-doctest":"^0.3.0","mkdirp":"^0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","tslint":"2.5.0","typescript":"1.8.0-dev.20151115","validate-commit-msg":"1.0.0","watch":"0.16.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"name":"rxjs","homepage":"https://github.com/ReactiveX/RxJS","_id":"rxjs@5.0.0-alpha.13","scripts":{},"_shasum":"925e8b9402b824ddc969ba5a3fcbac212db944c5","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"925e8b9402b824ddc969ba5a3fcbac212db944c5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-alpha.13.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"directories":{}},"5.0.0-alpha.14":{"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"name":"rxjs","keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"homepage":"https://github.com/ReactiveX/RxJS","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"}],"devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","colors":"1.1.2","commitizen":"2.4.4","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.4.3","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20151015.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.4.1","jasmine-core":"2.4.1","lodash":"3.10.1","markdown-doctest":"^0.3.0","madge":"^0.5.3","mkdirp":"^0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","tslint":"3.2.0-dev.1","typescript":"1.8.0-dev.20151115","validate-commit-msg":"1.0.0","watch":"0.16.0"},"typings":"Rx.d.ts","license":"Apache-2.0","version":"5.0.0-alpha.14","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"description":"Reactive Extensions for modern JavaScript","engines":{"npm":">=2.0.0"},"main":"Rx.js","_id":"rxjs@5.0.0-alpha.14","scripts":{},"_shasum":"30d5cf2673e969025c869e521cac5e89bc77731a","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"30d5cf2673e969025c869e521cac5e89bc77731a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-alpha.14.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"directories":{}},"5.0.0-beta.0":{"name":"rxjs","engines":{"npm":">=2.0.0"},"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"main":"Rx.js","author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"version":"5.0.0-beta.0","homepage":"https://github.com/ReactiveX/RxJS","license":"Apache-2.0","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"description":"Reactive Extensions for modern JavaScript","devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","colors":"1.1.2","commitizen":"2.4.4","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.4.3","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20151015.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.4.1","jasmine-core":"2.4.1","karma":"0.13.15","karma-browserify":"4.4.2","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.6","lodash":"3.10.1","madge":"^0.5.3","markdown-doctest":"^0.3.0","mkdirp":"^0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","systemjs":"^0.19.6","systemjs-builder":"^0.10.6","tslint":"3.2.0-dev.1","typescript":"1.8.0-dev.20151115","validate-commit-msg":"1.0.0","watch":"0.16.0"},"typings":"Rx.d.ts","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"ojkwon@nvidia.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"_id":"rxjs@5.0.0-beta.0","scripts":{},"_shasum":"1945ac5aac66d338456c0c0a66a91d88ae81410f","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"1945ac5aac66d338456c0c0a66a91d88ae81410f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.0.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"directories":{}},"5.0.0-beta.1":{"devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-alpha.37.2","browserify":"11.0.0","color":"^0.11.1","colors":"1.1.2","commitizen":"2.4.4","coveralls":"2.11.4","cz-conventional-changelog":"1.1.4","esdoc":"0.4.3","eslint":"1.5.1","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20151015.0.0","http-server":"0.8.0","istanbul":"0.3.22","jasmine":"2.4.1","jasmine-ajax":"^3.2.0","jasmine-core":"2.4.1","karma":"0.13.15","karma-browserify":"4.4.2","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.6","karma-sauce-launcher":"0.3.0","lodash":"3.10.1","madge":"^0.5.3","markdown-doctest":"^0.3.0","minimist":"^1.2.0","mkdirp":"^0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.3.1","rx":"latest","systemjs":"^0.19.6","systemjs-builder":"^0.10.6","tslint":"3.2.0-dev.1","typescript":"1.8.0-dev.20151115","validate-commit-msg":"1.0.0","watch":"0.16.0","xmlhttprequest":"^1.8.0"},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"typings":"Rx.d.ts","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"license":"Apache-2.0","version":"5.0.0-beta.1","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"ojkwon@nvidia.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"name":"rxjs","homepage":"https://github.com/ReactiveX/RxJS","engines":{"npm":">=2.0.0"},"_id":"rxjs@5.0.0-beta.1","scripts":{},"_shasum":"7d4f623146e93daa23ee245af58b4ca8bacc0d44","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"7d4f623146e93daa23ee245af58b4ca8bacc0d44","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.1.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"directories":{}},"5.0.0-beta.2":{"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"name":"rxjs","license":"Apache-2.0","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"ojkwon@nvidia.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"engines":{"npm":">=2.0.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"main":"Rx.js","version":"5.0.0-beta.2","keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"devDependencies":{"benchmark":"1.0.0","benchpress":"2.0.0-beta.1","browserify":"11.0.0","color":"^0.11.1","colors":"1.1.2","commitizen":"2.5.0","coveralls":"2.11.6","cz-conventional-changelog":"1.1.5","esdoc":"0.4.3","eslint":"2.0.0-beta.3","fs-extra":"0.24.0","ghooks":"0.3.2","glob":"5.0.14","gm":"1.21.1","google-closure-compiler":"20160125.0.0","gzip-size":"^3.0.0","http-server":"0.8.0","istanbul":"0.4.2","jasmine":"2.4.1","jasmine-ajax":"3.2.0","jasmine-core":"2.4.1","karma":"0.13.19","karma-browserify":"^5.0.1","karma-chrome-launcher":"0.2.2","karma-jasmine":"^0.3.6","karma-sauce-launcher":"0.3.0","lodash":"4.1.0","madge":"^0.5.3","markdown-doctest":"^0.3.0","minimist":"^1.2.0","mkdirp":"^0.5.1","platform":"1.3.0","promise":"7.0.3","protractor":"2.5.1","remap-istanbul":"0.5.1","rx":"latest","systemjs":"^0.19.6","systemjs-builder":"^0.10.6","tslint":"3.3.0-dev.2","typescript":"1.9.0-dev.20160128","validate-commit-msg":"1.1.1","watch":"0.16.0","watchify":"3.7.0","xmlhttprequest":"1.8.0"},"typings":"Rx.d.ts","description":"Reactive Extensions for modern JavaScript","homepage":"https://github.com/ReactiveX/RxJS","_id":"rxjs@5.0.0-beta.2","scripts":{},"_shasum":"f775df8b8598c0657031e5ff8ff8251e1c5c0185","_from":".","_npmVersion":"3.3.10","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"f775df8b8598c0657031e5ff8ff8251e1c5c0185","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.2.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.2.tgz_1455138523425_0.768723902059719"},"directories":{}},"5.0.0-beta.3":{"name":"rxjs","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_closure_kitchensink":"Minify Global kitchenSink build using closure compiler","build_global":"Build Global package, then minify core & kitchensink build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute jasmine test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_jasmine":"Execute jasmine test runner against existing test spec build","test_karma":"Execute karma test runner against existing test spec build","test":"Clean up existing test spec build, build test spec and execute jasmine test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"engines":{"npm":">=2.0.0"},"license":"Apache-2.0","devDependencies":{"babel-polyfill":"^6.7.2","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.7.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.5","esdoc":"^0.4.6","eslint":"^2.4.0","fs-extra":"^0.26.5","ghooks":"^1.0.3","glob":"^7.0.3","gm":"1.21.1","google-closure-compiler":"^20160208.5.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.2","jasmine":"2.4.1","jasmine-ajax":"3.2.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-browserify":"5.0.2","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.7","karma-sauce-launcher":"^0.3.1","lodash":"^4.6.1","madge":"^0.5.3","markdown-doctest":"^0.3.2","minimist":"^1.2.0","mkdirp":"^0.5.1","npm-scripts-info":"^0.3.4","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.5.1","rx":"latest","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.5.0","typescript":"^1.8.7","typings":"^0.7.8","validate-commit-msg":"^2.3.1","watch":"^0.17.1","watchify":"3.7.0","xmlhttprequest":"1.8.0"},"main":"Rx.js","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"typings":"Rx.d.ts","description":"Reactive Extensions for modern JavaScript","version":"5.0.0-beta.3","_id":"rxjs@5.0.0-beta.3","scripts":{},"_shasum":"eb1b1f3e6fa489a8d853b1a7f4936d8edb4fb060","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"eb1b1f3e6fa489a8d853b1a7f4936d8edb4fb060","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.3.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.3.tgz_1458586347042_0.03796531888656318"},"directories":{}},"5.0.0-beta.4":{"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"name":"rxjs","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"license":"Apache-2.0","engines":{"npm":">=2.0.0"},"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"version":"5.0.0-beta.4","homepage":"https://github.com/ReactiveX/RxJS","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_closure_kitchensink":"Minify Global kitchenSink build using closure compiler","build_global":"Build Global package, then minify core & kitchensink build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute jasmine test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_jasmine":"Execute jasmine test runner against existing test spec build","test_karma":"Execute karma test runner against existing test spec build","test":"Clean up existing test spec build, build test spec and execute jasmine test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"typings":"Rx.d.ts","main":"Rx.js","devDependencies":{"babel-polyfill":"^6.7.2","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.7.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.5","esdoc":"^0.4.6","eslint":"^2.4.0","fs-extra":"^0.26.5","ghooks":"^1.0.3","glob":"^7.0.3","gm":"1.21.1","google-closure-compiler":"^20160208.5.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.2","jasmine":"2.4.1","jasmine-ajax":"3.2.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-browserify":"5.0.2","karma-chrome-launcher":"0.2.2","karma-jasmine":"0.3.7","karma-sauce-launcher":"^0.3.1","lodash":"^4.6.1","madge":"^0.5.3","markdown-doctest":"^0.3.2","minimist":"^1.2.0","mkdirp":"^0.5.1","npm-run-all":"^1.5.3","npm-scripts-info":"^0.3.4","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.5.1","rx":"latest","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.5.0","typescript":"^1.8.7","typings":"^0.7.8","validate-commit-msg":"^2.3.1","watch":"^0.17.1","watchify":"3.7.0","xmlhttprequest":"1.8.0"},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"description":"Reactive Extensions for modern JavaScript","_id":"rxjs@5.0.0-beta.4","scripts":{},"_shasum":"768d7fe3fabd9a2ad6a3b4863df3a2643072ccd0","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"768d7fe3fabd9a2ad6a3b4863df3a2643072ccd0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.4.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.4.tgz_1459212136100_0.3436521382536739"},"directories":{}},"5.0.0-beta.5":{"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"main":"Rx.js","license":"Apache-2.0","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_closure_kitchensink":"Minify Global kitchenSink build using closure compiler","build_global":"Build Global package, then minify core & kitchensink build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_karma":"Execute karma test runner against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"engines":{"npm":">=2.0.0"},"devDependencies":{"babel-polyfill":"^6.7.2","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.0","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.7.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.5","esdoc":"^0.4.6","eslint":"^2.4.0","fs-extra":"^0.26.5","ghooks":"^1.0.3","glob":"^7.0.3","gm":"1.21.1","google-closure-compiler":"^20160208.5.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.2","karma":"^0.13.22","karma-browserify":"5.0.2","karma-chrome-launcher":"0.2.2","karma-sauce-launcher":"^0.3.1","lodash":"^4.6.1","madge":"^0.5.3","markdown-doctest":"^0.3.2","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^2.4.5","npm-run-all":"^1.5.3","npm-scripts-info":"^0.3.4","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.5.1","rx":"latest","sinon":"^1.17.3","sinon-chai":"^2.8.0","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.5.0","typescript":"^1.8.7","typings":"^0.7.8","validate-commit-msg":"^2.3.1","watch":"^0.17.1","watchify":"3.7.0","xmlhttprequest":"1.8.0"},"name":"rxjs","keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"homepage":"https://github.com/ReactiveX/RxJS","config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"typings":"Rx.d.ts","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"description":"Reactive Extensions for modern JavaScript","version":"5.0.0-beta.5","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"_id":"rxjs@5.0.0-beta.5","scripts":{},"_shasum":"8b99ca3e40cc0605a5ea0b7578a44ffed679ef02","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"8b99ca3e40cc0605a5ea0b7578a44ffed679ef02","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.5.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.5.tgz_1459833453679_0.7578055155463517"},"directories":{}},"5.0.0-beta.6":{"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"license":"Apache-2.0","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"version":"5.0.0-beta.6","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"engines":{"npm":">=2.0.0"},"description":"Reactive Extensions for modern JavaScript","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_closure_kitchensink":"Minify Global kitchenSink build using closure compiler","build_global":"Build Global package, then minify core & kitchensink build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"main":"Rx.js","name":"rxjs","homepage":"https://github.com/ReactiveX/RxJS","typings":"Rx.d.ts","author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"devDependencies":{"babel-polyfill":"^6.7.2","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.0","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.7.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.5","esdoc":"^0.4.6","eslint":"^2.4.0","fs-extra":"^0.26.5","ghooks":"^1.0.3","glob":"^7.0.3","gm":"1.21.1","google-closure-compiler":"^20160208.5.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.2","lodash":"^4.6.1","madge":"^0.5.3","markdown-doctest":"^0.3.2","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^2.4.5","mocha-in-sauce":"0.0.1","npm-run-all":"^1.5.3","npm-scripts-info":"^0.3.4","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.5.1","rx":"latest","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.5.0","typescript":"^1.8.7","typings":"^0.7.8","validate-commit-msg":"^2.3.1","watch":"^0.17.1","watchify":"3.7.0","webpack":"^1.12.14","xmlhttprequest":"1.8.0"},"_id":"rxjs@5.0.0-beta.6","scripts":{},"_shasum":"cb6dc46d6ddfedfeefc9b15dafd09c34a4370d23","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"cb6dc46d6ddfedfeefc9b15dafd09c34a4370d23","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.6.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.6.tgz_1460493695519_0.9258141233585775"},"directories":{}},"5.0.0-beta.7":{"dependencies":{"symbol-observable":"^0.2.4"},"name":"rxjs","homepage":"https://github.com/ReactiveX/RxJS","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_closure_kitchensink":"Minify Global kitchenSink build using closure compiler","build_global":"Build Global package, then minify core & kitchensink build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"description":"Reactive Extensions for modern JavaScript","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"typings":"Rx.d.ts","engines":{"npm":">=2.0.0"},"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"version":"5.0.0-beta.7","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"main":"Rx.js","author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"devDependencies":{"babel-polyfill":"^6.7.2","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.0","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.7.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.5","esdoc":"^0.4.6","eslint":"^2.4.0","fs-extra":"^0.26.5","ghooks":"^1.0.3","glob":"^7.0.3","gm":"1.21.1","google-closure-compiler":"^20160208.5.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.2","lodash":"^4.6.1","madge":"^0.5.3","markdown-doctest":"^0.3.2","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^2.4.5","mocha-in-sauce":"0.0.1","npm-run-all":"^1.5.3","npm-scripts-info":"^0.3.4","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.5.1","rx":"latest","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.5.0","typescript":"^1.8.10","typings":"^0.7.8","validate-commit-msg":"^2.3.1","watch":"^0.17.1","watchify":"3.7.0","webpack":"^1.12.14","xmlhttprequest":"1.8.0"},"license":"Apache-2.0","_id":"rxjs@5.0.0-beta.7","scripts":{},"_shasum":"8911d8779cf2cc56ba87fef213edbf9a47140e59","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"8911d8779cf2cc56ba87fef213edbf9a47140e59","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.7.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.7.tgz_1461786646758_0.1863141085486859"},"directories":{}},"5.0.0-beta.8":{"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"typings":"Rx.d.ts","version":"5.0.0-beta.8","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"description":"Reactive Extensions for modern JavaScript","engines":{"npm":">=2.0.0"},"main":"Rx.js","name":"rxjs","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"devDependencies":{"babel-polyfill":"^6.7.2","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.0","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.1","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.5","doctoc":"^1.0.0","esdoc":"^0.4.6","eslint":"^2.4.0","fs-extra":"^0.26.5","ghooks":"^1.0.3","glob":"^7.0.3","gm":"1.21.1","google-closure-compiler":"^20160208.5.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.2","lodash":"^4.6.1","madge":"^0.5.3","markdown-doctest":"^0.3.2","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^2.4.5","mocha-in-sauce":"0.0.1","npm-run-all":"^1.5.3","npm-scripts-info":"^0.3.4","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.5.1","rx":"latest","shx":"^0.1.1","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.5.0","typescript":"^1.8.10","typings":"^0.7.8","validate-commit-msg":"^2.3.1","watch":"^0.17.1","watchify":"3.7.0","webpack":"^1.12.14","xmlhttprequest":"1.8.0"},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"dependencies":{"symbol-observable":"^0.2.4"},"license":"Apache-2.0","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"homepage":"https://github.com/ReactiveX/RxJS","_id":"rxjs@5.0.0-beta.8","scripts":{},"_shasum":"0ec48ab1d5b10b01a9d2ef73832880f361e784c6","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"0ec48ab1d5b10b01a9d2ef73832880f361e784c6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.8.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.8.tgz_1463884895825_0.40319760399870574"},"directories":{}},"5.0.0-beta.9":{"devDependencies":{"babel-polyfill":"6.9.1","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.6","doctoc":"^1.0.0","esdoc":"^0.4.6","eslint":"^2.12.0","fs-extra":"^0.30.0","ghooks":"1.2.3","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler":"20160517.1.0","gzip-size":"^3.0.0","http-server":"^0.9.0","istanbul":"0.4.3","lodash":"4.13.1","madge":"^0.5.3","markdown-doctest":"^0.7.0","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"2.5.3","mocha-in-sauce":"0.0.1","npm-run-all":"2.1.1","npm-scripts-info":"^0.3.4","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","remap-istanbul":"0.6.4","rx":"latest","shx":"^0.1.2","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","systemjs":"^0.19.24","systemjs-builder":"^0.10.6","tslint":"^3.11.0","typescript":"^1.8.10","typings":"^1.0.5","validate-commit-msg":"^2.3.1","watch":"^0.18.0","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"name":"rxjs","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"typings":"Rx.d.ts","contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"version":"5.0.0-beta.9","description":"Reactive Extensions for modern JavaScript","keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"main":"Rx.js","homepage":"https://github.com/ReactiveX/RxJS","dependencies":{"symbol-observable":"0.2.4"},"engines":{"npm":">=2.0.0"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"_id":"rxjs@5.0.0-beta.9","scripts":{},"_shasum":"c6817ea853f3b57b39d71306a7506814cb124861","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"c6817ea853f3b57b39d71306a7506814cb124861","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.9.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.9.tgz_1465866294732_0.15694721438921988"},"directories":{}},"5.0.0-beta.10":{"main":"Rx.js","description":"Reactive Extensions for modern JavaScript","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","devDependencies":{"babel-polyfill":"6.9.1","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.6","doctoc":"^1.0.0","esdoc":"^0.4.7","eslint":"^2.12.0","fs-extra":"^0.30.0","ghooks":"1.2.3","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler":"20160517.1.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lodash":"4.13.1","madge":"^0.5.4","markdown-doctest":"^0.7.0","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"2.5.3","mocha-in-sauce":"0.0.1","npm-run-all":"^2.1.2","npm-scripts-info":"^0.3.4","nyc":"^6.6.1","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rx":"latest","shx":"^0.1.2","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","systemjs":"^0.19.31","systemjs-builder":"^0.15.23","tslint":"^3.11.0","typescript":"^1.8.10","typings":"^1.2.0","validate-commit-msg":"^2.3.1","watch":"^0.18.0","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"homepage":"https://github.com/ReactiveX/RxJS","keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"engines":{"npm":">=2.0.0"},"bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"version":"5.0.0-beta.10","name":"rxjs","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js"}},"dependencies":{"symbol-observable":"^1.0.1"},"typings":"Rx.d.ts","_id":"rxjs@5.0.0-beta.10","scripts":{},"_shasum":"92d4f94ddd27d978ca99d19dcdeac42cf1401b7a","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"92d4f94ddd27d978ca99d19dcdeac42cf1401b7a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.10.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.10.tgz_1467826202100_0.6127895514946431"},"directories":{}},"5.0.0-beta.11":{"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"devDependencies":{"babel-polyfill":"6.9.1","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.6","doctoc":"^1.0.0","esdoc":"^0.4.7","eslint":"^2.12.0","fs-extra":"^0.30.0","ghooks":"1.2.3","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler":"20160517.1.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^1.0.2","lodash":"4.13.1","madge":"^0.5.4","markdown-doctest":"^0.7.0","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"2.5.3","mocha-in-sauce":"0.0.1","npm-run-all":"^2.1.2","npm-scripts-info":"^0.3.4","nyc":"^6.6.1","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rx":"latest","shx":"^0.1.2","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslint":"^3.11.0","typescript":"^1.8.10","typings":"^1.2.0","validate-commit-msg":"^2.3.1","watch":"^0.18.0","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"typings":"Rx.d.ts","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"main":"Rx.js","scripts-info":{"info":"List available script","build_all":"Build all packages(ES6, CJS, AMD, Global) and generate packages","build_amd":"Build AMD package with clean up existing build, copy source into dist","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_amd":"Clean up existing AMD package output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_amd":"Compile codebase into AMD module","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"name":"rxjs","engines":{"npm":">=2.0.0"},"version":"5.0.0-beta.11","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"description":"Reactive Extensions for modern JavaScript","homepage":"https://github.com/ReactiveX/RxJS","lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"dependencies":{"symbol-observable":"^1.0.1"},"config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"license":"Apache-2.0","_id":"rxjs@5.0.0-beta.11","scripts":{},"_shasum":"abac447d6f801c1bf066b7f0e49c65d2fee36ca2","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"abac447d6f801c1bf066b7f0e49c65d2fee36ca2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.11.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.11.tgz_1470762149276_0.8274131978396326"},"directories":{}},"5.0.0-beta.12":{"config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"name":"rxjs","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"version":"5.0.0-beta.12","license":"Apache-2.0","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","engines":{"npm":">=2.0.0"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"typings":"Rx.d.ts","repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"dependencies":{"symbol-observable":"^1.0.1"},"devDependencies":{"babel-polyfill":"6.9.1","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.2","coveralls":"^2.11.8","cz-conventional-changelog":"1.1.6","doctoc":"^1.0.0","esdoc":"^0.4.7","eslint":"^2.12.0","fs-extra":"^0.30.0","ghooks":"1.2.3","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler":"20160517.1.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^1.0.2","lodash":"4.13.1","madge":"^0.5.4","markdown-doctest":"^0.7.0","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"2.5.3","mocha-in-sauce":"0.0.1","npm-run-all":"^2.1.2","npm-scripts-info":"^0.3.4","nyc":"^6.6.1","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rx":"latest","shx":"^0.1.2","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslint":"^3.11.0","typescript":"^1.8.10","typings":"^1.2.0","validate-commit-msg":"^2.3.1","watch":"^0.18.0","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"homepage":"https://github.com/ReactiveX/RxJS","_id":"rxjs@5.0.0-beta.12","scripts":{},"_shasum":"cdfde2d8c4639d20ae7794bff8fddf32da7ad337","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"cdfde2d8c4639d20ae7794bff8fddf32da7ad337","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-beta.12.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.12.tgz_1473443366415_0.7348345792852342"},"directories":{}},"5.0.0-rc.1":{"name":"rxjs","version":"5.0.0-rc.1","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_dist_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"babel-polyfill":"6.9.1","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","browserify":"13.0.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","esdoc":"^0.4.7","eslint":"^2.12.0","fs-extra":"^0.30.0","ghooks":"1.2.3","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^1.0.2","lodash":"^4.15.0","madge":"^0.5.4","markdown-doctest":"^0.7.0","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslint":"^3.15.1","typescript":"^2.0.3","typings":"^1.3.3","validate-commit-msg":"^2.3.1","watch":"^0.18.0","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.0-rc.1","scripts":{},"_shasum":"9e02b7044da81a2d5e138908d22af77e22d96973","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"9e02b7044da81a2d5e138908d22af77e22d96973","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-rc.1.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-rc.1.tgz_1476146692296_0.23812392121180892"},"directories":{}},"5.0.0-rc.2":{"name":"rxjs","version":"5.0.0-rc.2","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"@types/chai":"^3.4.34","@types/lodash":"^4.14.37","@types/mocha":"^2.2.32","@types/sinon":"^1.16.31","@types/sinon-chai":"^2.7.27","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"^2.0.6","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.0-rc.2","scripts":{},"_shasum":"d38206f50eeb1e77b0832a74c1c2adeeed5ec2b7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"d38206f50eeb1e77b0832a74c1c2adeeed5ec2b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-rc.2.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-rc.2.tgz_1478386706396_0.030859009362757206"},"directories":{}},"5.0.0-rc.3":{"name":"rxjs","version":"5.0.0-rc.3","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"^2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.0-rc.3","scripts":{},"_shasum":"d8bc390d83277846b2d2afa1acf3c5f4f114a8d5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"d8bc390d83277846b2d2afa1acf3c5f4f114a8d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-rc.3.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-rc.3.tgz_1479178597869_0.5015206888783723"},"directories":{}},"5.0.0-rc.4":{"name":"rxjs","version":"5.0.0-rc.4","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"^2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.0-rc.4","scripts":{},"_shasum":"a4d08bc5d7f30d48ed7130e2995490c326a325c4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"a4d08bc5d7f30d48ed7130e2995490c326a325c4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-rc.4.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-rc.4.tgz_1479596477592_0.11765522882342339"},"directories":{}},"5.0.0-rc.5":{"name":"rxjs","version":"5.0.0-rc.5","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"^2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.0-rc.5","scripts":{},"_shasum":"8cbd17fc242a54c07ef9116da23b0ec8e7d5cea9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"8cbd17fc242a54c07ef9116da23b0ec8e7d5cea9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0-rc.5.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-rc.5.tgz_1481073535976_0.016786718042567372"},"directories":{}},"5.0.0":{"name":"rxjs","version":"5.0.0","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"^2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.0","scripts":{},"_shasum":"4c31630a35cb36acde83afa4baeeba6ccede2405","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"4c31630a35cb36acde83afa4baeeba6ccede2405","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.0.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0.tgz_1481590483247_0.8612657145131379"},"directories":{}},"5.0.1":{"name":"rxjs","version":"5.0.1","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.1","scripts":{},"_shasum":"3a69bdf9f0ca0a986303370d4708f72bdfac8356","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"3a69bdf9f0ca0a986303370d4708f72bdfac8356","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.1.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.1.tgz_1481591656580_0.9320746487937868"},"directories":{}},"5.0.2":{"name":"rxjs","version":"5.0.2","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"eslint":"*.@(js)","tslint":"*.@(ts)"},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.1.0","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^3.15.1","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.2","scripts":{},"_shasum":"cc6513756daa93cab4085c1b5a19a3e28fb6c6bf","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"cc6513756daa93cab4085c1b5a19a3e28fb6c6bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.2.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rxjs-5.0.2.tgz_1482455967707_0.5529166762717068"},"directories":{}},"5.0.3":{"name":"rxjs","version":"5.0.3","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.js","pre-commit":"npm run lint_staged"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint_staged":"Run lint against staged files","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","ghooks":"^1.3.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","lint-staged":"^3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.0.0","tslint":"^4.2.0","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.0.3","scripts":{},"_shasum":"fc8bdf464ebf938812748e4196788f392fef9754","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"fc8bdf464ebf938812748e4196788f392fef9754","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.0.3.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.3.tgz_1483716757672_0.04762235330417752"},"directories":{}},"5.1.0":{"name":"rxjs","version":"5.1.0","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.12.0","lint-staged":"^3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.2.0","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.1.0","scripts":{},"_shasum":"0aa9018b7f440b505fa42bd742b6738be550e720","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"0aa9018b7f440b505fa42bd742b6738be550e720","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.1.0.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rxjs-5.1.0.tgz_1485910698502_0.990993837127462"},"directories":{}},"5.1.1":{"name":"rxjs","version":"5.1.1","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"blesh@netflix.com"},"contributors":[{"name":"Ben Lesh","email":"blesh@netflix.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.12.0","lint-staged":"^3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.1.1","scripts":{},"_shasum":"fc48922965bc6c5efbcc0fe46e90a3af64137a7b","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"fc48922965bc6c5efbcc0fe46e90a3af64137a7b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.1.1.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.1.1.tgz_1486963762931_0.5515915406867862"},"directories":{}},"5.2.0":{"name":"rxjs","version":"5.2.0","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.12.0","lint-staged":"^3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.2.0","scripts":{},"_shasum":"db537de8767c05fa73721587a29e0085307d318b","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"db537de8767c05fa73721587a29e0085307d318b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.2.0.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.2.0.tgz_1487650676666_0.29112744983285666"},"directories":{}},"5.2.1-smooth":{"name":"rxjs","version":"5.2.1-smooth","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^0.30.0","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20160916.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.12.0","lint-staged":"^3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.8.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^3.1.0","npm-scripts-info":"^0.3.4","nyc":"^8.3.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.1.4","sinon":"^2.0.0-pre","sinon-chai":"^2.8.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","watchify":"3.7.0","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.2.1-smooth","scripts":{},"_shasum":"e324c92bec4bc43daf5315c888736f70b3db4e87","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"e324c92bec4bc43daf5315c888736f70b3db4e87","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.2.1-smooth.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.2.1-smooth.tgz_1491066074391_0.3729100711643696"},"directories":{}},"5.3.0":{"name":"rxjs","version":"5.3.0","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^2.1.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20170218.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.13.3","lint-staged":"^3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.9.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^4.0.2","npm-scripts-info":"^0.3.4","nyc":"^10.2.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.2.2","sinon":"^2.1.0","sinon-chai":"^2.9.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.3.0","scripts":{},"_shasum":"d88ccbdd46af290cbdb97d5d8055e52453fabe2d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.2","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"d88ccbdd46af290cbdb97d5d8055e52453fabe2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.3.0.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rxjs-5.3.0.tgz_1491251324173_0.031499865697696805"},"directories":{}},"5.3.1":{"name":"rxjs","version":"5.3.1","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"babel-polyfill":"^6.23.0","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^2.1.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20170218.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.13.3","lint-staged":"3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.9.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^4.0.2","npm-scripts-info":"^0.3.4","nyc":"^10.2.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.2.2","sinon":"^2.1.0","sinon-chai":"^2.9.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.3.1","scripts":{},"_shasum":"9ecc9e722247e4f4490d30a878577a3740fd0cb7","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.2","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"9ecc9e722247e4f4490d30a878577a3740fd0cb7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.3.1.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.3.1.tgz_1493758256089_0.33221560367383063"},"directories":{}},"5.3.3":{"name":"rxjs","version":"5.3.3","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"babel-polyfill":"^6.23.0","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^2.1.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20170218.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.13.3","lint-staged":"3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.9.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^4.0.2","npm-scripts-info":"^0.3.4","nyc":"^10.2.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.2.2","sinon":"^2.1.0","sinon-chai":"^2.9.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.3.3","scripts":{},"_shasum":"dd2f95105f713d95f25b894cbe5f68a5f32c926c","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.2","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"dd2f95105f713d95f25b894cbe5f68a5f32c926c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.3.3.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"},{"name":"jeffbcross","email":"middlefloor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rxjs-5.3.3.tgz_1494363434710_0.29629941401071846"},"directories":{}},"5.4.0":{"name":"rxjs","version":"5.4.0","description":"Reactive Extensions for modern JavaScript","main":"Rx.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"lint-staged":{"*.@(js)":["eslint --fix","git add"],"*.@(ts)":["tslint --fix","git add"]},"scripts-info":{"info":"List available script","build_all":"Build all packages (ES6, CJS, UMD) and generate packages","build_cjs":"Build CJS package with clean up existing build, copy source into dist","build_es6":"Build ES6 package with clean up existing build, copy source into dist","build_closure_core":"Minify Global core build using closure compiler","build_global":"Build Global package, then minify build","build_perf":"Build CJS & Global build, run macro performance test","build_test":"Build CJS package & test spec, execute mocha test runner","build_cover":"Run lint to current code, build CJS & test spec, execute test coverage","build_docs":"Build ES6 & global package, create documentation using it","build_spec":"Build test specs","check_circular_dependencies":"Check codebase has circular dependencies","clean_spec":"Clean up existing test spec build output","clean_dist_cjs":"Clean up existing CJS package output","clean_dist_es6":"Clean up existing ES6 package output","clean_dist_global":"Clean up existing Global package output","commit":"Run git commit wizard","compile_dist_cjs":"Compile codebase into CJS module","compile_module_es6":"Compile codebase into ES6","cover":"Execute test coverage","lint_perf":"Run lint against performance test suite","lint_spec":"Run lint against test spec","lint_src":"Run lint against source","lint":"Run lint against everything","perf":"Run macro performance benchmark","perf_micro":"Run micro performance benchmark","test_mocha":"Execute mocha test runner against existing test spec build","test_browser":"Execute mocha test runner on browser against existing test spec build","test":"Clean up existing test spec build, build test spec and execute mocha test runner","tests2png":"Generate marble diagram image from test spec","watch":"Watch codebase, trigger compile when source code changes"},"repository":{"type":"git","url":"git+ssh://git@github.com/ReactiveX/RxJS.git"},"keywords":["Rx","RxJS","ReactiveX","ReactiveExtensions","Streams","Observables","Observable","Stream","ES6","ES2015"],"author":{"name":"Ben Lesh","email":"ben@benlesh.com"},"contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"license":"Apache-2.0","bugs":{"url":"https://github.com/ReactiveX/RxJS/issues"},"homepage":"https://github.com/ReactiveX/RxJS","devDependencies":{"babel-polyfill":"^6.23.0","benchmark":"^2.1.0","benchpress":"2.0.0-beta.1","chai":"^3.5.0","color":"^0.11.1","colors":"1.1.2","commitizen":"^2.8.6","coveralls":"^2.11.13","cz-conventional-changelog":"^1.2.0","doctoc":"^1.0.0","escape-string-regexp":"^1.0.5 ","esdoc":"^0.4.7","eslint":"^3.8.0","fs-extra":"^2.1.2","glob":"^7.0.3","gm":"^1.22.0","google-closure-compiler-js":"^20170218.0.0","gzip-size":"^3.0.0","http-server":"^0.9.0","husky":"^0.13.3","lint-staged":"3.2.5","lodash":"^4.15.0","madge":"^1.4.3","markdown-doctest":"^0.9.1","minimist":"^1.2.0","mkdirp":"^0.5.1","mocha":"^3.0.2","mocha-in-sauce":"0.0.1","npm-run-all":"^4.0.2","npm-scripts-info":"^0.3.4","nyc":"^10.2.0","opn-cli":"^3.1.0","platform":"^1.3.1","promise":"^7.1.1","protractor":"^3.1.1","rollup":"0.36.3","rollup-plugin-inject":"^2.0.0","rollup-plugin-node-resolve":"^2.0.0","rx":"latest","shx":"^0.2.2","sinon":"^2.1.0","sinon-chai":"^2.9.0","source-map-support":"^0.4.0","tslib":"^1.5.0","tslint":"^4.4.2","typescript":"~2.0.6","typings":"^2.0.0","validate-commit-msg":"^2.3.1","watch":"^1.0.1","webpack":"^1.13.1","xmlhttprequest":"1.8.0"},"engines":{"npm":">=2.0.0"},"typings":"Rx.d.ts","dependencies":{"symbol-observable":"^1.0.1"},"_id":"rxjs@5.4.0","scripts":{},"_shasum":"a7db14ab157f9d7aac6a56e655e7a3860d39bf26","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.2","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"a7db14ab157f9d7aac6a56e655e7a3860d39bf26","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rxjs/-/rxjs-5.4.0.tgz"},"maintainers":[{"name":"blesh","email":"ben@benlesh.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.4.0.tgz_1494365197424_0.2275580787099898"},"directories":{}}},"name":"rxjs","contributors":[{"name":"Ben Lesh","email":"ben@benlesh.com"},{"name":"Paul Taylor","email":"paul.e.taylor@me.com"},{"name":"Jeff Cross","email":"crossj@google.com"},{"name":"Matthew Podwysocki","email":"matthewp@microsoft.com"},{"name":"OJ Kwon","email":"kwon.ohjoong@gmail.com"},{"name":"Andre Staltz","email":"andre@staltz.com"}],"time":{"modified":"2017-05-20T15:19:05.763Z","created":"2012-03-04T19:21:13.873Z","1.0.10621":"2012-03-04T19:21:19.312Z","5.0.0-alpha.10":"2015-11-18T19:50:16.957Z","5.0.0-alpha.11":"2015-12-01T00:27:19.345Z","5.0.0-alpha.12":"2015-12-04T23:34:49.988Z","5.0.0-alpha.13":"2015-12-08T01:37:28.036Z","5.0.0-alpha.14":"2015-12-09T00:41:35.947Z","5.0.0-beta.0":"2015-12-15T00:47:28.310Z","5.0.0-beta.1":"2016-01-13T01:37:10.316Z","5.0.0-beta.2":"2016-02-10T21:08:46.767Z","5.0.0-beta.3":"2016-03-21T18:52:27.491Z","5.0.0-beta.4":"2016-03-29T00:42:16.480Z","5.0.0-beta.5":"2016-04-05T05:17:36.312Z","5.0.0-beta.6":"2016-04-12T20:41:35.985Z","5.0.0-beta.7":"2016-04-27T19:50:49.600Z","5.0.0-beta.8":"2016-05-22T02:41:38.720Z","5.0.0-beta.9":"2016-06-14T01:04:59.936Z","5.0.0-beta.10":"2016-07-06T17:30:04.909Z","5.0.0-beta.11":"2016-08-09T17:02:29.551Z","5.0.0-beta.12":"2016-09-09T17:49:28.084Z","5.0.0-rc.1":"2016-10-11T00:44:52.530Z","5.0.0-rc.2":"2016-11-05T22:58:26.631Z","5.0.0-rc.3":"2016-11-15T02:56:38.103Z","5.0.0-rc.4":"2016-11-19T23:01:18.236Z","5.0.0-rc.5":"2016-12-07T01:18:56.219Z","5.0.0":"2016-12-13T00:54:43.523Z","5.0.1":"2016-12-13T01:14:16.826Z","5.0.2":"2016-12-23T01:19:30.351Z","5.0.3":"2017-01-06T15:32:37.915Z","5.1.0":"2017-02-01T00:58:20.749Z","5.1.1":"2017-02-13T05:29:23.168Z","5.2.0":"2017-02-21T04:17:56.909Z","5.2.1-smooth":"2017-04-01T17:01:14.659Z","5.3.0":"2017-04-03T20:28:46.482Z","5.3.1":"2017-05-02T20:50:56.388Z","5.3.2":"2017-05-09T20:33:27.250Z","5.3.3":"2017-05-09T20:57:17.134Z","5.4.0":"2017-05-09T21:26:37.685Z"},"readmeFilename":"README.md","homepage":"https://github.com/ReactiveX/RxJS"}