-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "protobuf-example-ts",
"version": "1.0.0",
"description": "Getting Started with Protobufs and Typescript",
"author": "Mechanical Rock",
"license": "Apache-2.0",
"main": "src/addressBookMessage.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/MechanicalRock/protobuf-example-ts.git"
},
"bugs": {
"url": "https://github.com/MechanicalRock/protobuf-example-ts/issues"
},
"homepage": "https://github.com/MechanicalRock/protobuf-example-ts#readme",
"keywords": [
"mechanical rock",
"protobuf",
"google-protobuf",
"typescript",
"tutorial",
"protoc",
"npm",
"ts-proto"
],
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "npx eslint ./src ./test --ext .ts"
},
"dependencies": {
"google-protobuf": "^3.20.0",
"ts-proto": "^1.110.2"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.5",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"directories": {
"test": "test"
}
}