mirror of
https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber.git
synced 2025-12-12 20:55:48 +00:00
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "boilerplate-e2e-cypress-cucumber",
|
|
"version": "1.0.0",
|
|
"description": "A boilerplate for end-to-end testing with Cypress and Cucumber in Typescript",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber/issues"
|
|
},
|
|
"homepage": "https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber#readme",
|
|
"keywords": [
|
|
"BDD",
|
|
"cypress",
|
|
"cucumber",
|
|
"docker",
|
|
"eslint",
|
|
"npm",
|
|
"nodejs",
|
|
"typescript"
|
|
],
|
|
"author": "mahula",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"cypress:open": "cypress open --e2e --browser electron",
|
|
"cypress:run": "cypress run --e2e --browser electron",
|
|
"test:lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.cjs,.json,.yml,.yaml --max-warnings 0 ."
|
|
},
|
|
"devDependencies": {
|
|
"@badeball/cypress-cucumber-preprocessor": "^20.0.1",
|
|
"@cypress/webpack-preprocessor": "^6.0.1",
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
"@typescript-eslint/parser": "^7.0.1",
|
|
"cypress": "^13.6.4",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-cypress": "^2.15.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-json": "^3.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-security": "^2.1.1",
|
|
"eslint-plugin-yml": "^1.12.2",
|
|
"multiple-cucumber-html-reporter": "^3.6.2",
|
|
"prettier": "^3.2.5",
|
|
"ts-loader": "^9.5.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": "^20.2.0"
|
|
},
|
|
"cypress-cucumber-preprocessor": {
|
|
"nonGlobalStepDefinitions": true,
|
|
"stepDefinitions": "cypress/e2e/step_definitions/**/*.{js,ts}",
|
|
"json": {
|
|
"enabled": true,
|
|
"output": "cypress/reports/json/cucumber-report.json"
|
|
},
|
|
"messages": {
|
|
"enabled": true,
|
|
"output": "cypress/reports/messages/cucumber-messages.ndjson"
|
|
}
|
|
}
|
|
}
|