-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.61 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
{
"name": "@byndyusoft/grpc-timeouts",
"version": "1.0.1",
"description": "A library for customizable gRPC timeouts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Byndyusoft/grpc-timeouts.git"
},
"keywords": [
"byndyusoft",
"grpc",
"grpc-timeouts",
"circuit-breaker",
"fail-fast",
"timeout",
"TypeScript"
],
"author": "Byndyusoft",
"license": "ISC",
"bugs": {
"url": "https://github.com/Byndyusoft/grpc-timeouts/issues"
},
"homepage": "https://github.com/Byndyusoft/grpc-timeouts#readme",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"jest": "jest",
"test": "npm run lint && npm run jest"
},
"devDependencies": {
"@byndyusoft/eslint-config": "^0.3.0",
"@types/jest": "26.0.9",
"eslint": "^7.16.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "26.2.2",
"jest-mock-extended": "^1.0.10",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"camelcase": "^6.2.0",
"grpc": "^1.24.4",
"processing-context": "^1.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
},
"contributors": [
"Dmitry221060 <[email protected]>"
]
}