-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "merkle-trees",
"version": "0.1.0",
"description": "Optimized Merkle Tree algorithm for traversal/verification and path computation",
"license": "MIT",
"keywords": ["cryptography"],
"homepage": "https://github.com/marcoonroad/merkle-trees",
"repository": "git+https://github.com/marcoonroad/merkle-trees.git",
"bugs": "https://github.com/marcoonroad/merkle-trees/issues",
"esy": {
"build": "refmterr dune build -p #{self.name}",
"release": {
"bin": []
},
"buildEnv": {
"ODOC_SYNTAX": "re"
}
},
"scripts": {
"build": "esy",
"postbuild": "esy dune build",
"clean": "esy dune clean",
"lint-fmt": "esy dune build @fmt",
"fmt": "esy dune build @fmt --auto-promote",
"bench": "esy dune build @test/bench/runtest --no-buffer -j 1 --auto-promote",
"test": "esy dune build @test/spec/runtest -f --no-buffer -j 1",
"doc": "esy dune build @doc",
"open-doc": "gnome-open './_build/default/_doc/_html/index.html'"
},
"dependencies": {
"@opam/dune": "*",
"@esy-ocaml/reason": ">= 3.4.0 < 3.6.0",
"refmterr": "*",
"ocaml": "~4.8.1000"
},
"devDependencies": {
"@opam/merlin": "*",
"ocaml": "~4.8.1000",
"@opam/alcotest": "*",
"@opam/core_bench": "*",
"@opam/core": "*",
"@opam/digestif": "*",
"@opam/nocrypto": "*",
"@opam/hex": "*",
"@opam/cstruct": "*",
"@opam/zarith": "*",
"@opam/odoc": "*"
}
}