forked from paulmillr/bls12-381-keygen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 849 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
43
44
{
"name": "bls12-381-keygen-chia",
"version": "0.1.2",
"description": "BLS12-381 Key Generation for Chia. For browsers & node.",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "tsc -d",
"test": "node test.js"
},
"keywords": [
"bls",
"bls12",
"bls12-381",
"381",
"eip",
"eip2333",
"2333",
"key",
"keygen",
"generation",
"hd",
"master",
"child"
],
"author": "Paul Miller (https://paulmillr.com)",
"repository": {
"type": "git",
"url": "https://github.com/foxypool/bls12-381-keygen-chia.git"
},
"license": "MIT",
"dependencies": {
"fast-sha256": "~1.3.0"
},
"devDependencies": {
"typescript": "^4.2.4",
"@types/node": "^12.12.6",
"@types/assert": "^1.5.2",
"micro-should": "~0.1.4"
}
}