{"name":"@reactivex/rxjs","version":"5.0.0-beta.8","description":"Reactive Extensions for modern JavaScript","main":"index.js","config":{"commitizen":{"path":"cz-conventional-changelog"},"ghooks":{"commit-msg":"node ./node_modules/validate-commit-msg/index.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":"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"},"scripts":{"info":"npm-scripts-info","build_all":"npm-run-all build_es6 build_amd build_cjs build_global generate_packages","build_amd":"npm-run-all clean_dist_amd copy_src_amd compile_dist_amd","build_cjs":"npm-run-all clean_dist_cjs copy_src_cjs compile_dist_cjs","build_es6":"npm-run-all clean_dist_es6 copy_src_es6 compile_dist_es6","build_es6_for_docs":"npm-run-all clean_dist_es6 copy_src_es6 compile_dist_es6_for_docs","build_closure_core":"java -jar ./node_modules/google-closure-compiler/compiler.jar --js ./dist/global/Rx.umd.js --language_in ECMASCRIPT5 --create_source_map ./dist/global/Rx.umd.min.js.map --js_output_file ./dist/global/Rx.umd.min.js","build_global":"shx rm -rf ./dist/global && mkdirp ./dist/global && node tools/make-umd-bundle.js && node tools/make-system-bundle.js && npm-run-all build_closure_core","build_perf":"webdriver-manager update && npm-run-all build_cjs build_global perf","build_test":"shx rm -rf ./dist/ && npm-run-all lint build_cjs clean_spec build_spec test_mocha","build_cover":"shx rm -rf ./dist/ && npm-run-all lint build_cjs build_spec cover","build_docs":"npm-run-all build_es6_for_docs build_global build_spec tests2png decision_tree_widget && esdoc -c esdoc.json","build_spec":"tsc --project ./spec --pretty","build_spec_browser":"webpack --config spec/support/webpack.mocha.config.js","check_circular_dependencies":"madge ./dist/cjs --circular","clean_spec":"shx rm -rf spec-js","clean_dist_amd":"shx rm -rf ./dist/amd","clean_dist_cjs":"shx rm -rf ./dist/cjs","clean_dist_es6":"shx rm -rf ./dist/es6","copy_src_amd":"mkdirp ./dist/amd/src && shx cp -r ./src/* ./dist/amd/src","copy_src_cjs":"mkdirp ./dist/cjs/src && shx cp -r ./src/* ./dist/cjs/src","copy_src_es6":"mkdirp ./dist/es6/src && shx cp -r ./src/* ./dist/es6/src","commit":"git-cz","compile_dist_amd":"tsc typings/main/ambient/es6-shim/index.d.ts ./dist/amd/src/Rx.ts ./dist/amd/src/add/observable/of.ts                             -m amd      --sourceMap --outDir ./dist/amd --target ES5    --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors --moduleResolution node","compile_dist_cjs":"tsc typings/main/ambient/es6-shim/index.d.ts ./dist/cjs/src/Rx.ts ./dist/cjs/src/add/observable/of.ts                             -m commonjs --sourceMap --outDir ./dist/cjs --target ES5 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors --moduleResolution node","compile_dist_es6":"tsc                                          ./dist/es6/src/Rx.ts ./dist/es6/src/add/observable/of.ts                             -m es2015   --sourceMap --outDir ./dist/es6 --target ES6 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors --moduleResolution node","compile_dist_es6_for_docs":"tsc                                 ./dist/es6/src/Rx.ts ./dist/es6/src/add/observable/of.ts ./dist/es6/src/MiscJSDoc.ts -m es2015   --sourceMap --outDir ./dist/es6 --target ES6 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors --moduleResolution node","cover":"npm-run-all cover_test cover_remapping","cover_test":"shx rm -rf dist/cjs && tsc typings/main/ambient/es6-shim/index.d.ts src/Rx.ts src/add/observable/of.ts -m commonjs --outDir dist/cjs --sourceMap --target ES5 -d && istanbul cover -x \"spec-js/**/*\" -x \"mocha-setup-node.js\" ./node_modules/mocha/bin/_mocha -- --opts spec/support/default.opts spec-js","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","decision_tree_widget":"cd doc/decision-tree-widget && npm run build && cd ../..","doctoc":"doctoc CONTRIBUTING.md","generate_packages":"node .make-packages.js","lint_perf":"eslint perf/","lint_spec":"tslint -c tslint.json spec/*.ts spec/**/*.ts spec/**/**/*.ts","lint_src":"tslint -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts","lint":"npm-run-all lint_src lint_spec lint_perf","perf":"protractor protractor.conf.js","perf_micro":"node ./perf/micro/index.js","prepublish":"shx rm -rf ./typings && typings install && npm run build_all","publish_docs":"./publish_docs.sh","test_mocha":"mocha --opts spec/support/default.opts spec-js","test_browser":"npm-run-all build_spec_browser && opn spec/support/mocha-browser-runner.html","test":"npm-run-all clean_spec build_spec test_mocha clean_spec","tests2png":"npm run build_spec && mkdirp tmp/docs/img && mkdirp spec-js/support && shx cp spec/support/*.opts spec-js/support/ && mocha --opts spec/support/tests2png.opts spec-js","watch":"watch \"echo triggering build && npm run build_test && echo build completed\" src -d -u -w=15"},"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.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"},"engines":{"npm":">=2.0.0"},"typings":"./dist/cjs/Rx.d.ts","dependencies":{"symbol-observable":"^0.2.4"},"gitHead":"14acc333c37d1bfecf885469e94ee054087d28bc","_id":"@reactivex/rxjs@5.0.0-beta.8","_shasum":"6f8a7dedf40d95ac8a3cdf0abb98c73aba0abd70","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.0.0","_npmUser":{"name":"blesh","email":"ben@benlesh.com"},"dist":{"shasum":"6f8a7dedf40d95ac8a3cdf0abb98c73aba0abd70","size":9459143,"noattachment":false,"key":"/@reactivex/rxjs/-/@reactivex/rxjs-5.0.0-beta.8.tgz","tarball":"http://registry.cnpm.dingdandao.com/@reactivex/rxjs/download/@reactivex/rxjs-5.0.0-beta.8.tgz"},"maintainers":[{"name":"blesh","email":""}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rxjs-5.0.0-beta.8.tgz_1463884485287_0.22147006215527654"},"directories":{},"publish_time":1463884485881,"_cnpm_publish_time":1463884485881,"_hasShrinkwrap":false,"dist-tags":{"alpha":"6.0.0-alpha.4","beta":"6.0.0-beta.4","forward-compat":"5.6.0-forward-compat.4","foward-compat":"5.6.0-forward-compat.5","latest":"6.6.7","next":"7.0.0-alpha.0","rc":"6.0.0-uncanny-rc.7","smoosh":"6.0.0-smoosh.1","unsmoosh":"6.0.0-smoosh.2"}}