-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
28 lines (28 loc) · 850 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
{
"name": "bs-ocaml-protoc",
"version": "2.0.2",
"description": "A Protocol Buffers compiler for OCaml",
"keywords": [
"protobuf",
"serialization",
"syntax",
"bucklescript"
],
"homepage": "https://github.com/mransan/ocaml-protoc",
"bugs": "https://github.com/mransan/ocaml-protoc/issues",
"license": "MIT",
"author": " Maxime Ransan<[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mransan/ocaml-protoc"
},
"dependencies": {},
"devDependencies": {
"bs-platform": "^7.x.x"
},
"scripts": {
"build": "npm run gen && bsb -make-world",
"gen": "dune build && ./_build/install/default/bin/ocaml-protoc -bs -I ~/Documents/protobuf/include -ml_out src/tests/bs src/tests/bs/bs_unittest.proto",
"test": "npm run build && node lib/js/src/tests/bs/"
}
}