UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

225 lines (224 loc) 11.1 kB
{ "name": "@reactivex/rxjs", "version": "5.5.6", "description": "Reactive Extensions for modern JavaScript", "main": "index.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", "build_esm5": "Build ESM/ES5 package with clean up existing build", "build_esm2015": "Build ESM/ES2015 package with clean up existing build", "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 ESM2015 & 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_esm5": "Clean up existing ESM/ES5 package output", "clean_dist_esm2015": "Clean up existing ESM/ES2015 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_esm5": "Compile codebase into ESM/ES5", "compile_dist_esm2015": "Compile codebase into ESM/ES2015", "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": { "precommit": "lint-staged", "commitmsg": "validate-commit-msg", "info": "npm-scripts-info", "build_all": "npm-run-all clean_dist copy_sources build_cjs build_esm5 build_esm2015 build_esm5_for_rollup build_umd generate_packages", "build_cjs": "npm-run-all clean_dist_cjs compile_dist_cjs", "build_esm5": "npm-run-all clean_dist_esm5 compile_dist_esm5", "build_esm5_for_rollup": "npm-run-all clean_dist_esm5_for_rollup compile_dist_esm5_for_rollup", "build_esm2015": "npm-run-all clean_dist_esm2015 compile_dist_esm2015", "build_esm2015_for_docs": "npm-run-all clean_dist_esm2015 compile_dist_esm2015_for_docs", "build_closure_core": "node ./tools/make-closure-core.js", "build_global": "npm-run-all clean_dist_global build_esm5_for_rollup && mkdirp ./dist/global && node ./tools/make-umd-bundle.js && npm-run-all build_closure_core clean_dist_esm5_for_rollup", "build_umd": "npm-run-all clean_dist_global && mkdirp ./dist/global && node ./tools/make-umd-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 copy_sources build_cjs generate_packages clean_spec build_spec test_mocha", "build_cover": "shx rm -rf ./dist/ && npm-run-all build_all build_spec cover", "build_docs": "npm-run-all build_global build_esm2015_for_docs build_cjs clean_spec build_spec tests2png decision_tree_widget && esdoc -c esdoc.json && npm-run-all clean_dist_esm2015", "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": "shx rm -rf ./dist", "clean_dist_cjs": "shx rm -rf ./dist/cjs", "clean_dist_esm5": "shx rm -rf ./dist/esm5", "clean_dist_esm5_for_rollup": "shx rm -rf ./dist/esm5_for_rollup", "clean_dist_esm2015": "shx rm -rf ./dist/esm2015", "clean_dist_global": "shx rm -rf ./dist/global", "commit": "git-cz", "compile_dist_cjs": "tsc ./dist/src/Rx.ts ./dist/src/add/observable/of.ts ./dist/src/operator/toPromise.ts -m commonjs --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --sourceMap --inlineSources --outDir ./dist/cjs --target ES5 --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node -d --declarationDir ./dist/typings", "compile_dist_esm5": "tsc ./dist/src/Rx.ts ./dist/src/add/observable/of.ts ./dist/src/operator/toPromise.ts -m es2015 --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --sourceMap --outDir ./dist/esm5 --target ES5 --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node", "compile_dist_esm2015": "tsc ./dist/src/Rx.ts ./dist/src/add/observable/of.ts ./dist/src/operator/toPromise.ts -m es2015 --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --sourceMap --outDir ./dist/esm2015 --target es2015 --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node", "compile_dist_esm2015_for_docs": "tsc ./dist/src/Rx.ts ./dist/src/add/observable/of.ts ./dist/src/MiscJSDoc.ts ./dist/src/operator/toPromise.ts -m es2015 --sourceMap --outDir ./dist/es6 --target es2015 -d --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node", "compile_dist_esm5_for_rollup": "tsc ./dist/src/Rx.ts ./dist/src/add/observable/of.ts ./dist/src/operator/toPromise.ts -m es2015 --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --sourceMap --outDir ./dist/esm5_for_rollup --target ES5 --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node --noEmitHelpers", "copy_sources": "mkdirp dist && shx cp -r ./src/ ./dist/src", "cover": "shx rm -rf dist/cjs && tsc dist/src/Rx.ts dist/src/add/observable/of.ts -m commonjs --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --outDir dist/cjs --sourceMap --target ES5 -d && nyc --reporter=lcov --reporter=html --exclude=spec/support/**/* --exclude=spec-js/**/* --exclude=node_modules mocha --opts spec/support/default.opts spec-js", "decision_tree_widget": "cd doc/decision-tree-widget && npm run build && cd ../..", "doctoc": "doctoc CONTRIBUTING.md", "generate_changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "generate_packages": "node .make-packages.js", "lint_perf": "eslint perf/", "lint_spec": "tslint -c tslint.json \"spec/**/*.ts\"", "lint_src": "tslint -c tslint.json \"src/**/*.ts\"", "lint": "npm-run-all --parallel lint_*", "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", "debug_mocha": "node --inspect --debug-brk ./node_modules/.bin/_mocha --opts spec/support/debug.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@github.com:ReactiveX/RxJS.git" }, "keywords": [ "Rx", "RxJS", "ReactiveX", "ReactiveExtensions", "Streams", "Observables", "Observable", "Stream", "ES6", "ES2015" ], "author": "Ben Lesh <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": { "@angular-devkit/build-optimizer": "0.0.24", "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", "danger": "^1.1.0", "doctoc": "^1.0.0", "escape-string-regexp": "^1.0.5 ", "esdoc": "^0.4.7", "eslint": "^3.8.0", "fs-extra": "^2.1.2", "get-folder-size": "^1.0.0", "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", "klaw-sync": "^3.0.0", "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", "rxjs": "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.14.0", "watch": "^1.0.1", "webpack": "^1.13.1", "xmlhttprequest": "1.8.0" }, "engines": { "npm": ">=2.0.0" }, "typings": "./dist/package/Rx.d.ts", "dependencies": { "symbol-observable": "1.0.1" } }