-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.41 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
58
59
60
61
62
63
64
{
"name": "bloomrpc-mock",
"description": "Automock your grpc services",
"version": "0.3.4",
"author": "Fabrizio Fenoglio (UtilityWarehouse)",
"bin": {
"brpc-mock": "./bin/run",
"bloomrpc-mock": "./bin/run"
},
"bugs": "https://github.com/uw-labs/bloomrpc-mock/issues",
"dependencies": {
"@grpc/proto-loader": "^0.6.1",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/protobufjs": "^6.0.0",
"colors": "^1.3.2",
"google-protobuf": "^3.6.1",
"grpc": "1.24.7",
"lodash": "^4.17.11",
"protobufjs": "^6.11.2",
"tslib": "^1",
"uuid": "^3.3.2",
"yaml": "^1.0.2"
},
"devDependencies": {
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/uuid": "^3.4.4",
"ts-node": "^7",
"tslint": "^5",
"typescript": "^3.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/common"
],
"homepage": "https://github.com/uw-labs/bloomrpc-mock",
"keywords": [
"oclif"
],
"license": "LGPL3",
"main": "lib/index.js",
"oclif": {
"bin": "bloomrpc"
},
"repository": "uw-labs/bloomrpc",
"scripts": {
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts",
"pkg": {
"scripts": "lib/**/*.js"
}
}