-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "rxjs-probe-examples",
"version": "1.0.0",
"description": "An example of utilizing the rxjs-probe library",
"scripts": {
"subscribe": "tsx src/subscribe.example.ts",
"wait-for-healthy": "tsx src/wait-for-healthy.example.ts",
"custom-probe-performer": "tsx src/custom-probe-performer.example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a179346/rxjs-probe-examples.git"
},
"keywords": [
"rxjs-probe",
"rxjs",
"probe",
"node",
"browser",
"ts",
"typescript"
],
"author": "a179346 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/a179346/rxjs-probe-examples/issues"
},
"homepage": "https://github.com/a179346/rxjs-probe",
"devDependencies": {
"@types/node": "^22.5.5",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@rxjs-probe/core": "^3.0.1",
"@rxjs-probe/http-probe-performer": "^3.0.1",
"axios": "^1.7.7",
"rxjs": "^7.8.1"
}
}