-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 918 Bytes
/
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
{
"name": "observable-stream",
"version": "1.0.18",
"description": "make a stream observable without losing back-pressure control",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/yaplas/observable-stream.git"
},
"scripts": {
"test": "jest",
"tsc": "tsc -p tsconfig.json",
"prepublish": "npm run tsc"
},
"keywords": [
"streams",
"observable",
"rxjs",
"back-pressure"
],
"author": "Agustin Lascialandare",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rxjs": "^6.6.7",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0"
}
}