-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 982 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 982 Bytes
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
{
"name": "@superfluid-finance/hot-fuzz",
"description": "A hot fuzz for testing Superfluid protocol and Super Apps",
"version": "0.1.0",
"bin": {
"hot-fuzz": "./hot-fuzz"
},
"bugs": "https://github.com/superfluid-finance/protocol-monorepo/issues",
"devDependencies": {
"@superfluid-finance/ethereum-contracts": "^1.14.0"
},
"homepage": "https://github.com/superfluid-finance/protocol-monorepo#readme",
"license": "AGPL-3.0",
"main": "index.js",
"peerDependencies": {
"@superfluid-finance/ethereum-contracts": "1.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/superfluid-finance/protocol-monorepo.git",
"directory": "packages/hot-fuzz"
},
"scripts": {
"lint": "run-s lint:*",
"lint:sol": "solhint -w 0 contracts/*.sol contracts/*/*.sol && echo '✔ Your .sol files look good.'",
"check-updates": "ncu --target minor"
}
}