-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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": "erc7656",
"version": "0.8.1",
"description": "ERC7656 Reference Implementation",
"publishConfig": {
"access": "public"
},
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"clean": "rimraf artifacts cache",
"test": "NODE_ENV=test npx hardhat test",
"test:gas": "NODE_ENV=test GAS_REPORT=yes npx hardhat test",
"coverage": "rimraf coverage coverage.json && COVERAGE=1 NODE_ENV=test npx hardhat coverage",
"compile": "NODE_ENV=test npx hardhat compile",
"lint": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'",
"prepare": "husky install",
"prepublishOnly": "echo 'Error: Please use 'npm run publish-package' to publish.' && exit 1",
"publish-package": "bin/publish.sh",
"postinstall": "./post-install.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crunaprotocol/erc7656.git"
},
"author": {
"name": "Francesco Sullo",
"email": "francesco@sullo.co"
},
"bugs": {
"url": "https://github.com/crunaprotocol/erc7656/issues"
},
"homepage": "https://github.com/crunaprotocol/erc7656#readme",
"license": "GPL3",
"devDependencies": {
"@ethersproject/contracts": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@openzeppelin/test-helpers": "^0.5.16",
"@secrez/cryptoenv": "^0.2.4",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"chai": "^4.5.0",
"dotenv": "^16.4.7",
"eth-deploy-utils": "^3.1.1",
"ethereumjs-abi": "^0.6.8",
"ethers": "^6.13.5",
"fs-extra": "^11.3.0",
"hardhat": "^2.22.18",
"husky": "^9.1.7",
"prettier": "^3.5.1",
"prettier-plugin-solidity": "^1.4.2",
"pretty-quick": "^4.0.0",
"require-or-mock": "^0.2.1",
"rimraf": "^5.0.10",
"solhint": "^5.0.5",
"solidity-coverage": "^0.8.14",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.js": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@openzeppelin/contracts": "^5.2.0"
}
}