-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.39 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
56
57
58
59
{
"name": "@0xdoublesharp/unsafe-math",
"version": "0.0.16",
"description": "Unchecked uint256 and int256 math operations for Solidity 0.8",
"repository": "https://github.com/doublesharp/unsafe-math",
"scripts": {
"compile": "yarn hardhat compile",
"precoverage": "git submodule update --init --recursive && cd modules/parser && npx -y shx test -d \"./dist\" && echo \"@solidity-parser/parser already built\" || (npm install && npm run build:node && npm run build:browser && npm run generate-types && npx shx mkdir -p dist/antlr && npx shx cp \"./src/antlr/*tokens\" dist/antlr)",
"coverage": "yarn hardhat coverage"
},
"keywords": ["solidity", "unchecked", "unchecked-math", "unsafe-math", "math", "uint256", "int256", "U256", "I256"],
"author": "@0xDoubleSharp",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "4.3.7",
"dotenv": "16.0.3",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"hardhat": "^2.13.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.26",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-spdx-license-identifier": "^2.1.0",
"hardhat-storage-layout": "^0.1.7",
"hardhat-tracer": "^2.2.2",
"hardhat-watcher": "^2.5.0",
"prettier": "2.8.7",
"prettier-plugin-solidity": "1.1.3",
"solhint": "3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "0.8.2",
"ts-generator": "^0.1.1",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"typechain": "^8.1.1",
"typescript": "5.0.4"
},
"resolutions": {
"prettier-plugin-solidity/@solidity-parser/parser": "./modules/parser",
"solhint/@solidity-parser/parser": "./modules/parser",
"sol2uml/@solidity-parser/parser": "./modules/parser",
"solidity-coverage/@solidity-parser/parser": "./modules/parser",
"hardhat/solc": "^0.8.19"
}
}