-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 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
42
43
44
45
46
47
48
49
50
51
{
"name": "grpc-create-error",
"version": "2.0.0",
"description": "Utility function that creates an Error suitable for gRPC responses",
"main": "index.js",
"scripts": {
"test": "ava -v",
"docs": "jsdoc2md index.js --heading-depth 3 --template readme.hbs > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bojand/grpc-create-error.git"
},
"author": {
"name": "Bojan D.",
"email": "dbojan@gmail.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bojand/grpc-create-error/issues"
},
"homepage": "https://github.com/bojand/grpc-create-error",
"keywords": [
"protocol buffer",
"protobuf",
"grpc",
"client"
],
"dependencies": {
"grpc-create-metadata": "^4.0.0"
},
"devDependencies": {
"async": "^3.2.0",
"ava": "^3.15.0",
"@grpc/grpc-js": "^1.2.5",
"jsdoc-to-markdown": "^7.0.0",
"lodash": "^4.17.15",
"standard": "^16.0.0"
},
"directories": {
"test": "test"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"engines": {
"node": ">=8.0.0"
}
}