{
  "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@github.com:ReactiveX/RxJS.git"
  },
  "keywords": [
    "Rx",
    "RxJS",
    "ReactiveX",
    "ReactiveExtensions",
    "Streams",
    "Observables",
    "Observable",
    "Stream",
    "ES6",
    "ES2015"
  ],
  "author": "Ben Lesh <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"
}
