-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.52 KB
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
{
"name": "uniswap-hooks",
"version": "1.1.0",
"description": "Solidity library for secure and modular Uniswap hooks.",
"files": [
"src/*.sol",
"src/**/*.sol"
],
"scripts": {
"docs": "npm run prepare-docs && oz-docs",
"docs:watch": "oz-docs watch contracts docs/templates docs/config.js",
"prepare-docs": "scripts/prepare-docs.sh",
"lint": "forge fmt --check && npm run lint:solhint",
"lint:fix": "forge fmt",
"lint:solhint": "npm run lint:solhint:src && npm run lint:solhint:test",
"lint:solhint:src": "solhint --noPoster 'src/**/*.sol' --config solhint/solhint.src.config.js",
"lint:solhint:test": "solhint --noPoster 'test/**/*.sol' --config solhint/solhint.test.config.js",
"prepare": "husky"
},
"repository": "https://github.com/OpenZeppelin/uniswap-hooks.git",
"bugs": {
"url": "https://github.com/OpenZeppelin/uniswap-hooks/issues"
},
"author": "OpenZeppelin",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.2.0",
"@openzeppelin/docs-utils": "^0.1.6",
"hardhat": "^2.26.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"solhint": "^6.0.0",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-docgen": "^0.6.0-beta.36"
},
"lint-staged": {
"**/*.sol": [
"forge fmt --check"
],
"src/**/*.sol": [
"solhint --noPoster --config solhint/solhint.src.config.js"
],
"test/**/*.sol": [
"solhint --noPoster --config solhint/solhint.test.config.js"
]
}
}