-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 993 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 993 Bytes
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
{
"name": "@erc6900/reference-implementation",
"description": "Reference implementation for [ERC-6900](https://eips.ethereum.org/EIPS/eip-6900).",
"version": "0.8.1",
"devDependencies": {
"pnpm": "^8.7.5",
"solhint": "^3.6.2"
},
"files": [
"/src/**/*.sol"
],
"scripts": {
"lint": "pnpm lint:src && pnpm lint:test && pnpm lint:script",
"lint:src": "solhint --max-warnings 0 -c .solhint-src.json './src/**/*.sol'",
"lint:test": "solhint --max-warnings 0 -c .solhint-test.json './test/**/*.sol'",
"lint:script": "solhint --max-warnings 0 -c .solhint-script.json './script/**/*.sol'"
},
"repository": {
"type": "git",
"url": "https://github.com/erc6900/reference-implementation.git"
},
"keywords": [
"erc6900"
],
"author": "ERC-6900 Authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/erc6900/reference-implementation/issues"
},
"homepage": "https://github.com/erc6900/reference-implementation#readme"
}