-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "web3-plugin-zksync",
"version": "1.0.8",
"description": "web3.js plugin for ZkSync",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/web3/web3-plugin-zksync#readme",
"bugs": {
"url": "https://github.com/web3/web3-plugin-zksync/issues"
},
"scripts": {
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"build": "tsc --project tsconfig.build.json",
"test:prepare": "ts-node test/setup.ts",
"test:wait": "ts-node test/wait.ts",
"build:docs": "npx -y typedoc src/index.ts --tsconfig tsconfig.build.json",
"test": "jest --config=./test/jest.config.js",
"test:unit": "jest --config=./test/jest.config.js test/unit",
"test:local": "jest --config=./test/jest.config.js --runInBand --maxConcurrency=1 test/local",
"test:integration": "jest --config=./test/jest.config.js --runInBand --maxConcurrency=1 test/integration",
"test:all": "jest --config=./test/jest.config.js --runInBand --maxConcurrency=1"
},
"contributors": [
"ChainSafe <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/web3/web3-plugin-zksync.git"
},
"dependencies": {
"ethereum-cryptography": "^2.1.3",
"hardhat": "^2.19.4",
"web3": "^4.12.1"
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.2.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"eslint": "8.56.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"web3": ">= 4.12.0"
}
}