-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
92 lines (92 loc) · 3.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "gherkin-testcafe",
"version": "7.3.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": "^29.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^26.0.0",
"chalk": "4.1.2"
},
"peerDependencies": {
"@cucumber/cucumber": "^10.9.0",
"@cucumber/cucumber-expressions": "^17.1.0",
"testcafe": "^3.6.0"
},
"devDependencies": {
"@cucumber/cucumber": "10.9.0",
"@cucumber/cucumber-expressions": "^17.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"testcafe": "3.6.2"
},
"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"
}