-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
69 lines (69 loc) · 1.76 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
{
"name": "hardhat-tracer",
"version": "3.1.0",
"description": "Hardhat Tracer plugin",
"repository": "github:zemse/hardhat-tracer",
"author": "Soham Zemse (https://github.com/zemse)",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"tracer",
"evm",
"internal-transactions"
],
"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": "mocha -t 300000 --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"prepublish": "rm -rf dist && yarn build",
"watch": "tsc -w",
"start": "tsc -w"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.6",
"@types/node": "^16.0.0",
"@types/readable-stream": "^2.3.14",
"@types/semver": "^7.5.8",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"hardhat": "2.22.5",
"hardhat-deploy": "^0.11.25",
"mocha": "^7.1.2",
"prettier": "2.0.5",
"ts-node": "^10.7.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~5.0.0"
},
"peerDependencies": {
"chai": "4.x",
"hardhat": ">=2.22.5 <3.x"
},
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.3.4",
"ethers": "^5.6.1",
"semver": "^7.6.2"
},
"resolutions": {
"safe-buffer": "^5.1.2"
},
"packageManager": "[email protected]"
}