-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.31 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": "@iexec/generic-oracle-contracts",
"version": "2.2.0",
"description": "Contracts for Iexec generic DOracle",
"files": [
"/typechain"
],
"main": "hardhat.config.ts",
"scripts": {
"compile": "hardhat compile",
"deploy-native": "hardhat run scripts/deploy-native.ts",
"deploy-x-chain": "hardhat run scripts/deploy-x-chain.ts",
"update-env-native": "hardhat run scripts/update-env-native.ts",
"verify": "hardhat verify",
"test": "hardhat test",
"coverage": "hardhat coverage",
"format": "prettier --write \"{scripts,test,contracts}/**/*.{ts,sol}\"",
"check-format": "prettier --check \"{scripts,test,contracts}/**/*.{ts,sol}\""
},
"directories": {
"test": "test"
},
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@ethereumjs/vm": "^5.7.1",
"@iexec/doracle": "^5.2.1-2",
"@iexec/interface": "5.2.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^3.4.2",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"hardhat": "^2.14.1",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.6.0",
"typechain": "^7.0.0",
"typescript": "^4.6.2",
"whitelist-smart-contract": "github:iExecBlockchainComputing/whitelist-smart-contract#0.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/generic-oracle-contracts.git"
},
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/generic-oracle-contracts/issues"
},
"homepage": "https://github.com/iExecBlockchainComputing/generic-oracle-contracts#readme",
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"dependencies": {
"openzeppelin-contracts-solc-0.8": "npm:@openzeppelin/contracts@^4.7.0"
},
"dependenciesComments": {
"openzeppelin-contracts-solc-0.8": "Import latest metatx contracts without breaking other OpenZeppelin usages (iExec libraries) for now. Installed with `npm i openzeppelin-contracts-<anything>@npm:@openzeppelin/contracts@<version>`"
}
}