-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "@kevincharm/bls-bn254",
"version": "2.0.0",
"description": "BLS on BN254",
"main": "dist/lib/BlsBn254.js",
"types": "dist/lib/BlsBn254.d.ts",
"files": [
"package.json",
"dist/lib",
"contracts",
"LICENSE",
"README.md"
],
"scripts": {
"bls:newkey": "yarn ts-node scripts/newkey.ts",
"bls:sign": "yarn ts-node scripts/sign.ts",
"bls:hash": "yarn ts-node scripts/hash.ts",
"build:dist": "yarn tsc",
"test": "yarn hardhat --network hardhat test",
"coverage": "yarn hardhat coverage"
},
"keywords": [
"bls",
"bn254",
"alt_bn128",
"cryptography"
],
"author": "Kevin Charm <[email protected]>",
"license": "MIT",
"devDependencies": {
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"ethers": "^6.8.0",
"hardhat": "^2.17.2",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"mcl-wasm": "^1.4.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ethers": "^6.8.0",
"mcl-wasm": "^1.4.0"
}
}