-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "hardhat-storage-layout",
"version": "0.1.7",
"description": "Hardhat plugin for exporting the contract storage layout",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/aurora-is-near/hardhat-storage-layout.git",
"author": "[email protected]",
"license": "Apache2.0",
"scripts": {
"build": "tsc --build",
"lint:fix": "prettier --write 'src/*.ts' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"solidity",
"evm",
"hardhat-plugin",
"storage-layout"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/find-up": "^4.0.0",
"@types/fs-extra": "^5.0.4",
"@types/js-yaml": "^3.12.5",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.38",
"chai": "^4.2.0",
"dotenv": "^6.2.0",
"hardhat": "^2.0.3",
"mocha": "^5.2.0",
"prettier": "^1.17.0",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5"
},
"peerDependencies": {
"hardhat": "^2.0.3"
},
"dependencies": {
"console-table-printer": "^2.9.0"
}
}