-
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.7 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.7 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": "desafio_api_carrefour",
"version": "1.0.0",
"description": "Desafio de Automação de Testes de API",
"main": "index.js",
"scripts": {
"test:api": "cypress run --spec",
"generate-data": "node generateData.js",
"generate-produtos": "node generateDataProdutos.js",
"test": "npx cypress run --env allure=true",
"allure:generate": "npx allure generate allure-results --clean -o allure-report",
"allure:open": "npx allure open allure-report",
"allure:clear": "rm -rf allure-results allure-report",
"cy:test": "cypress run --reporter junit --reporter-options 'mochaFile=results/output.xml,toConsole=true'",
"merge-reports": "jrm results/combined.xml \"results/*.xml\""
},
"repository": {
"type": "git",
"url": "https://github.com/dumoisesDevops/desafio_api_carrefour.git"
},
"keywords": [],
"author": "Eduardo Moises da Silva",
"license": "ISC",
"bugs": {
"url": "https://github.com/dumoisesDevops/desafio_api_carrefour/issues"
},
"homepage": "https://github.com/dumoisesDevops/desafio_api_carrefour#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@cypress/webpack-preprocessor": "^6.0.2",
"@faker-js/faker": "^9.4.0",
"@shelex/cypress-allure-plugin": "^2.40.2",
"allure-commandline": "^2.13.10",
"babel-loader": "^9.2.1",
"chance": "^1.1.12",
"cypress": "^11.2.0",
"cypress-mochawesome-reporter": "^3.8.2",
"junit-report-merger": "^6.0.2",
"mochawesome-merge": "^4.3.0",
"mochawesome-report-generator": "^6.0.0",
"webpack": "^5.97.1"
},
"dependencies": {
"axios": "^1.7.9",
"cypress-plugin-api": "^2.11.1",
"mochawesome": "^7.1.3",
"mochawesome-report-generator": "^6.2.0"
}
}