-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "@adrastia-oracle/adrastia-periphery",
"version": "4.11.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-periphery"
},
"files": [
"contracts",
"!contracts/test",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/test/**/*.json",
"!artifacts/contracts/**/*.dbg.json"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@adrastia-oracle/adrastia-core": "4.9.1",
"@openzeppelin-v3/contracts": "npm:@openzeppelin/[email protected]",
"@openzeppelin-v4/contracts": "npm:@openzeppelin/[email protected]"
},
"devDependencies": {
"@atixlabs/hardhat-time-n-mine": "^0.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"chai": "^4.3.7",
"dotenv": "^16.1.4",
"eth-gas-reporter": "^0.2.25",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "2.14.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "^2.3.4",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2"
},
"scripts": {
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test",
"coverage": "hardhat coverage",
"lint": "solhint 'contracts/**/*.sol'"
}
}