-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "from-protobuf-object",
"version": "1.0.3",
"description": "fromObject method for protobuf",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint .",
"generate": "sh ./__tests__/test-data/generate.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infodusha/from-protobuf-object.git"
},
"keywords": [
"grpc",
"grpc-web",
"from",
"fromObject",
"protobuf"
],
"author": "infodusha",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/infodusha/from-protobuf-object/issues"
},
"homepage": "https://github.com/infodusha/from-protobuf-object#readme",
"files": [
"lib/",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.32.0",
"jest": "^29.3.1",
"protoc-gen-grpc-web": "^1.4.2",
"protoc-gen-js": "^3.21.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"peerDependencies": {
"google-protobuf": "^3.21.2"
}
}