-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "blind-find",
"description": "A typescript implementation of Blind Find, a peer-to-peer network allowing private peer search proposed by Barry Whitehat and Kobi Gurkan",
"version": "0.1.0",
"license": "MIT",
"author": "Kevin Mai-Hsuan Chia(mhchia) <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"circuits/**/*",
"contracts/**/*",
"build/*.@(params|r1cs|wasm)",
"scripts/**/*",
"Makefile"
],
"bin": {
"blind-find": "lib/cli/index.js"
},
"scripts": {
"build": "tsc",
"extract_keys": "make extract_keys",
"release": "npm run build && npm publish",
"test": "hardhat test",
"lint": "exit 0 # FIXME: use eslint instead",
"install_zkutil": "./scripts/installZkutil.sh",
"postinstall": "npm run install_zkutil && npm run extract_keys"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhchia/blind-find.git"
},
"keywords": [
"zkp",
"mpc",
"ethereum"
],
"bugs": {
"url": "https://github.com/mhchia/blind-find/issues"
},
"homepage": "https://github.com/mhchia/blind-find#readme",
"dependencies": {
"await-lock": "^2.1.0",
"bn.js": "^5.1.3",
"circom": "^0.5.21",
"circomlib": "https://github.com/iden3/circomlib.git#01da5f90dbbefeed5d78cec3b87303244338b920",
"commander": "^7.0.0",
"ethers": "^5.0.27",
"express": "^4.17.1",
"js-sha256": "^0.9.0",
"level": "^6.0.1",
"maci-circuits": "^0.3.8",
"maci-config": "^0.3.8",
"maci-crypto": "^0.3.8",
"tmp-promise": "^3.0.2",
"winston": "^3.3.3",
"ws": "^7.4.1",
"yaml": "^1.10.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/bn.js": "^4.11.6",
"@types/chai-as-promised": "^7.1.3",
"@types/express": "^4.17.9",
"@types/level-js": "^4.0.1",
"@types/mocha": "^8.2.0",
"@types/ws": "^7.4.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "^3.2.1",
"hardhat": "^2.0.8",
"mocha": "^8.2.1",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
}
}