-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.81 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ssv-network",
"version": "2.0.0",
"description": "Solidity smart contracts for the SSV Network",
"author": "SSV.Network",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ssvlabs/ssv-network.git"
},
"license": "MIT",
"keywords": [
"ssv",
"ssv.network",
"solidity",
"staking"
],
"files": [
"contracts/**/*.sol",
"!contracts/**/deprecated/**",
"!contracts/**/mocks/**",
"!contracts/**/test/**",
"!contracts/**/upgrades/**",
"abis/CSSVToken.json",
"abis/ISSVStaking.json",
"abis/SSVClusters.json",
"abis/SSVDAO.json",
"abis/SSVNetwork.json",
"abis/SSVNetworkViews.json",
"abis/SSVOperators.json",
"abis/SSVOperatorsWhitelist.json",
"abis/SSVStaking.json",
"abis/SSVToken.json",
"abis/SSVValidators.json",
"abis/SSVViews.json",
"docs/",
"README.md",
"RELEASE_NOTES.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "npx hardhat compile",
"test": "npx hardhat test",
"test:gas": "npx hardhat test --gas-stats",
"test:unit": "npx hardhat test test/unit/**/*.test.ts",
"test:unit:gas": "npx hardhat test test/unit/**/*.test.ts --gas-stats",
"test:integration": "npx hardhat test test/integration/*.test.ts",
"test:e2e": "npx hardhat test test/e2e/**/*.test.ts",
"test:integration:gas": "npx hardhat test test/integration/*.test.ts --gas-stats",
"test-forked": "FORK_TESTING_ENABLED=true npx hardhat test test/forked/**/*.test.ts",
"gas:report": "REPORT_GAS=true npx hardhat test",
"gas:compare": "npx tsx scripts/gas-compare.ts",
"gas:ci": "REPORT_GAS=true NO_GAS_ENFORCE=1 npx hardhat test && npx tsx scripts/gas-compare.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"solidity-coverage": "NO_GAS_ENFORCE=1 npx hardhat test --coverage",
"slither": "npx hardhat compile --force && slither . --hardhat-ignore-compile --solc-remaps @openzeppelin=node_modules/@openzeppelin --filter-paths \"contracts/test/\" --exclude-informational --exclude-dependencies",
"size-contracts": "npx hardhat size-contracts"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.3",
"@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.2",
"@nomicfoundation/hardhat-ignition": "^3.0.6",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.2",
"@nomicfoundation/hardhat-verify": "^3.0.8",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.2",
"chai": "^5.3.3",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"hardhat": "^3.1.0",
"mocha": "^11.7.5",
"solhint": "^5.0.0",
"tsx": "^4.19.0"
}
}