-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "@keiii/k-stream",
"version": "0.0.44",
"description": "K-Stream is a functional reactive stream library for TypeScript",
"keywords": [
"observables",
"observable",
"reactive",
"reactive programming",
"reactive streams",
"stream",
"streams",
"monad",
"monadic",
"functional"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/src"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"prettier": "prettier --write ./src/*.ts ./tests/*.ts",
"version-patch": "npm version patch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KEIII/k-stream.git"
},
"author": "Ivan Kasenkov <[email protected]>",
"bugs": {
"url": "https://github.com/KEIII/k-stream/issues"
},
"homepage": "https://github.com/KEIII/k-stream#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}