-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cypress-cucumber-pil",
"version": "1.0.0",
"description": "Tests de Cypress con Cucumber",
"main": "index.js",
"scripts": {
"test": "test",
"cypress:run:yvytu": "npx cypress run --e2e --browser chrome -e \"tags=@yvytu and not @ignore\" -s cypress/e2e/features/Yvytu/*.feature",
"cypress:run:todos": "npx cypress run --e2e --browser chrome -e \"tags=not @ignore\" -s cypress/e2e/features/**/*.feature",
"generate:report": "node cucumber-html-report.js",
"generate:lighthouse:report": "lighthouse https://www.claro.com.ar/personas"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/edme88/cypressCucumberPIL.git"
},
"keywords": [
"cypress",
"cucumber",
"tests",
"pil"
],
"author": "Darwoft",
"license": "ISC",
"bugs": {
"url": "https://github.com/edme88/cypressCucumberPIL/issues"
},
"homepage": "https://github.com/edme88/cypressCucumberPIL#readme",
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "^19.1.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@cypress-audit/pa11y": "^1.4.2",
"cypress": "^13.5.1",
"cypress-axe": "^1.5.0",
"cypress-image-diff-js": "^1.32.0",
"cypress-real-events": "^1.11.0",
"multiple-cucumber-html-reporter": "^3.5.0"
},
"devDependencies": {
"@cypress-audit/lighthouse": "^1.4.2",
"cypress-iframe": "^1.0.1"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": "cypress/e2e/step_definitions/**.js",
"cucumberautocomplete.steps": "cypress/e2e/**.js",
"html": {
"enabled": true,
"output": "reports/cucumber-report.html"
},
"messages": {
"enabled": true,
"output": "reports/messages.ndjson"
},
"json": {
"enabled": true,
"output": "reports/log.json"
}
}
}