-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.03 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
{
"name": "@unioncredit/v1-sdk",
"version": "1.0.0",
"description": "A library to help developers to easily build their own contracts to interact with Union protocol.",
"scripts": {
"compile": "yarn hardhat compile",
"test-unit:SocialImpactVoucher": "yarn hardhat test ./test/unit/SocialImpactVoucher.test.js",
"test-unit:SocialImpactVoucherFactory": "yarn hardhat test ./test/unit/SocialImpactVoucherFactory.test.js",
"test-scenario:SocialImpactVoucher": "yarn hardhat test ./test/scenario/Scenario.test.js",
"test": "yarn hardhat test ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unioncredit/union-v1-sdk.git"
},
"author": "twygod <[email protected]>",
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"dotenv": "^16.0.0",
"hardhat": "^2.9.0",
"hardhat-deploy": "^0.10.5"
},
"devDependencies": {
"chai": "^4.3.6",
"ethers": "^5.5.4"
}
}