forked from gimdongwoo/rxjs-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.83 KB
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
58
59
60
61
62
63
64
65
66
67
{
"main": "js/index",
"typings": "js/index",
"name": "qp-rxjs-grpc",
"version": "0.2.11",
"description": "Typesafe gRPC with RxJS in TypeScript",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/kondi/rxjs-grpc.git"
},
"bin": "./bin/rxjs-grpc",
"scripts": {
"start": "node js/cli",
"compile-ts": "tsc",
"lint": "tslint --project .",
"prepublishOnly": "npm run compile-ts",
"test": "npm-run-all --parallel test:*",
"test:lint": "npm run lint",
"test:format": "npm run format:check",
"pretest:unit": "npm run compile-ts",
"test:unit": "jest",
"watch:test": "jest --watch",
"coverage": "jest --coverage",
"watch": "tsc --watch",
"format:check": "prettier --list-different \"{src,examples}/**/*.ts\"",
"format:apply": "prettier --write \"{src,examples}/**/*.ts\""
},
"jest": {
"setupTestFrameworkScriptFile": "./setup-jest"
},
"dependencies": {
"@grpc/grpc-js": "^1.5.10",
"@grpc/proto-loader": "^0.6.9",
"jscodeshift": "^0.13.0",
"minimist": "^1.2.5",
"mz": "^2.7.0",
"protobufjs": "^6.11.2",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jasmine": "^3.10.1",
"@types/jest": "^27.0.2",
"@types/jscodeshift": "^0.11.2",
"@types/minimist": "^1.2.2",
"@types/mz": "^2.7.4",
"@types/node": "^16.11.6",
"@types/tmp": "^0.2.2",
"glob": "^7.2.0",
"jasmine": "^3.10.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rxjs": "^6.5.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-misc-rules": "^3.5.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"rxjs": "^6.5.2"
}
}