-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
41 lines (41 loc) · 1011 Bytes
/
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
{
"name": "audits",
"version": "1.0.0",
"description": "Lido smart contract audits",
"scripts": {
"prepare": "husky",
"lint:check": "eslint --max-warnings=0 .",
"lint:format": "eslint --max-warnings=0 --fix .",
"prettier:check": "prettier . --check",
"prettier:format": "prettier . --write",
"link:check": "markdown-link-check README.md --verbose"
},
"lint-staged": {
"./**/*.md": [
"prettier --write",
"eslint --max-warnings=0"
]
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"keywords": [
"audits",
"lido",
"security",
"smart",
"contracts"
],
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"eslint-plugin-mdx": "^3.1.5",
"markdown-link-check": "^3.12.2"
},
"license": "UNLICENSED",
"homepage": "https://github.com/lidofinance/audits#readme"
}