-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "grpc-web-error-details",
"version": "1.0.1",
"description": "Utility function for deserializing `grpc-status-details-bin` metadata on grpc-web",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"grpc",
"grpc-web",
"error-details",
"Richer Error Model"
],
"author": "Shun Kashiwa <[email protected]> (https://github.com/shumbo)",
"homepage": "https://github.com/shumbo/grpc-web-error-details",
"repository": {
"type": "git",
"url": "https://github.com/shumbo/grpc-web-error-details"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "run-s build:*",
"build:tsc": "tsc",
"build:lib": "cp -r lib dist",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"lint": "eslint index.ts src --ext .ts",
"genProto": "bash ./run-protoc.sh"
},
"dependencies": {
"base64-js": "^1.5.1"
},
"devDependencies": {
"@types/google-protobuf": "^3.7.4",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"google-protobuf": "^3.15.8",
"grpc-web": "^1.2.1",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"xhr2": "^0.2.1"
},
"peerDependencies": {
"google-protobuf": "^3.15.8",
"grpc-web": "^1.2.1"
}
}