-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.7 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
60
61
62
63
64
65
66
{
"name": "@adrastia-oracle/adrastia-core",
"version": "4.9.1",
"main": "index.js",
"author": "TRILEZ SOFTWARE INC.",
"license": "BUSL-1.1",
"keywords": [
"adrastia",
"oracle",
"library",
"ethereum",
"solidity",
"evm"
],
"repository": {
"type": "git",
"url": "https://github.com/adrastia-oracle/adrastia-core"
},
"files": [
"contracts",
"!contracts/test",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/test/**/*.json",
"!artifacts/contracts/**/*.dbg.json"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@openzeppelin-v4/contracts": "npm:@openzeppelin/[email protected]",
"@prb/math": "^2.5.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v3-core": "^1.0.1"
},
"devDependencies": {
"@atixlabs/hardhat-time-n-mine": "^0.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@uniswap/v3-periphery": "^1.4.3",
"chai": "^4.3.6",
"decimal.js": "^10.4.2",
"dotenv": "^16.3.1",
"eth-gas-reporter": "^0.2.25",
"ethereum-waffle": "4.0.0-alpha.0",
"ethers": "^5.7.2",
"hardhat": "2.22.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "^2.8.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-rc.1",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.3"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "HARDHAT_HARDFORK=berlin hardhat coverage",
"lint": "solhint 'contracts/**/*.sol'"
}
}