forked from improbable-eng/grpc-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 949 Bytes
/
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
{
"name": "grpc-web-client",
"version": "0.6.2",
"description": "gRPC-Web client for browsers (JS/TS)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf build && rm -rf dist",
"lib:build": "npm run clean && tsc && cp -R build/ dist/",
"lint": "tslint -c ./tslint.json ./src/**/*.ts"
},
"author": "Improbable",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github.com/improbable-eng/grpc-web"
},
"keywords": [
"grpc",
"grpc-web",
"protobuf",
"typescript",
"ts"
],
"files": [
"dist"
],
"peerDependencies": {
"@types/google-protobuf": "^3.2.5",
"google-protobuf": "^3.2.0"
},
"dependencies": {
"browser-headers": "^0.4.0"
},
"devDependencies": {
"@types/google-protobuf": "^3.2.5",
"@types/node": "^8.9.4",
"google-protobuf": "^3.2.0",
"tslint": "^5.9.1",
"typescript": "2.8.3"
}
}