-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "rx-flowable",
"version": "0.1.2",
"description": "RxJS observables with back-pressure",
"main": "./index.js",
"module": "./esm/index.js",
"exports": {
".": {
"require": "./index.js",
"import": "./esm/index.js"
},
"./operators": {
"require": "./operators/index.js",
"import": "./esm/operators/index.js"
},
"./consume": {
"require": "./consume/index.js",
"import": "./esm/consume/index.js"
}
},
"scripts": {
"clean": "rm -rf consume operators functions index.js index.d.ts esm",
"build": "npm run clean && jest && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc -p tsconfig.json && mv ./cjs/* .",
"tsc-esm": "tsc -p tsconfig-esm.json && tsc-esm-fix --target='./esm' && cp ./package-esm.json ./esm/package.json",
"prepublishOnly": "npm run build && npm version $VERSION && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsvarovsky/rx-flowable.git"
},
"keywords": [
"Rx",
"RxJS",
"ReactiveX",
"Flowable",
"Streams",
"Backpressure"
],
"author": "George Svarovsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/gsvarovsky/rx-flowable/issues"
},
"homepage": "https://github.com/gsvarovsky/rx-flowable#readme",
"devDependencies": {
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"tsc-esm-fix": "^2.18.0",
"typescript": "^4.5.4"
},
"dependencies": {
"rxjs": "^7.5.1"
}
}