-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 3.91 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
70
71
72
73
74
75
{
"name": "@0xpolygonhermez/test-vectors",
"version": "6.0.0",
"description": "zkEVM test vectors",
"main": "index.js",
"scripts": {
"setup": "npm i",
"eslint": "npx eslint test/**",
"eslint:fix": "npx eslint test/** --fix",
"test:smt": "npx mocha ./test/merkle-tree/**.js",
"update:smt": "npx mocha ./test/merkle-tree/**.js --update",
"test:st:no-data": "npx mocha ./test/state-transition/no-data/st-all.test.js && npx mocha ./test/state-transition/separate-batches/separate-batches.test.js && npx mocha ./test/state-transition/batch-header-timestamp/header-timestamp.test.js",
"test:st:calldata": "npx mocha ./test/state-transition/calldata/st-all.test.js",
"test:mt:bridge": "npx mocha ./test/mt-bridge/**.test.js",
"test:e2e": "npx mocha ./test/state-transition/e2e/e2e.test.js",
"update:mt:bridge": "npx mocha ./test/mt-bridge/**.test.js --update",
"update:st:calldata": "cd ./tools-inputs/tools-calldata && ./gen-all.sh",
"update:st:no-data": "npx mocha ./test/state-transition/no-data/st-all.test.js --update && npx mocha ./test/state-transition/separate-batches/separate-batches.test.js --update && npx mocha ./test/state-transition/batch-header-timestamp/header-timestamp.test.js --update",
"update:e2e": "npx mocha ./test/state-transition/e2e/e2e.test.js --update",
"update:error-rlp": "node tools-inputs/updaters/update-rlp-error-inputs.js",
"update:calldata-custom": "node tools-inputs/updaters/update-calldata-custom.js",
"update:eth-tests": "cd ./tools-inputs/tools-eth && ./update-tests-general.sh",
"update:forcedtx": "cd ./tools-inputs/generate-test-forced && ./gen-forced.sh",
"update:stateoverride": "cd ./tools-inputs/generators && node stateoverride-gen-inputs.js",
"test:contracts": "npx mocha ./test/state-transition/no-data/contracts.test.js --exit",
"update:all": "npm run update:smt && npm run update:mt:bridge && npm run update:st:calldata && npm run update:st:no-data && npm run update:e2e && npm run update:error-rlp && npm run update:eth-tests",
"regen-tests": "sh regen-tests.sh",
"test:gen": "node tools-inputs/tests-parallel/gen-parallel-tests.js",
"test:start": "npx mocha --jobs 7 --timeout 0 --max-old-space-size=8192 --parallel tools-inputs/tests-parallel/parallel-tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xPolygonHermez/test-vectors.git"
},
"keywords": [],
"author": "0xPolygonHermez",
"files": [
"inputs-executor"
],
"license": "pending",
"devDependencies": {
"@0xpolygonhermez/zkevm-commonjs": "github:0xPolygonHermez/zkevm-commonjs#v8.0.0-fork.12",
"@0xpolygonhermez/zkevm-contracts": "github:0xPolygonHermez/zkevm-contracts#feature/fork-etrog",
"@grpc/grpc-js": "^1.6.10",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.9.0",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@polygon-hermez/common": "2.6.3",
"@polygon-hermez/vm": "6.0.12",
"chai": "^4.3.6",
"circom_tester": "^0.0.9",
"circomlibjs": "0.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-mocha": "^9.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "7.1.4",
"ethers": "^5.4.7",
"ffjavascript": "^0.2.46",
"fs": "^0.0.1-security",
"hardhat": "^2.8.4",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"pil-stark": "0.0.34",
"pilcom": "0.0.18",
"solc": "^0.8.11",
"yargs": "^16.2.0"
},
"bugs": {
"url": "https://github.com/0xPolygonHermez/test-vectors/issues"
},
"homepage": "https://github.com/0xPolygonHermez/test-vectors#readme"
}