-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 956 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
{
"name": "@erictik/pbs",
"version": "1.0.0",
"description": "protobuf package ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "grpc_tools_node_protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=grpc_js:./ --js_out=import_style=commonjs:./ --grpc_out=grpc_js:./ -I. ./*.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erictik/pbs.git"
},
"files": [
"*.js",
"*.ts",
"*.proto",
"*.md"
],
"keywords": [
"protobuf",
"grpc"
],
"author": "Eric Yang <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/erictik/pbs/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/erictik"
},
"homepage": "https://github.com/erictik/pbs#readme",
"devDependencies": {
"grpc_tools_node_protoc_ts": "^5.3.2",
"grpc-tools": "^1.11.3"
}
}