UNPKG

gherkin-testcafe

Version:

> Run TestCafé tests with the Gherkin syntax

93 lines (92 loc) 3.74 kB
{ "name": "gherkin-testcafe", "version": "7.4.0", "author": "Lukas Kullmann <lukas.kullmann@kiwigrid.com>", "contributors": [ "Wilhelm Behncke <behncke@sitegeist.de>", "Jarmo Koivisto", "Jakob Ström", "Jussi Mullo", "Mert Susur", "Matthew Mangion", "Danilo Cestari <danilofcestari@gmail.com>", "Arthur Warnier" ], "repository": { "type": "git", "url": "https://github.com/Arthy000/gherkin-testcafe" }, "license": "MIT", "keywords": [ "gherkin", "cucumber", "testcafe", "acceptance testing" ], "files": [ "main.js", "index.d.ts", "src/" ], "types": "index.d.ts", "bin": "./main.js", "main": "src/index.js", "scripts": { "prettier": "prettier --write 'src/**/*.js' README.md main.js index.d.ts", "prettier-check": "prettier --list-different 'src/**/*.{js,yaml,yml,json,md}'", "gitcommit": "git-cz", "gitrecommit": "git-cz --retry", "gitamend": "git-cz --amend", "release": "standard-version --commit-all", "test": "jest", "tags:include-1": "node main.js firefox ./examples/tags.* --tags @scenarioTag1 --disable-search-engine-choice-screen", "tags:exclude-1": "node main.js firefox ./examples/tags.* --tags ~@scenarioTag1", "tags:include-1or2": "node main.js firefox ./examples/tags.* --tags @scenarioTag1,@scenarioTag2", "tags:include-1and2": "node main.js firefox ./examples/tags.* --tags '@scenarioTag1 and @scenarioTag2'", "tags:include-1not2": "node main.js firefox ./examples/tags.* --tags '@scenarioTag1,~@scenarioTag2'", "tags:include-1xor2": "node main.js firefox ./examples/tags.* --tags '@scenarioTag1 and ~@scenarioTag2,@scenarioTag2 and ~@scenarioTag1'", "examples:basic": "node main.js firefox ./examples/google.*", "examples:rules": "node main.js firefox ./examples/rules.*", "examples:docstring": "node main.js firefox ./examples/doc-strings.*", "examples:datatable": "node main.js firefox ./examples/datatable.*", "examples:custom-param": "node main.js firefox examples/google.ts ./examples/custom-param-type.* --param-type-registry-file ./examples/custom-param-type-registry.js", "examples:http-auth": "node main.js firefox ./examples/http-authentication-example.*", "examples:error-reporting": "node main.js firefox ./examples/error-reporting* ./examples/google.ts", "examples:hooks": "node main.js firefox ./examples/hooks*", "examples:tags": "yarn tags:include-1 && yarn tags:exclude-1 && yarn tags:include-1or2 && yarn tags:include-1and2 && yarn tags:include-1not2 && yarn tags:include-1xor2", "examples": "yarn examples:tags && node main.js firefox ./examples/* --param-type-registry-file ./examples/custom-param-type-registry.js --reporter gtc-reporter-minimal --tags ~@featureTag" }, "dependencies": { "@cucumber/gherkin": "^30.0.4", "@cucumber/gherkin-streams": "^5.0.1", "@cucumber/message-streams": "^4.0.1", "@cucumber/messages": "^27.0.2", "chalk": "4.1.2" }, "peerDependencies": { "@cucumber/cucumber": "^10.9.0", "@cucumber/cucumber-expressions": "^17.1.0", "testcafe": "^3.7.0" }, "devDependencies": { "@cucumber/cucumber": "11.2.0", "@cucumber/cucumber-expressions": "^18.0.1", "commitizen": "^4.3.1", "cz-conventional-changelog": "3.3.0", "jest": "^29.7.0", "prettier": "^3.4.2", "standard-version": "^9.5.0", "testcafe": "3.7.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "standard-version": { "scripts": { "postbump": "node ./tools/update-version-matrix.js && git add version-matrix.md tools/version-matrix.json" } }, "packageManager": "yarn@3.2.4" }