forked from kondi/rxjs-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
{
"main": "js/index",
"typings": "js/index",
"name": "rxjs-grpc",
"version": "0.1.7",
"description": "Typesafe gRPC with RxJS in TypeScript",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/kondi/rxjs-grpc.git"
},
"bin": {
"rxjs-grpc": "./bin/rxjs-grpc"
},
"scripts": {
"start": "node js/cli",
"build": "tsc",
"lint": "tslint --project .",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"watch": "tsc --watch"
},
"jest": {
"setupTestFrameworkScriptFile": "./setup-jest"
},
"dependencies": {
"bluebird": "^3.4.7",
"grpc": "^1.1.2",
"jscodeshift": "^0.3.30",
"minimist": "^1.2.0",
"mz": "^2.6.0",
"protobufjs": "~6.6.5",
"tmp": "^0.0.31"
},
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/glob": "^5.0.30",
"@types/jasmine": "^2.5.43",
"@types/minimist": "^1.2.0",
"@types/mz": "^0.0.30",
"@types/node": "^7.0.5",
"@types/tmp": "^0.0.32",
"glob": "^7.1.1",
"grpc": "^1.1.2",
"jasmine": "^2.5.3",
"jest": "^21.2.1",
"rxjs": "^5.2.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"peerDependencies": {
"rxjs": "^5.2.0"
}
}