-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 3.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 3.67 KB
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
{
"name": "e2e_sdk_prime_automaiton",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha --timeout 600000 --spec test/specs/mainnet/transferringFunds/oldWallet_transferringFunds.spec.js --reporter mochawesome --require mochawesome/register --reporter-options charts=true,code=false,showHooks=always",
"test-mainnet": "mocha --timeout 600000 --spec test/specs/mainnet/*/oldWallet_*.spec.js --spec test/specs/mainnet/*/newWallet_*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always",
"test-mainnet-precondition": "mocha --timeout 600000 --spec test/specs/mainnet/precondition/precondition_newWallet.spec.js",
"test-mainnet-postcondition": "mocha --timeout 600000 --spec test/specs/mainnet/postcondition/postcondition_newWallet.spec.js",
"test-mainnet-newWallet": "npm run test-mainnet-precondition; mocha --timeout 600000 --spec test/specs/mainnet/*/newWallet_*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always; npm run test-mainnet-postcondition",
"test-mainnet-combined": "node scripts/run-mainnet-test-sequence.js",
"test-mainnet-paymasterapi": "mocha --timeout 600000 --spec test/specs/mainnet/paymasterAPIs/*/*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always",
"test-testnet": "mocha --timeout 600000 --spec test/specs/testnet/*/oldWallet_*.spec.js --spec test/specs/testnet/*/newWallet_*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always",
"test-testnet-precondition": "mocha --timeout 600000 --spec test/specs/testnet/precondition/precondition_newWallet.spec.js",
"test-testnet-postcondition": "mocha --timeout 600000 --spec test/specs/testnet/postcondition/postcondition_newWallet.spec.js",
"test-testnet-newWallet": "npm run test-testnet-precondition; mocha --timeout 600000 --spec test/specs/testnet/*/newWallet_*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always; npm run test-testnet-postcondition",
"test-testnet-combined": "node scripts/run-testnet-test-sequence.js",
"test-testnet-paymasterapi": "mocha --timeout 600000 --spec test/specs/testnet/paymasterAPIs/*/*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always",
"test-service-benchmark": "mocha --timeout 600000 --spec test/specs/hostedServiceBanchmark/*.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always",
"test-trustWallet": "mocha --timeout 600000 --spec test/specs/trustWallet/trustWallet_transferringFunds.spec.js --reporter mochawesome --reporter-options charts=true,code=false,showHooks=always"
},
"author": "Jinesh Darji",
"license": "ISC",
"dependencies": {
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@etherspot/contracts": "^2.0.1",
"@etherspot/prime-sdk": "file:./etherspot-prime-sdk-1.9.2.tgz",
"@reactivex/rxjs": "^6.6.7",
"axios": "^1.4.0",
"chai": "^4.3.7",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"erc-20-abi": "^1.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "5.7.0",
"etherspot": "1.44.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"mochawesome-report-generator": "^6.2.0",
"mysql2": "^3.6.5",
"permissionless": "^0.2.28",
"prettier": "^3.2.5",
"reflect-metadata": "^0.1.13",
"rxjs": "6.6.7",
"viem": "^2.22.21",
"ws": "^8.13.0"
},
"devDependencies": {
"eslint": "^8.45.0"
}
}