-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
65 lines (65 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "grpc-reflection-js",
"version": "0.3.0",
"main": "build/src/index.js",
"repository": "https://github.com/redhoyasa/grpc-reflection-js",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/google-protobuf": "^3.7.2",
"@types/lodash.set": "^4.3.6",
"google-protobuf": "^3.12.2",
"lodash.set": "^4.3.2",
"protobufjs": "^7.2.2"
},
"devDependencies": {
"@grpc/grpc-js": "^1.8.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.2",
"gts": "^3.1.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"test": "nyc mocha -r ts-node/register test/**/*.test.ts",
"report": "nyc report --reporter=json",
"prepare": "yarn run compile",
"pretest": "yarn run compile && yarn run fix",
"posttest": "yarn run check",
"protoc": "grpc_tools_node_protoc --js_out=import_style=commonjs,binary:./src --grpc_out=grpc_js:./src --ts_out=grpc_js:./src --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts -I ./static/grpc/reflection/v1alpha reflection.proto",
"build": "yarn run compile && yarn run fix && yarn run check"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"keywords": [
"grpc",
"gRPC"
],
"types": "build/src/index.d.ts",
"peerDependencies": {
"@grpc/grpc-js": "^1.0.0"
}
}