-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 898 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
39
40
41
42
43
44
45
46
{
"name": "grpc-error",
"version": "1.1.0",
"description": "Utility Error class suitable for gRPC error responses",
"main": "index.js",
"scripts": {
"test": "ava -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bojand/grpc-error.git"
},
"author": {
"name": "Bojan D.",
"email": "dbojan@gmail.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bojand/grpc-error/issues"
},
"homepage": "https://github.com/bojand/grpc-error",
"keywords": [
"protocol buffer",
"protobuf",
"grpc"
],
"dependencies": {
"grpc-create-error": "^2.0.0"
},
"devDependencies": {
"ava": "^0.22.0",
"@grpc/grpc-js": "^1.2.5",
"standard": "^10.0.0"
},
"directories": {
"test": "test"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"engines": {
"node": ">=8.0.0"
}
}