-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 841 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 841 Bytes
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
{
"name": "solidity-math-utils",
"version": "3.0.0",
"description": "Solidity Mathematical Utilities",
"repository": {
"type": "git",
"url": "git+https://github.com/barakman/solidity-math-utils.git"
},
"author": "Barak Manos",
"license": "SEE LICENSE IN https://raw.githubusercontent.com/bancorprotocol/contracts-solidity/master/LICENSE",
"files": [
"project/contracts/*.sol",
"project/contracts/common/*.sol"
],
"scripts": {
"build": "hardhat compile",
"test": "hardhat test --bail",
"verify": "hardhat coverage"
},
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "2.1.0",
"@nomiclabs/hardhat-web3": "2.1.0",
"decimal.js": "10.6.0",
"hardhat": "2.28.6",
"solidity-coverage": "0.8.17"
}
}