forked from axelarnetwork/axelar-gmp-sdk-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.71 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
{
"name": "@axelar-network/axelar-gmp-sdk-solidity",
"version": "5.11.0",
"description": "Solidity GMP SDK and utilities provided by Axelar for cross-chain development",
"main": "index.js",
"scripts": {
"build": "npx hardhat clean && npx hardhat compile && npm run copy:interfaces",
"test": "npx hardhat test",
"check": "npx hardhat clean && npx hardhat compile && npx hardhat check",
"test-evm-versions": "bash scripts/test-evm-versions.sh",
"copy:interfaces": "rm -rf interfaces && mkdir interfaces && cp artifacts/contracts/interfaces/*/*.json interfaces/ && rm interfaces/*.dbg.json",
"clean:artifacts": "rm -rf artifacts/build-info artifacts/*/test artifacts/contracts/*/*/*.dbg.json",
"lint": "solhint 'contracts/**/*.sol' && eslint 'scripts/**/*.js' 'test/**/*.js'",
"prettier": "prettier --write 'contracts/**/*.sol' 'test/**/*.js' 'scripts/**/*.js' '*.js'",
"flatten": "sh scripts/flatten-contracts.sh",
"coverage": "cross-env COVERAGE=true hardhat coverage"
},
"author": "axelar-network",
"license": "MIT",
"devDependencies": {
"@axelar-network/axelar-chains-config": "^1.2.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-richardpringle": "^2.0.0",
"fs-extra": "^11.1.1",
"hardhat": "~2.22.3",
"hardhat-storage-layout": "^0.1.7",
"hardhat-contract-sizer": "^2.10.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solhint": "^4.5.2"
},
"engines": {
"node": ">=18"
},
"files": [
"artifacts",
"contracts",
"interfaces",
"scripts",
"README.md",
"hardhat.config.js"
]
}