-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.84 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
{
"name": "rxbeach",
"version": "3.0.0",
"description": "Chill with streams at the RxBeach",
"keywords": [
"rxjs",
"reactive",
"streams",
"beach",
"rx"
],
"type": "module",
"company": "Ardoq AS",
"homepage": "https://ardoq.github.io/rxbeach/",
"bugs": "https://github.com/ardoq/rxbeach/issues",
"repository": "github:ardoq/rxbeach",
"author": "Tobias Laundal",
"license": "MIT",
"exports": {
".": "./dist/index.js",
"./operators": "./dist/operators/index.js",
"./react": "./dist/react/index.js",
"./internal": "./dist/internal/index.js"
},
"typesVersions": {
"*": {
"index": [
"dist/index.d.ts"
],
"operators": [
"dist/operators/index.d.ts"
],
"react": [
"dist/react/index.d.ts"
],
"internal": [
"dist/internal/index.d.ts"
]
}
},
"files": [
"./dist"
],
"scripts": {
"check-types": "yarn tsc --noEmit",
"test": "yarn test:unit-test",
"test:unit-test": "yarn jest",
"test:coverage": "yarn jest --config jest-coverage.config.mjs --rootDir .",
"test:watch": "yarn test:unit-test --watch",
"lint": "yarn eslint --ext .ts src -c .eslintrc.cjs",
"build": "rimraf dist && yarn tsc",
"watch": "yarn tsc -w",
"prepack": "yarn build -p tsconfig-publish.json",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.18.0",
"@babel/preset-env": "7.16.5",
"@babel/preset-react": "7.16.5",
"@babel/preset-typescript": "7.16.5",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/jest": "28.1.8",
"@types/react": "18.0.20",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"babel-jest": "28.1.3",
"conditional-type-checks": "1.0.6",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sort-class-members": "1.15.2",
"husky": "8.0.1",
"jest": "28.1.3",
"pinst": "3.0.0",
"prettier": "2.7.1",
"react": "18.2.0",
"react-test-renderer": "18.2.0",
"rimraf": "3.0.2",
"rxjs": "7.8.0",
"rxjs-marbles": "7.0.1",
"standard-version": "9.5.0",
"typescript": "4.9.3"
},
"dependencies": {
"rxjs-interop": "2.0.0",
"rxjs-spy": "8.0.2"
},
"peerDependencies": {
"react": "^18.2.0 || ^17.0.2",
"rxjs": "^7.5.6"
},
"prettier": {
"singleQuote": true,
"printWidth": 80,
"parser": "typescript"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}