-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "nethermindseniorqaengineerassignment-rk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"k6": "./scripts/run-k6.sh",
"k6:local": "./scripts/run-k6-local.sh",
"k6:report": "./scripts/process-k6-report.sh",
"sedge": "./scripts/run-sedge.sh",
"sedge:stop": "./sedge -p $PWD down",
"wait-for-sync": "npx ts-node ./scripts/waitForFullSync.ts",
"run-tests-locally": "./scripts/run-tests-locally.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rlve/NethermindSeniorQAEngineerAssignment-RK.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rlve/NethermindSeniorQAEngineerAssignment-RK/issues"
},
"homepage": "https://github.com/rlve/NethermindSeniorQAEngineerAssignment-RK#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/k6": "^0.51.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"dependencies": {
"ajv": "^8.13.0",
"ts-node": "^10.9.2",
"ts-retry-promise": "^0.8.1"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}