-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "DeedNFT: ERC-721",
"version": "1.0.0",
"description": "DeedNFT Contracts with Validator integration for decentralized asset registration and verification",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js --network <network-name>",
"coverage": "npx hardhat coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Deed3Labs/DeedNFT-Contracts.git"
},
"keywords": [
"Solidity",
"ERC721",
"NFT",
"Validator",
"Smart Contracts"
],
"author": "Deed3Labs, LLC. <[email protected]>",
"contributors": [
"Isaiah @kyngkai909 Litt <[email protected]>",
"Corantin @gossman Noll <[email protected]>",
"Kevin @kafann Mansour <[email protected]>"
],
"license": "AGPL-3.0",
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.9.0",
"@openzeppelin/contracts": "^4.9.0"
},
"devDependencies": {
"hardhat": "^2.12.6",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.21",
"hardhat-gas-reporter": "^1.0.9",
"chai": "^4.3.7",
"mocha": "^9.2.2"
},
"engines": {
"node": ">=14.0.0"
}
}