-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "grpc-service-interceptor",
"version": "0.1.3",
"description": "Creates services adding interceptors support for its methods",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"test:watch": "DEBUG=grpc-service-interceptor jest --watch --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markotom/grpc-service-interceptor.git"
},
"keywords": [
"grpc",
"rpc",
"middleware",
"interceptor"
],
"author": "Marco Godínez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/markotom/grpc-service-interceptor/issues"
},
"homepage": "https://github.com/markotom/grpc-service-interceptor#readme",
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"jest": "^26.1.0",
"jest-extended": "^0.11.5"
},
"dependencies": {
"@grpc/proto-loader": "^0.5.4",
"debug": "^4.1.1",
"grpc": "^1.24.3",
"koa-compose": "^4.1.0"
}
}