-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.93 KB
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
{
"name": "diamond-contracts-claiming",
"version": "4.0.0",
"description": "claiming contracts",
"main": "index.js",
"coverage": "export SOLIDITY_COVERAGE=true && npx hardhat coverage",
"scripts": {
"build": "tsc --build",
"compile": "npx hardhat compile",
"test": "npx hardhat test --network hardhat",
"test-large": "export CLAIMING_TEST_RUN_LARGE=1 && npx hardhat test --network hardhat",
"coverage": "export SOLIDITY_COVERAGE=true && npx hardhat coverage",
"test-deploy": "ts-node scripts/deploy-raw.ts",
"test-deploy-and-fill": "ts-node scripts/test-fill.ts",
"test-claim": "ts-node scripts/test-claim.ts",
"import-from-chain": "ts-node scripts/import-from-chainz.ts",
"fill-alpha3": "ts-node scripts/fill-alpha3.ts",
"fill-beta1": "ts-node scripts/fill-beta1.ts",
"fill-testnet": "ts-node scripts/fill-testnet.ts",
"fill-mainnet": "ts-node scripts/fill-mainnet.ts",
"show-dillute-time": "ts-node scripts/print-dillute-time.ts",
"dilute2": "ts-node scripts/dilute2.ts",
"solhint": "solhint 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DMDcoin/diamond-contracts-claiming.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DMDcoin/diamond-contracts-claiming/issues"
},
"homepage": "https://github.com/DMDcoin/diamond-contracts-claiming#readme",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@types/elliptic": "^6.4.18",
"base58check": "^2.0.0",
"bitcoinjs-lib": "^6.1.5",
"bitcoinjs-message": "^2.2.0",
"bs58check": "^3.0.1",
"chai": "^4.2.0",
"ecpair": "^2.1.0",
"elliptic": "^6.5.5",
"js-sha256": "^0.11.0",
"secp256k1": "^5.0.0",
"solhint": "^5.0.3",
"tiny-secp256k1": "^2.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}