-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "@axelar-network/axelar-cgp-solidity",
"version": "4.4.0",
"description": "Ethereum Smart Contracts for Axelar Network",
"main": "index.js",
"scripts": {
"build": "rm -rf artifacts && hardhat compile",
"test": "hardhat test",
"test-evm-versions": "bash test-evm-versions.bash",
"lint": "solhint 'contracts/**/*.sol' && eslint 'test/**/*.js'",
"prettier": "prettier --write 'contracts/**/*.sol' 'test/**/*.js' 'scripts/**/*.js' '*.js' && prettier --write 'scripts/**/*.js'",
"flatten": "sh scripts/flatten-contracts.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axelarnetwork/axelar-cgp-solidity.git"
},
"keywords": [
"ethereum",
"axelar"
],
"author": "axelar-network",
"license": "ISC",
"bugs": {
"url": "https://github.com/axelarnetwork/axelar-cgp-solidity/issues"
},
"homepage": "https://github.com/axelarnetwork/axelar-cgp-solidity#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"axelar-utils-solidity": "https://github.com/axelarnetwork/axelar-utils-solidity.git",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-richardpringle": "^2.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"fs-extra": "^10.1.0",
"hardhat": "^2.9.7",
"hardhat-gas-reporter": "^1.0.8",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"readline-sync": "^1.4.10",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21"
},
"engines": {
"node": ">=16 <17"
}
}