-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 KB
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-graphsearch-node",
"version": "0.3.0",
"description": "SLP Graph Search gRPC interface for node.js clients.",
"main": "dist/index.js",
"files": [
"dist/*.d.ts",
"dist/*.js",
"pb/"
],
"scripts": {
"test": "mocha",
"tsc": "npx tsc",
"build": "npm run protoc && tsc",
"protoc": "./node_modules/.bin/grpc_tools_node_protoc --js_out=import_style=commonjs,binary:./ --grpc_out=./ --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin` -I ./ ./pb/*.proto && ./node_modules/grpc-tools/bin/protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=./ -I ./ ./pb/*.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcramer/grpc-slp-graphsearch-node.git"
},
"keywords": [
"bch",
"BCHD",
"rpc",
"grpc",
"slp"
],
"author": "James Cramer",
"bugs": {
"url": "https://github.com/jcramer/grpc-slp-graphsearch-node/issues"
},
"homepage": "https://github.com/jcramer/grpc-slp-graphsearch-node#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.35",
"chai": "^4.2.0",
"grpc-tools": "^1.9.1",
"grpc_tools_node_protoc_ts": "^4.1.3",
"mocha": "^7.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0",
"grpc": "^1.24.3",
"protobufjs": "^6.10.1"
}
}