-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 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
{
"name": "@tenyokj/scsl-contracts",
"version": "1.0.0",
"description": "SCSL (Smart-Contract Security Lab) is an educational Solidity security repository with exploit-driven examples and reusable security primitives.",
"author": "SCSL Contributors",
"license": "GPL-3.0-only",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Tenyokj/SCSL.git"
},
"homepage": "https://github.com/Tenyokj/SCSL#readme",
"bugs": {
"url": "https://github.com/Tenyokj/SCSL/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"solidity",
"smart-contract-security",
"web3-security",
"ethereum",
"hardhat",
"smart-contracts",
"security-lab",
"solidity-security",
"reentrancy",
"delegatecall"
],
"files": [
"library",
"examples/contracts",
"examples/README.md",
"public",
"README.md",
"LICENSE"
],
"scripts": {
"test": "hardhat test",
"test:examples": "hardhat test examples/test_examples",
"compile": "hardhat compile",
"coverage": "hardhat test --coverage",
"pack:check": "npm pack --dry-run"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.3",
"@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.2",
"@nomicfoundation/hardhat-mocha": "^3.0.7",
"@nomicfoundation/hardhat-keystore": "^3.0.2",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.1",
"@nomicfoundation/hardhat-typechain": "^3.0.1",
"@nomicfoundation/hardhat-verify": "^3.0.3",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.1",
"chai": "^5.3.3",
"dotenv": "^17.2.3",
"ethers": "^6.15.0",
"hardhat": "^3.0.15",
"mocha": "^11.7.5",
"solidity-coverage": "^0.8.0-beta.1",
"ts-node": "^10.9.2",
"typescript": "~5.8.0"
},
"engines": {
"node": ">=22.10"
},
"dependencies": {}
}