UNPKG

3.8 kBJSONView Raw
1{
2 "name": "rxjs",
3 "version": "6.2.2",
4 "description": "Reactive Extensions for modern JavaScript",
5 "main": "./index.js",
6 "sideEffects": false,
7 "config": {
8 "commitizen": {
9 "path": "cz-conventional-changelog"
10 }
11 },
12 "nyc": {
13 "include": [
14 "src/*.ts",
15 "src/**/*.ts"
16 ],
17 "exclude": [
18 "node_modules",
19 "dist",
20 "*.d.ts",
21 "src/**/MiscJSDoc.ts"
22 ],
23 "extension": [
24 ".ts"
25 ],
26 "reporter": [
27 "html"
28 ],
29 "all": true
30 },
31 "lint-staged": {
32 "*.@(js)": [
33 "eslint --fix",
34 "git add"
35 ],
36 "*.@(ts)": [
37 "tslint --fix",
38 "git add"
39 ]
40 },
41 "repository": {
42 "type": "git",
43 "url": "https://github.com/reactivex/rxjs.git"
44 },
45 "keywords": [
46 "Rx",
47 "RxJS",
48 "ReactiveX",
49 "ReactiveExtensions",
50 "Streams",
51 "Observables",
52 "Observable",
53 "Stream",
54 "ES6",
55 "ES2015"
56 ],
57 "author": "Ben Lesh <ben@benlesh.com>",
58 "contributors": [
59 {
60 "name": "Ben Lesh",
61 "email": "ben@benlesh.com"
62 },
63 {
64 "name": "Paul Taylor",
65 "email": "paul.e.taylor@me.com"
66 },
67 {
68 "name": "Jeff Cross",
69 "email": "crossj@google.com"
70 },
71 {
72 "name": "Matthew Podwysocki",
73 "email": "matthewp@microsoft.com"
74 },
75 {
76 "name": "OJ Kwon",
77 "email": "kwon.ohjoong@gmail.com"
78 },
79 {
80 "name": "Andre Staltz",
81 "email": "andre@staltz.com"
82 }
83 ],
84 "license": "Apache-2.0",
85 "bugs": {
86 "url": "https://github.com/ReactiveX/RxJS/issues"
87 },
88 "homepage": "https://github.com/ReactiveX/RxJS",
89 "dependencies": {
90 "tslib": "^1.9.0"
91 },
92 "devDependencies": {
93 "@angular-devkit/build-optimizer": "0.4.6",
94 "@angular-devkit/schematics": "^0.5.4",
95 "@types/chai": "4.1.2",
96 "@types/lodash": "4.14.102",
97 "@types/mocha": "2.2.48",
98 "@types/node": "9.4.5",
99 "@types/sinon": "4.1.3",
100 "@types/sinon-chai": "2.7.29",
101 "@types/source-map": "^0.5.2",
102 "babel-polyfill": "6.26.0",
103 "benchmark": "2.1.0",
104 "benchpress": "2.0.0-beta.1",
105 "chai": "4.1.2",
106 "color": "3.0.0",
107 "colors": "1.1.2",
108 "commitizen": "2.9.6",
109 "coveralls": "3.0.0",
110 "cross-env": "5.1.3",
111 "cz-conventional-changelog": "1.2.0",
112 "danger": "1.1.0",
113 "dependency-cruiser": "2.13.0",
114 "doctoc": "1.3.0",
115 "escape-string-regexp": "1.0.5",
116 "esdoc": "0.4.7",
117 "eslint": "4.17.0",
118 "fs-extra": "5.0.0",
119 "get-folder-size": "1.0.1",
120 "glob": "7.1.2",
121 "gm": "1.23.1",
122 "google-closure-compiler-js": "20170218.0.0",
123 "gzip-size": "4.1.0",
124 "http-server": "0.11.1",
125 "husky": "0.14.3",
126 "klaw-sync": "3.0.2",
127 "lint-staged": "7.1.1",
128 "lodash": "4.17.5",
129 "markdown-doctest": "0.9.1",
130 "minimist": "1.2.0",
131 "mkdirp": "0.5.1",
132 "mocha": "5.0.0",
133 "mocha-in-sauce": "0.0.1",
134 "npm-run-all": "4.1.2",
135 "nyc": "11.4.1",
136 "opn-cli": "3.1.0",
137 "platform": "1.3.5",
138 "promise": "8.0.1",
139 "protractor": "3.1.1",
140 "rollup": "0.36.3",
141 "rollup-plugin-inject": "2.0.0",
142 "rollup-plugin-node-resolve": "2.0.0",
143 "rx": "latest",
144 "rxjs": "^5.5.7",
145 "shx": "0.2.2",
146 "sinon": "4.3.0",
147 "sinon-chai": "2.14.0",
148 "source-map-support": "0.5.3",
149 "symbol-observable": "1.0.1",
150 "systemjs": "^0.21.0",
151 "ts-node": "6.1.0",
152 "tsconfig-paths": "3.2.0",
153 "tslint": "5.9.1",
154 "tslint-no-unused-expression-chai": "0.0.3",
155 "typescript": "~2.8.1",
156 "validate-commit-msg": "2.14.0",
157 "webpack": "1.13.1",
158 "xmlhttprequest": "1.8.0"
159 },
160 "engines": {
161 "npm": ">=2.0.0"
162 },
163 "typings": "./index.d.ts",
164 "ng-update": {
165 "migrations": "./migrations/collection.json"
166 },
167 "module": "./_esm5/index.js",
168 "es2015": "./_esm2015/index.js"
169}