package.json 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. {
  2. "name": "rxjs",
  3. "version": "5.5.12",
  4. "description": "Reactive Extensions for modern JavaScript",
  5. "main": "./Rx.js",
  6. "config": {
  7. "commitizen": {
  8. "path": "cz-conventional-changelog"
  9. }
  10. },
  11. "lint-staged": {
  12. "*.@(js)": [
  13. "eslint --fix",
  14. "git add"
  15. ],
  16. "*.@(ts)": [
  17. "tslint --fix",
  18. "git add"
  19. ]
  20. },
  21. "scripts-info": {
  22. "info": "List available script",
  23. "build_all": "Build all packages (ES6, CJS, UMD) and generate packages",
  24. "build_cjs": "Build CJS package with clean up existing build",
  25. "build_esm5": "Build ESM/ES5 package with clean up existing build",
  26. "build_esm2015": "Build ESM/ES2015 package with clean up existing build",
  27. "build_closure_core": "Minify Global core build using closure compiler",
  28. "build_global": "Build Global package, then minify build",
  29. "build_perf": "Build CJS & Global build, run macro performance test",
  30. "build_test": "Build CJS package & test spec, execute mocha test runner",
  31. "build_cover": "Run lint to current code, build CJS & test spec, execute test coverage",
  32. "build_docs": "Build ESM2015 & global package, create documentation using it",
  33. "build_spec": "Build test specs",
  34. "check_circular_dependencies": "Check codebase has circular dependencies",
  35. "clean_spec": "Clean up existing test spec build output",
  36. "clean_dist_cjs": "Clean up existing CJS package output",
  37. "clean_dist_esm5": "Clean up existing ESM/ES5 package output",
  38. "clean_dist_esm2015": "Clean up existing ESM/ES2015 package output",
  39. "clean_dist_global": "Clean up existing Global package output",
  40. "commit": "Run git commit wizard",
  41. "compile_dist_cjs": "Compile codebase into CJS module",
  42. "compile_module_esm5": "Compile codebase into ESM/ES5",
  43. "compile_dist_esm2015": "Compile codebase into ESM/ES2015",
  44. "cover": "Execute test coverage",
  45. "lint_perf": "Run lint against performance test suite",
  46. "lint_spec": "Run lint against test spec",
  47. "lint_src": "Run lint against source",
  48. "lint": "Run lint against everything",
  49. "perf": "Run macro performance benchmark",
  50. "perf_micro": "Run micro performance benchmark",
  51. "test_mocha": "Execute mocha test runner against existing test spec build",
  52. "test_browser": "Execute mocha test runner on browser against existing test spec build",
  53. "test": "Clean up existing test spec build, build test spec and execute mocha test runner",
  54. "tests2png": "Generate marble diagram image from test spec",
  55. "watch": "Watch codebase, trigger compile when source code changes"
  56. },
  57. "repository": {
  58. "type": "git",
  59. "url": "git@github.com:ReactiveX/RxJS.git"
  60. },
  61. "keywords": [
  62. "Rx",
  63. "RxJS",
  64. "ReactiveX",
  65. "ReactiveExtensions",
  66. "Streams",
  67. "Observables",
  68. "Observable",
  69. "Stream",
  70. "ES6",
  71. "ES2015"
  72. ],
  73. "author": "Ben Lesh <ben@benlesh.com>",
  74. "contributors": [
  75. {
  76. "name": "Ben Lesh",
  77. "email": "ben@benlesh.com"
  78. },
  79. {
  80. "name": "Paul Taylor",
  81. "email": "paul.e.taylor@me.com"
  82. },
  83. {
  84. "name": "Jeff Cross",
  85. "email": "crossj@google.com"
  86. },
  87. {
  88. "name": "Matthew Podwysocki",
  89. "email": "matthewp@microsoft.com"
  90. },
  91. {
  92. "name": "OJ Kwon",
  93. "email": "kwon.ohjoong@gmail.com"
  94. },
  95. {
  96. "name": "Andre Staltz",
  97. "email": "andre@staltz.com"
  98. }
  99. ],
  100. "license": "Apache-2.0",
  101. "bugs": {
  102. "url": "https://github.com/ReactiveX/RxJS/issues"
  103. },
  104. "homepage": "https://github.com/ReactiveX/RxJS",
  105. "devDependencies": {
  106. "@angular-devkit/build-optimizer": "0.0.24",
  107. "babel-polyfill": "^6.23.0",
  108. "benchmark": "^2.1.0",
  109. "benchpress": "2.0.0-beta.1",
  110. "chai": "^3.5.0",
  111. "color": "^0.11.1",
  112. "colors": "1.1.2",
  113. "commitizen": "^2.8.6",
  114. "coveralls": "^2.11.13",
  115. "cz-conventional-changelog": "^1.2.0",
  116. "danger": "^1.1.0",
  117. "doctoc": "^1.0.0",
  118. "escape-string-regexp": "^1.0.5 ",
  119. "esdoc": "^0.4.7",
  120. "eslint": "^3.8.0",
  121. "fs-extra": "^2.1.2",
  122. "get-folder-size": "^1.0.0",
  123. "glob": "^7.0.3",
  124. "gm": "^1.22.0",
  125. "google-closure-compiler-js": "^20170218.0.0",
  126. "gzip-size": "^3.0.0",
  127. "http-server": "^0.9.0",
  128. "husky": "^0.13.3",
  129. "klaw-sync": "^3.0.0",
  130. "lint-staged": "3.2.5",
  131. "lodash": "^4.15.0",
  132. "madge": "^1.4.3",
  133. "markdown-doctest": "^0.9.1",
  134. "minimist": "^1.2.0",
  135. "mkdirp": "^0.5.1",
  136. "mocha": "^3.0.2",
  137. "mocha-in-sauce": "0.0.1",
  138. "npm-run-all": "^4.0.2",
  139. "npm-scripts-info": "^0.3.4",
  140. "nyc": "^10.2.0",
  141. "opn-cli": "^3.1.0",
  142. "platform": "^1.3.1",
  143. "promise": "^7.1.1",
  144. "protractor": "^3.1.1",
  145. "rollup": "0.36.3",
  146. "rollup-plugin-inject": "^2.0.0",
  147. "rollup-plugin-node-resolve": "^2.0.0",
  148. "rx": "latest",
  149. "rxjs": "latest",
  150. "shx": "^0.2.2",
  151. "sinon": "^2.1.0",
  152. "sinon-chai": "^2.9.0",
  153. "source-map-support": "^0.4.0",
  154. "tslib": "^1.5.0",
  155. "tslint": "^4.4.2",
  156. "typescript": "~2.0.6",
  157. "typings": "^2.0.0",
  158. "validate-commit-msg": "^2.14.0",
  159. "watch": "^1.0.1",
  160. "webpack": "^1.13.1",
  161. "xmlhttprequest": "1.8.0"
  162. },
  163. "engines": {
  164. "npm": ">=2.0.0"
  165. },
  166. "typings": "./Rx.d.ts",
  167. "dependencies": {
  168. "symbol-observable": "1.0.1"
  169. },
  170. "__npminstall_done": true,
  171. "_from": "rxjs@5.5.12",
  172. "_resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-5.5.12.tgz"
  173. }