-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "@rsksmart/btc-transaction-solidity-helper",
"version": "0.2.1",
"description": "Solidity library with functions to work with Bitcoin transactions inside smart contracts",
"main": "contracts",
"files": [
"contracts"
],
"scripts": {
"test": "REPORT_GAS=true npx hardhat test",
"test:coverage": "npx hardhat coverage",
"lint": "npx hardhat check",
"compile": "npx hardhat compile",
"prepare": "pip3 install pre-commit && pre-commit install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/btc-transaction-solidity-helper.git"
},
"keywords": [
"RSK",
"rootstock",
"BTC",
"Bitcoin",
"solidity",
"smart-contract",
"ethereum",
"blockchain",
"dapps"
],
"author": "Luis Chavez",
"license": "ISC",
"bugs": {
"url": "https://github.com/rsksmart/btc-transaction-solidity-helper/issues"
},
"homepage": "https://github.com/rsksmart/btc-transaction-solidity-helper#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"bech32": "^2.0.0",
"bs58check": "^3.0.1",
"hardhat": "^2.17.0",
"solidity-coverage": "^0.8.12"
}
}