-
Notifications
You must be signed in to change notification settings - Fork 663
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "@grpc/reflection",
"version": "1.0.4",
"author": {
"name": "Google Inc."
},
"description": "Reflection API service for use with gRPC-node",
"repository": {
"type": "git",
"url": "https://github.com/grpc/grpc-node.git",
"directory": "packages/grpc-reflection"
},
"bugs": "https://github.com/grpc/grpc-node/issues",
"contributors": [
{
"name": "Justin Timmons",
"email": "justinmtimmons@gmail.com"
}
],
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build"
],
"license": "Apache-2.0",
"scripts": {
"compile": "tsc -p .",
"postcompile": "copyfiles './proto/**/*.proto' build/",
"prepare": "npm run generate-types && npm run compile",
"test": "mocha --require ts-node/register test/**.ts",
"generate-types": "proto-loader-gen-types --longs String --enums String --bytes Array --defaults --oneofs --includeComments --includeDirs proto/ -O src/generated grpc/reflection/v1/reflection.proto grpc/reflection/v1alpha/reflection.proto"
},
"dependencies": {
"@grpc/proto-loader": "^0.7.13",
"protobufjs": "^7.2.5"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.8.21"
},
"devDependencies": {
"@grpc/grpc-js": "file:../grpc-js",
"@types/mocha": "^10.0.10",
"copyfiles": "^2.4.1",
"typescript": "^5.2.2"
}
}