-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.81 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
{
"name": "@1inch/calldata-compressor",
"version": "0.0.9",
"description": "1inch calldata compressor",
"repository": {
"type": "git",
"url": "git@github.com:1inch/calldata-compressor.git"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "5.1.0"
},
"devDependencies": {
"@1inch/solidity-utils": "6.2.1",
"@nomicfoundation/hardhat-chai-matchers": "2.0.8",
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-network-helpers": "1.0.12",
"@nomicfoundation/hardhat-verify": "2.0.12",
"chai": "4.5.0",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.0",
"eslint-plugin-promise": "7.2.1",
"ethers": "6.13.4",
"hardhat": "2.22.17",
"hardhat-dependency-compiler": "1.2.1",
"hardhat-deploy": "0.12.4",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "3.1.0",
"rimraf": "6.0.1",
"solc": "0.8.23",
"solhint": "5.0.3",
"solidity-coverage": "0.8.14"
},
"scripts": {
"clean": "rimraf artifacts cache coverage contracts/hardhat-dependency-compiler",
"coverage": "hardhat coverage",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"lint": "yarn lint:js && yarn lint:sol",
"lint:fix": "yarn lint:js:fix && yarn lint:sol:fix",
"test": "hardhat test --parallel",
"test:ci": "hardhat test"
},
"files": [
"./*.MD",
"contracts/*.sol",
"js/*.js"
]
}