-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"bigint-buffer": "^1.1.5",
"hardhat": "^2.19.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"chai": "^4.3.10",
"ethers": "^6.9.0",
"solidity-coverage": "^0.8.5"
},
"scripts": {
"coverage": "hardhat run coverage",
"compile": "hardhat compile",
"test": "hardhat test"
},
"name": "fungible-sbt",
"version": "0.0.1",
"description": "A fungible Soulbound Token for the Ethereum blockchain",
"main": "hardhat.config.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Christof93/FungibleSBT.git"
},
"keywords": [
"Token",
"Soulbound",
"Ethereum",
"Solidity"
],
"author": "Christof Bless",
"license": "ISC",
"bugs": {
"url": "https://github.com/Christof93/FungibleSBT/issues"
},
"homepage": "https://github.com/Christof93/FungibleSBT#readme"
}