-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "@windranger-io/windranger-tools-hardhat",
"version": "1.0.3",
"license": "Apache-2.0",
"description": "Output Solidity contract sizes & layouts with Hardhat",
"keywords": [
"hardhat",
"solidity",
"solc",
"smart-contracts",
"ethereum",
"blockchain",
"bytecode",
"contract",
"size",
"storage",
"layout"
],
"repository": {
"type": "git",
"url": "git+https://github.com/windranger-io/windranger-tools-hardhat"
},
"author": {
"name": "Red Cyrax",
"url": "https://github.com/cyraxred"
},
"files": [
"dist/*",
"dist/**/*"
],
"main": "dist/index.js",
"peerDependencies": {
"hardhat": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"eslint": "^7.6.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.0.0",
"prettier": "^2.7.1"
},
"dependencies": {
"chalk": "^4.0.0",
"console-table-printer": "2.11.0"
},
"scripts": {
"build": "npm run clean; tsc",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"package": "npm run build && npm pack"
}
}