forked from balancer/balancer-v3-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.38 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
{
"name": "@balancer-labs/v3-monorepo",
"private": true,
"description": "Balancer V3 Monorepo",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/balancer-v3-monorepo#readme",
"repository": "[email protected]:balancer-labs/balancer-v3-monorepo.git",
"bugs": {
"url": "https://github.com/balancer-labs/balancer-v3-monorepo/issues"
},
"engines": {
"node": ">=18 <18.16"
},
"packageManager": "[email protected]",
"contributors": [
"Nicolás Venturo <[email protected]>",
"Jeffrey Bennett <[email protected]>",
"Juan Ignacio Ubeira <[email protected]>",
"Igor Yalovoy <[email protected]>",
"Mike McDonald <[email protected]>"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --verbose run build",
"lint": "NODE_NO_WARNINGS=1 yarn workspaces foreach --parallel --verbose run lint",
"test": "yarn workspaces foreach --parallel --verbose run test",
"coverage": "yarn workspaces foreach --parallel --verbose run coverage",
"gas": "yarn workspaces foreach --parallel --verbose run gas",
"slither-install": "python3 -m venv slither && bash -c 'source slither/bin/activate && pip3 install https://github.com/crytic/slither/releases/download/0.10.1/0.10.1.zip'",
"slither": "yarn workspaces foreach --parallel --verbose run slither"
},
"workspaces": [
"pkg/*",
"pvt/*"
]
}