forked from rsksmart/liquidity-bridge-contract
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "liquidity-bridge-contract",
"version": "1.0.0",
"description": "## registerFastBridgeBtcTransaction",
"main": "index.js",
"scripts": {
"compile": "npx truffle compile --all",
"test": "npm run compile && npx truffle test",
"test-regtest": "npm run compile && npx truffle test --network testRegtest",
"coverage": "npx truffle run coverage",
"lint": "npx prettier --list-different 'contracts/**/*.sol' 'test/**/*.js' 'migrations/**/*.js'",
"deploy-regtest": "npx truffle deploy --network rskRegtest",
"deploy-rskTestnet": "npx truffle deploy --network rskTestnet"
},
"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": {
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solidity-coverage": "^0.8.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@truffle/hdwallet-provider": "^2.1.3",
"chai": "^4.3.4",
"chai-bn": "^0.3.0",
"truffle-assertions": "^0.9.2"
}
}