-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "solrand",
"description": "Simple randomness library for Solidity",
"version": "1.0.0",
"author": {
"name": "Kamil Planer",
"url": "https://github.com/MrKampla"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/MrKampla/solidity-dynamic-array"
},
"files": [
"contracts"
],
"license": "MIT",
"scripts": {
"build": "forge build",
"test": "forge test -vv",
"clean": "forge clean",
"lint": "pnpm run lint:sol && pnpm run prettier:check",
"lint:sol": "solhint \"{src,test}/**/*.sol\"",
"prettier:check": "prettier --check --plugin=prettier-plugin-solidity \"**/*.{md,sol,yml}\"",
"prettier:write": "prettier --write --plugin=prettier-plugin-solidity \"**/*.{md,sol,yml}\"",
"docgen": "pnpm dlx foundry-docgen",
"slither": "slither . --exclude-dependencies --filter-paths \"lib|test\""
},
"devDependencies": {
"@types/node": "^18.13.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0"
},
"keywords": [
"blockchain",
"ethereum",
"library",
"random",
"randomness",
"vrf",
"smart-contracts",
"solidity"
]
}