-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "hardhat-gas-trackooor",
"version": "1.0.4",
"description": "Hardhat plugin to track gas on the transaction level",
"repository": "github:d3or/hardhat-gas-trackooor",
"author": "d3or",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"unit tests",
"gas"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "npx mocha test/waffle.ts",
"prepublishOnly": "tsc --project tsconfig.prod.json --resolveJsonModule",
"build": "tsc --project tsconfig.prod.json --resolveJsonModule",
"watch": "tsc -w"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@types/chai": "^4.2.14",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "7",
"@types/node": "^8.10.38",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chai": "^4.2.0",
"dotenv": "^6.2.0",
"ganache-cli": "^6.4.3",
"hardhat": "^2.20.1",
"mocha": "7",
"prettier": "^2.5.1",
"source-map-support": "^0.5.12",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"hardhat": "^2.0.0",
"ethers": "^6.11.1"
}
}