forked from maximilianoalves/k6-arch-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.34 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
{
"name": "k6-arch-example",
"version": "0.0.2",
"description": "Projeto para exemplo de arquitetura para testes de performance usando o k6",
"main": "index.js",
"scripts": {
"pretest": "",
"FullFlowLoadTest": "webpack && k6 run dist/FullFlowLoad.test.js",
"FullFlowStressTest": "webpack && k6 run dist/FullFlowStress.test.js",
"docker:FullFlowLoadTest": "docker-compose up -d influxdb grafana && webpack && docker-compose run k6 run /dist/FullFlowLoad.test.js",
"docker:FullFlowStressTest": "docker-compose up -d influxdb grafana && webpack && docker-compose run k6 run /dist/FullFlowStress.test.js",
"docker:up": "docker-compose up -d influxdb grafana",
"docker:down": "docker-compose down -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianoalves/k6-arch-example.git"
},
"author": "Maximiliano Alves da Cruz",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianoalves/k6-arch-example/issues"
},
"homepage": "https://github.com/maximilianoalves/k6-arch-example#readme",
"devDependencies": {
"webpack-cli": "^5.0.0"
},
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"casual": "^1.6.2",
"core-js": "^3.26.1",
"faker": "^5.5.3",
"k6": "^0.0.0",
"webpack": "^5.75.0"
}
}