-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
44
45
46
47
48
49
50
51
{
"name": "@thematters/contracts",
"version": "0.0.1",
"private": false,
"description": "Solidity contracts for Matters",
"keywords": [
"solidity",
"contract"
],
"homepage": "https://github.com/thematters/contracts#readme",
"bugs": {
"url": "https://github.com/thematters/contracts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thematters/contracts.git"
},
"license": "Apache-2.0",
"author": "Matters Lab",
"scripts": {
"gen:doc": "solidity-docgen -i src -e src/test -t docs --solc-module solc-0.8",
"lint": "npm run format && npm run solhint",
"lint:check": "npm run format:check && npm run solhint:check",
"format": "prettier --write 'src/**/*.sol'",
"format:check": "prettier --check 'src/**/*.sol'",
"format:list": "prettier --list-different 'src/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"solhint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,css,md,sol}": "npm run format",
"*.sol": "solhint"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/merkle-tree": "^1.0.5"
},
"devDependencies": {
"@types/node": "^20.9.0",
"ethers": "^5.6.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.2.0",
"solc-0.8": "npm:solc@^0.8.23",
"solhint": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-docgen": "^0.5.17"
}
}