-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "hieroglyphs",
"private": true,
"version": "0.0.1",
"description": "Quantum-resistant, purely Hash-based, Stateful, One-Time Digital Signatures for OCaml.",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "make test",
"coverage": "make coverage",
"bench": "make bench"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ml,mli}": [
"ocamlformat --inplace --ocp-indent-config",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoonroad/hieroglyphs.git"
},
"keywords": [
"one-time-signatures",
"hash-based-signatures",
"ocaml"
],
"author": "Marco Aurélio da Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcoonroad/hieroglyphs/issues"
},
"homepage": "https://github.com/marcoonroad/hieroglyphs#readme",
"devDependencies": {
"husky": "^1.1.4",
"lint-staged": "^8.0.4"
},
"dependencies": {}
}