-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "evm-rpc-tester",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "EVM_RPC_URL='https://testnet.blast.io/jsonrpc' NODE_TLS_REJECT_UNAUTHORIZED=0 jest --verbose=true --runInBand --forceExit ./rpc-tests/eth_getLogs.test.ts --json --outputFile=result.json --testLocationInResults"
},
"author": "",
"license": "ISC",
"dependencies": {
"@open-rpc/meta-schema": "^1.14.6",
"@open-rpc/schema-utils-js": "^1.16.1",
"@types/jest": "^29.5.11",
"@types/jest-json-schema": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"axios": "^1.6.7",
"axios-retry": "^4.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"jest-html-reporter": "^3.10.2",
"jest-json-schema": "^6.1.0",
"jest-junit-reporter": "^1.1.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"tslog": "^4.9.2",
"typescript-string-operations": "^1.5.0",
"web3": "^4.4.0"
},
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"lib": [
"es2020"
]
},
"engines": {
"node": ">=18.0.0",
"npm": ">=10.0.0"
}
}