forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
174 lines (174 loc) · 5.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "rxjs",
"version": "7.0.0-alpha.0",
"description": "Reactive Extensions for modern JavaScript",
"main": "./dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"tslint --fix",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"build:spec:browser": "echo \"Browser test is not working currently\" && exit -1 && webpack --config spec/support/webpack.mocha.config.js",
"decision_tree_widget": "cd doc/decision-tree-widget && npm run build && cd ../..",
"lint_spec": "tslint -c tslint.json \"spec/**/*.ts\"",
"lint_src": "tslint -c tslint.json \"src/**/*.ts\"",
"lint": "npm-run-all --parallel lint_*",
"dtslint": "npm run compile && dtslint --localTs ./node_modules/typescript/lib --expectOnly ./spec-dtslint",
"prepublishOnly": "npm run build:package",
"postpublish": "./docs_app/scripts/publish-docs.sh",
"publish_docs": "./publish_docs.sh",
"test": "npm run compile && mocha --opts spec/support/default.opts \"dist/spec/**/*-spec.js\"",
"test:browser": "echo \"Browser test is not working currently\" && exit -1 && npm-run-all build:spec:browser && opn spec/support/mocha-browser-runner.html",
"test:circular": "dependency-cruise --validate .dependency-cruiser.json -x \"^node_modules\" dist/esm5",
"test:systemjs": "node integration/systemjs/systemjs-compatibility-spec.js",
"test:side-effects": "check-side-effects --test integration/side-effects/side-effects.json",
"test:side-effects:update": "npm run test:side-effects -- --update",
"tests2png": "mkdirp docs_app/content/img && mocha --opts spec/support/tests2png.opts \"spec/**/*-spec.ts\"",
"compile": "tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.cjs.spec.json ./src/tsconfig.esm.json ./src/tsconfig.esm5.json ./src/tsconfig.esm5.rollup.json ./src/tsconfig.types.json ./spec/tsconfig.json",
"build:clean": "shx rm -rf ./dist",
"build:global": "node ./tools/make-umd-bundle.js && node ./tools/make-closure-core.js",
"build:package": "npm-run-all build:clean compile build:global && node ./tools/prepare-package.js && node ./tools/generate-alias.js"
},
"repository": {
"type": "git",
"url": "https://github.com/reactivex/rxjs.git"
},
"keywords": [
"Rx",
"RxJS",
"ReactiveX",
"ReactiveExtensions",
"Streams",
"Observables",
"Observable",
"Stream",
"ES6",
"ES2015"
],
"author": "Ben Lesh <[email protected]>",
"contributors": [
{
"name": "Ben Lesh",
"email": "[email protected]"
},
{
"name": "Paul Taylor",
"email": "[email protected]"
},
{
"name": "Jeff Cross",
"email": "[email protected]"
},
{
"name": "Matthew Podwysocki",
"email": "[email protected]"
},
{
"name": "OJ Kwon",
"email": "[email protected]"
},
{
"name": "Andre Staltz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ReactiveX/RxJS/issues"
},
"homepage": "https://github.com/ReactiveX/RxJS",
"dependencies": {
"tslib": "^1.9.0"
},
"devDependencies": {
"@angular-devkit/build-optimizer": "0.4.6",
"@angular-devkit/schematics": "^7.3.9",
"@types/chai": "4.1.2",
"@types/lodash": "4.14.102",
"@types/mocha": "2.2.48",
"@types/node": "9.4.5",
"@types/sinon": "4.1.3",
"@types/sinon-chai": "2.7.29",
"@types/source-map": "^0.5.2",
"babel-polyfill": "6.26.0",
"chai": "4.1.2",
"check-side-effects": "0.0.20",
"color": "3.0.0",
"colors": "1.1.2",
"cross-env": "5.1.3",
"cz-conventional-changelog": "1.2.0",
"dependency-cruiser": "^4.27.3",
"dtslint": "^0.7.4",
"escape-string-regexp": "1.0.5",
"eslint": "4.17.0",
"eslint-plugin-jasmine": "^2.10.1",
"fs-extra": "^8.1.0",
"glob": "7.1.2",
"gm": "1.23.1",
"google-closure-compiler-js": "20170218.0.0",
"klaw-sync": "3.0.2",
"lint-staged": "^8.1.6",
"lodash": "^4.17.15",
"minimist": "1.2.0",
"mkdirp": "0.5.1",
"mocha": "5.0.0",
"npm-run-all": "4.1.2",
"opn-cli": "3.1.0",
"platform": "1.3.5",
"promise": "8.0.1",
"rollup": "0.66.6",
"rollup-plugin-alias": "1.4.0",
"rollup-plugin-inject": "2.0.0",
"rollup-plugin-node-resolve": "2.0.0",
"shx": "0.2.2",
"sinon": "4.3.0",
"sinon-chai": "2.14.0",
"source-map-support": "0.5.3",
"systemjs": "^0.21.0",
"ts-node": "6.1.0",
"tsconfig-paths": "3.2.0",
"tslint": "5.9.1",
"tslint-etc": "1.5.0",
"tslint-no-toplevel-property-access": "0.0.2",
"tslint-no-unused-expression-chai": "0.0.3",
"typescript": "3.5.3",
"validate-commit-msg": "2.14.0",
"webpack": "^4.31.0"
},
"files": [
"dist/bundles",
"dist/cjs/**/!(*.tsbuildinfo)",
"dist/esm/**/!(*.tsbuildinfo)",
"dist/esm5/**/!(*.tsbuildinfo)",
"dist/types/**/!(*.tsbuildinfo)",
"ajax",
"fetch",
"operators",
"testing",
"webSocket",
"src",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE.txt",
"package.json",
"README.md",
"tsconfig.json"
]
}