-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "typescriptk6projecttemplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"scenario": "cross-os scenario",
"validate": "cross-os validate",
"test": "cross-os test",
"start-mock-server": "cross-os start-mock-server"
},
"cross-os": {
"scenario": {
"win32": "k6 run",
"linux": "k6 run"
},
"start-mock-server": {
"win32": "prism mock https://raw.githubusercontent.com/AnswerConsulting/AnswerKingAPI/main/AnswerKingAPI.yml"
},
"validate": {
"win32": "k6 run ./src/test-orchestrator.js -e ITERATION_OVERRIDE=1",
"linux": "k6 run ./src/test-orchestrator.js -e ITERATION_OVERRIDE=1"
},
"test": {
"win32": "k6 run -o cloud ./src/test-orchestrator.js",
"linux": "k6 run -o cloud ./src/test-orchestrator.js"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/k6": "^0.42.0",
"k6": "0.0.0",
"k6-html-reporter": "^1.0.5"
},
"devDependencies": {
"cross-os": "^1.5.0"
}
}