-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "collective-governance-v1",
"version": "0.9.20",
"description": "Open Source Community Governance Smart Contract",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"contracts": "contracts",
"test": "test"
},
"scripts": {
"build": "forge build --sizes",
"prettier:check": "prettier --check \"(contracts|test|script)/**.sol\"",
"prettier:fix": "prettier --write \"(contracts|test|script)/**.sol\"",
"hint": "solhint contracts/**/*.sol test/**/*.sol script/**/*.sol",
"test": "forge test -vvv",
"clean": "forge cache clean && if [ -d out ]; then forge clean; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collectivexyz/collective-governance-v1.git"
},
"devDependencies": {
"solhint": "3.4.1",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3"
},
"dependencies": {
"nvm": "0.0.4"
},
"keywords": [],
"author": "collective",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/collectivexyz/collective-governance-v1/issues"
},
"homepage": "https://collectivexyz.github.io/collective-governance-v1"
}