-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "grpc-inspect",
"version": "0.6.0",
"description": "gRPC protocol buffer inspection utility",
"main": "lib/inspect.js",
"scripts": {
"test": "ava -v",
"docs": "jsdoc2md lib/*.js --heading-depth 3 --template readme.hbs | md-wrap-code > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bojand/grpc-inspect.git"
},
"author": {
"name": "Bojan D.",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bojand/grpc-inspect/issues"
},
"homepage": "https://github.com/bojand/grpc-inspect",
"keywords": [
"protocol buffer",
"protobuf",
"grpc"
],
"dependencies": {
"lodash": "^4.17.11",
"traverse": "^0.6.6"
},
"devDependencies": {
"@grpc/proto-loader": "^0.3.0",
"ava": "^0.25.0",
"greenkeeper-lockfile": "^1.15.1",
"grpc": "^1.15.1",
"jsdoc-to-markdown": "^4.0.1",
"md-wrap-code": "^0.1.1",
"protobufjs": "^6.8.8",
"standard": "^12.0.0"
},
"directories": {
"test": "test"
},
"ava": {
"files": [
"test/*.test.js"
]
}
}