-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 2.29 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
{
"name": "liquidity-bridge-contract",
"version": "1.2.1",
"description": "## registerFastBridgeBtcTransaction",
"main": "index.js",
"scripts": {
"compile": "npm run lint:sol && npx truffle compile --all",
"test": "npm run compile && npx truffle test",
"test-regtest": "npm run compile && npx truffle test --network testRegtest",
"test-ganache": "npm run compile && npx truffle test --network ganache",
"coverage": "npx truffle run coverage",
"lint": "npx prettier --list-different 'contracts/**/*.sol' 'test/**/*.js' 'migrations/**/*.js'",
"lint:sol": "solhint 'contracts/**/*.sol'",
"deploy-regtest": "npm run lint:sol && npx truffle deploy --network rskRegtest",
"deploy-rskDev": "npm run lint:sol && npx truffle deploy --network rskDevelopment",
"deploy-rskTestnet": "npm run lint:sol && npx truffle deploy --network rskTestnet",
"deploy-rskMainet": "npm run lint:sol && npx truffle deploy --network rskMainnet",
"deploy-alphanet": "npm run lint:sol && npx truffle deploy --network alphanet",
"deploy-localGanache": "npm run lint:sol && npx truffle deploy --network ganache",
"contract-size": "npx truffle run contract-size",
"test:integration": "npx truffle test integration-test/* --bail --migrate-none --network",
"prepare": "pip3 install pre-commit && pre-commit install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/liquidity-bridge-contract.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rsksmart/liquidity-bridge-contract/issues"
},
"homepage": "https://github.com/rsksmart/liquidity-bridge-contract#readme",
"devDependencies": {
"@openzeppelin/truffle-upgrades": "^1.17.1",
"@rsksmart/pmt-builder": "^3.0.0",
"bs58check": "^3.0.1",
"dotenv": "^16.3.1",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solc": "^0.8.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@rsksmart/btc-transaction-solidity-helper": "^0.1.1",
"@truffle/hdwallet-provider": "^2.1.3",
"chai": "^4.3.4",
"chai-bn": "^0.3.0",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1"
}
}