-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@rougenetwork/v2-core",
"version": "2.2.10",
"license": "AGPL-3.0",
"description": "Smart contracts and core libs for the Rouge Protocol V2",
"homepage": "https://github.com/TheRougeProject/v2-core#readme",
"author": {
"name": "Christophe Le Bars",
"email": "<[email protected]>"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRougeProject/v2-core.git"
},
"bugs": {
"url": "https://github.com/TheRougeProject/v2-core/issues"
},
"keywords": [
"rouge",
"ethereum",
"rouge-v2",
"protocol"
],
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test"
},
"exports": {
"./package.json": "./package.json",
"./config": {
"import": "./lib/config.mjs"
},
"./rouge": {
"import": "./lib/rouge.mjs"
},
"./Artifacts.json": {
"import": "./deployments/Artifacts.json"
},
"./Rouge.json": {
"import": "./artifacts/contracts/Rouge.sol/Rouge.json"
},
"./Factory.json": {
"import": "./artifacts/contracts/proxies/RougeProxyFactory.sol/RougeProxyFactory.json"
}
},
"files": [
"./lib/config.mjs",
"./lib/rouge.mjs",
"./deployments/Artifacts.json",
"./contracts/Rouge.sol",
"./contracts/proxies/RougeProxyFactory.sol",
"./artifacts/contracts/Rouge.sol/Rouge.json",
"./artifacts/contracts/proxies/RougeProxyFactory.sol/RougeProxyFactory.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2",
"erc-token-js": "^0.1.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"awesome-qr": "^2.1.5-rc.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"hardhat-deploy": "^0.11.24",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2"
}
}