-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "forta-agent-tools",
"version": "3.2.12",
"description": "Forta Agents for common approaches",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"prebuild": "cp -r node_modules/evm/src/interfaces node_modules/evm/typings/src",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"lint-fix": "tslint -p tsconfig.json --fix"
},
"keywords": [],
"author": "Nethermind",
"license": "GPL-3.0",
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/jest-when": "^3.5.0",
"jest": "^29.7.0",
"prettier": "^2.3.2",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@ethersproject/properties": "^5.6.0",
"@ethersproject/transactions": "^5.6.2",
"@types/node-fetch": "^2.6.2",
"async-mutex": "^0.3.2",
"ethers": "^5.7.2",
"ethers-multicall": "^0.2.3",
"evm": "^0.2.0",
"forta-agent": "^0.1.48",
"jest-when": "^3.5.1",
"lru-cache": "^7.12.0",
"node-fetch": "^2.6.7"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NethermindEth/general-agents-module.git"
},
"bugs": {
"url": "https://github.com/NethermindEth/general-agents-module/issues"
},
"homepage": "https://github.com/NethermindEth/general-agents-module#readme"
}