generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "foundry-random",
"description": "Generate reliably random numbers using Foundry's FFI cheat code",
"version": "1.0.2",
"author": {
"name": "Joe Jordan",
"url": "https://github.com/joejordan"
},
"bugs": {
"url": "https://github.com/joejordan/foundry-random/issues"
},
"homepage": "https://github.com/joejordan/foundry-random/#readme",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.1.0",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"files": [
"/src",
"CHANGELOG.md"
],
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"random"
],
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/joejordan/foundry-random"
},
"resolutions": {
"solhint/@solidity-parser/parser": "^0.14.5"
},
"scripts": {
"clean": "rimraf cache out",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "solhint \"{src,test}/**/*.sol\"",
"postinstall": "",
"prettier:check": "prettier --check \"**/*.{json,md,sol,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,sol,yml}\""
}
}