forked from sablier-labs/v1-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 902 Bytes
/
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
{
"name": "kernel-streams",
"description": "Foundry-based smart contract setup for payment streams, using the work of Paul Razvan Berg extensively",
"version": "1.0.0",
"author": {
"name": "Andy Tudhope",
"url": "https://github.com/andytudhope"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.8.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"solhint": "^3.4.0"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity"
],
"packageManager": "[email protected]",
"private": true,
"scripts": {
"clean": "rimraf cache out",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "forge fmt --check && yarn solhint \"{script,src,test}/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\""
}
}