-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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
{
"name": "testcafe-cucumber-steps",
"version": "1.21.0",
"description": "Cucumber steps (step definitions) written with TestCafe for end-to-end (e2e) tests",
"main": "index.js",
"engines": {
"node": ">=8.x.x"
},
"scripts": {
"install-all": "npm install && npm install @cucumber/cucumber testcafe gherkin-testcafe --no-save",
"lint": "node ./node_modules/.bin/eslint *.js utils/*.js tests/**/*.feature",
"test": "PO_FOLDER_PATH='tests/page-model' node ./node_modules/gherkin-testcafe/main.js --concurrency 4 'chrome:headless' *.js tests/**/*.feature --tags @fast,@long --app 'node tests/testing-server.js'",
"patch": "npm version patch -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"minor": "npm version minor -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"major": "npm version major -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Marketionist/testcafe-cucumber-steps"
},
"keywords": [
"testcafe cucumber",
"testcafe-cucumber",
"testcafe cucumber steps",
"testcafe-cucumber-steps",
"cucumber steps",
"cucumber step definitions",
"testcafe plugin",
"automated tests",
"e2e tests",
"end-to-end testing",
"acceptance testing",
"browser testing",
"testcafe",
"cucumber",
"cucumberjs",
"cucumber-js",
"gherkin",
"bdd"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"dependencies": {
"js-automation-tools": "^1.2.2"
},
"peerDependencies": {
"gherkin-testcafe": ">=2.5.1",
"testcafe": ">=1.3.3"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-plugin-cucumber": "^2.0.0",
"eslint-plugin-testcafe": "^0.2.1",
"node-testing-server": "^1.6.1"
}
}