-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 3.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@tokemak/v2-core",
"version": "0.0.1",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"out"
],
"repository": {
"type": "git",
"url": "https://github.com/Tokemak/v2-core.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "forge build",
"clean": "forge clean && rm -rf cache bin",
"test": "forge test -vvv",
"coverage": "forge coverage",
"gitleaks": "gitleaks detect --no-git --config ./.gitleaks.toml --verbose",
"lint": "concurrently --group --names lint:els,lint:sol --prefix name --prefix-colors magenta,blue \"npm run lint:els\" \"npm run lint:sol\"",
"lint:els": "eslint --no-error-on-unmatched-pattern --max-warnings=0 .",
"lint:sol": "solhint --max-warnings=0 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'",
"format": "concurrently --group --names fmt:els,fmt:sol --prefix name --prefix-colors magenta,blue \"npm run format:els\" \"npm run format:sol\"",
"format:els": "prettier . --write",
"format:sol": "forge fmt",
"format:verify": "concurrently --group --names fmt:els,fmt:sol --prefix name --prefix-colors magenta,blue \"prettier . --check\" \"forge fmt --check\"",
"scan:slither": "slither . --config-file slither.config.json",
"reset": "rm -r cache node_modules out && forge clean && npm install && forge build",
"hardhat:build": "hardhat compile",
"hardhat:test": "hardhat test 'solver/test/Adapters.test.ts'"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@weiroll/weiroll.js": "^0.3.0",
"concurrently": "^7.6.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-yml": "^1.4.0",
"ethers": "^5.7.2",
"fs": "^0.0.1-security",
"hardhat": "^2.14.0",
"husky": "^8.0.3",
"prettier": "2.8.3",
"pretty-quick": "^3.1.3",
"solhint": "^3.4.1",
"typescript": "^4.9.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0,
"never",
"lower-case"
]
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/tokemak"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}