-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 879 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
{
"name": "evmbls",
"version": "0.1.0",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.5",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@typechain/ethers-v5": "^1.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"ethers": "^5.0.9",
"mcl-wasm": "^0.4.2",
"mocha": "^8.1.3",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"ts-mocha": "^7.0.0",
"ts-node": "^9.0.0",
"typechain": "^2.0.0",
"typescript": "^3.9.6",
"typings": "^2.1.1"
},
"scripts": {
"compile": "buidler compile",
"generate": "buidler compile && typechain --target ethers-v5 './build/**/*.json'",
"test": "buidler test test/bls.test.ts",
"test:gas": "buidler test test/bls_gas.test.ts",
"ganache": "ganache-cli -d -l 10000000"
}
}