forked from improbable-eng/grpc-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "react-native-grpc",
"version": "0.3.1",
"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": {
"@types/text-encoding": "^0.0.32",
"browser-headers": "^0.3.2",
"text-encoding": "^0.6.4",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/google-protobuf": "^3.2.5",
"@types/node": "^7.0.29",
"google-protobuf": "^3.2.0",
"tslint": "^4.5.1",
"typescript": "2.2.1"
}
}