-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "@hashgraph/system-contracts-forking",
"version": "0.0.1",
"description": "Hashgraph System Contracts and Hardhat plugin to support fork testing",
"repository": {
"url": "git+https://github.com/hashgraph/hedera-forking.git"
},
"author": "2024 Hedera Hashgraph, LLC",
"license": "Apache-2.0",
"keywords": [
"ethereum",
"evm",
"hardhat",
"hardhat-plugin",
"hashgraph",
"hedera",
"hedera-token-service",
"precompiles",
"smart-contracts",
"system-contracts"
],
"files": [
"src/",
"out/HtsSystemContract.sol/",
"contracts/",
"*.md"
],
"exports": {
".": "./src/index.js",
"./plugin": "./src/plugin/index.js"
},
"dependencies": {
"ethers": "^6.1.0"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@hashgraph/sdk": "^2.54.2",
"@nomicfoundation/ethereumjs-util": "^9.0.4",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.7",
"@types/sinon": "^17.0.3",
"chai": "^4.0.0",
"eslint": "^9.13.0",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-mocha": "^10.5.0",
"ethereum-cryptography": "^0.1.0",
"globals": "^15.11.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.12.0"
},
"scripts": {
"prepare": "husky",
"type-check": "tsc",
"lint": "eslint",
"test": "mocha",
"make:readme": "scripts/readme.js README.md"
}
}