forked from bojand/grpc-caller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.47 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
{
"name": "@eeston/grpc-caller",
"version": "0.21.0",
"description": "An improved Node.js gRPC client",
"main": "lib/index.js",
"scripts": {
"test": "ava -v",
"docs": "jsdoc2md lib/*.js --heading-depth 3 --template readme.hbs > README.md",
"lint.fix": "standard --fix",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eeston/grpc-caller.git"
},
"author": {
"name": "Bojan D.",
"email": "dbojan@gmail.com"
},
"contributors": [
{
"name": "John Easton",
"email": "john@easton.dev"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eeston/grpc-caller/issues"
},
"homepage": "https://github.com/eeston/grpc-caller",
"keywords": [
"protocol buffer",
"protobuf",
"grpc",
"client"
],
"dependencies": {
"@grpc/proto-loader": "^0.6.2",
"async": "^3.2.0",
"call-me-maybe": "^1.0.1",
"grpc-create-metadata": "^4.0.0",
"grpc-inspect": "^0.6.0",
"lodash": "^4.17.14",
"promisify-call": "^2.0.0"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.3.2"
},
"devDependencies": {
"@grpc/grpc-js": "^1.3.2",
"ava": "^3.15.0",
"git-cz": "^4.7.6",
"google-protobuf": "^3.17.3",
"standard": "^16.0.3"
},
"directories": {
"test": "test"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"engines": {
"node": ">=14.0.0"
},
"standard": {
"ignore": [
"**/*_pb.js"
]
}
}