-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
43 lines (43 loc) · 2.69 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
{
"name": "testcafe-cucumber",
"version": "0.1.0",
"description": "An integration of TestCafe and CucumberJS",
"author": "Ryan Quellhorst <rquellh@gmail.com>",
"contributors": [
"Chirag Masekar"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rquellh/testcafe-cucumber"
},
"scripts": {
"debug": "node --inspect=1337 --debug-brk --nolazy node_modules/cucumber/bin/cucumber-js --tags @debug --format json:./reports/report.json",
"test": "./node_modules/.bin/cucumber-js.cmd",
"test-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json",
"test-chrome": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"chrome\\\"}\"",
"test-ie": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"ie\\\"}\"",
"test-edge": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"edge\\\"}\"",
"test-firefox": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"firefox\\\"}\"",
"test-opera": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"opera\\\"}\"",
"test-safari": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"safari\\\"}\"",
"test-chrome-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json --world-parameters \"{\\\"browser\\\": \\\"chrome\\\"}\"",
"test-ie-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json --world-parameters \"{\\\"browser\\\": \\\"ie\\\"}\"",
"test-edge-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json --world-parameters \"{\\\"browser\\\": \\\"edge\\\"}\"",
"test-firefox-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json --world-parameters \"{\\\"browser\\\": \\\"firefox\\\"}\"",
"test-opera-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json --world-parameters \"{\\\"browser\\\": \\\"opera\\\"}\"",
"test-safari-report": "./node_modules/.bin/cucumber-js.cmd --format json:./reports/report.json --world-parameters \"{\\\"browser\\\": \\\"safari\\\"}\"",
"test-chrome-headless": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"chrome:headless\\\"}\"",
"test-firefox-headless": "./node_modules/.bin/cucumber-js.cmd --world-parameters \"{\\\"browser\\\": \\\"firefox:headless\\\"}\""
},
"dependencies": {
"base64-img": "^1.0.4",
"cucumber": "^5.1.0",
"eslint": "^4.19.1",
"npm": "^6.0.0",
"testcafe": "^1.1.0"
},
"devDependencies": {
"eslint-config-google": "^0.9.1"
}
}