-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 968 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
31
32
33
{
"name": "stateless-swap",
"version": "1.0.0",
"description": "ETH <=> BTC trades",
"scripts": {
"compile": "truffle compile",
"test:coverage": "npx solidity-coverage",
"lint": "solium -d contracts/ && eslint ./test",
"lint:fix": "solium --fix -d contracts/ && eslint --fix ./test",
"test": "truffle test"
},
"author": "James Prestwich",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"@celo/contractkit": "^0.3.3",
"@summa-tx/bitcoin-spv-sol": "^3.0.0",
"@summa-tx/relay-sol": "^2.0.0",
"bn.js": "^5.0.0",
"dotenv": "^8.2.0",
"openzeppelin-solidity": "^2.5.0",
"solc": "^0.4.26"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"eth-gas-reporter": "^0.2.4",
"solidity-coverage": "^0.6.3",
"solium": "^1.2.5",
"@truffle/hdwallet-provider": "^1.0.33",
"truffle-plugin-verify": "^0.3.5"
}
}