forked from devongovett/protobuf-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 908 Bytes
/
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
{
"name": "protobuf-jsonschema2",
"version": "1.1.2",
"description": "Compiles Protobuf IDL to JSON Schema",
"main": "index.js",
"bin": {
"protobuf-jsonschema": "cli.js"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/devongovett/protobuf-jsonschema.git"
},
"keywords": [
"protobuf",
"protocol",
"buffers",
"json",
"schema",
"jsonschema"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/protobuf-jsonschema/issues"
},
"homepage": "https://github.com/devongovett/protobuf-jsonschema#readme",
"dependencies": {
"underscore": "^1.8.3",
"commander": "^2.9.0",
"js-yaml": "^3.4.6",
"pb-schema": "^3.3.3"
},
"devDependencies": {
"mocha": "^2.3.4"
},
"directories": {
"test": "test"
}
}