-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.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
{
"name": "@prb/test",
"description": "Modern collection of testing assertions and logging utilities for Solidity",
"version": "0.6.5",
"author": {
"name": "Paul Razvan Berg",
"url": "https://github.com/PaulRBerg"
},
"bugs": {
"url": "https://github.com/PaulRBerg/prb-test/issues"
},
"devDependencies": {
"prettier": "^2.8.7",
"solhint": "^3.4.1"
},
"files": [
"src",
"CHANGELOG.md"
],
"homepage": "https://github.com/PaulRBerg/prb-test#readme",
"keywords": [
"assertions",
"blockchain",
"ethereum",
"foundry",
"smart-contracts",
"solidity",
"testing"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": "github:PaulRBerg/prb-test",
"scripts": {
"clean": "rm -rf cache out",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && bun solhint \"{script,src,test}/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\"",
"test": "forge test"
}
}