-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "protoc-plugin",
"version": "0.0.6",
"description": "Create protoc code-generation plugins easily in nodejs",
"main": "src/index.js",
"scripts": {
"test": "jest",
"pb": "protoc -I proto/ proto/google/api/http.proto proto/google/api/annotations.proto proto/google/protobuf/compiler/plugin.proto --js_out=import_style=commonjs,binary:src/",
"version": "npm run pb",
"postversion": "git push && git push --tags",
"release": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konsumer/node-protoc-plugin.git"
},
"keywords": [
"proto",
"protobuf",
"protoc",
"plugin"
],
"author": "David Konsumer <konsumer@jetboystudio.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/konsumer/node-protoc-plugin/issues"
},
"homepage": "https://github.com/konsumer/node-protoc-plugin#readme",
"dependencies": {
"buffer-to-uint8array": "^1.1.0",
"google-protobuf": "^3.2.0",
"stream-to-promise": "^2.2.0"
},
"devDependencies": {
"jest": "^19.0.2"
}
}